/* ---------- FAQ block ---------- */
.hseo-faq {
	margin: 1.5em 0;
}
.hseo-faq-heading {
	margin: 0 0 0.75em;
}
.hseo-faq-item {
	border: 1px solid rgba(0, 0, 0, 0.12);
	border-radius: 8px;
	margin: 0 0 10px;
	background: #fff;
	/* Dark themes set light body text; the card is always white, so pin
	   a dark text color or questions go white-on-white and vanish. */
	color: #1f2937;
	overflow: hidden;
}
.hseo-faq-q {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 14px 18px;
	font-weight: 600;
	cursor: pointer;
	list-style: none;
}
.hseo-faq-q::-webkit-details-marker {
	display: none;
}
.hseo-faq-icon {
	flex: 0 0 auto;
	width: 12px;
	height: 12px;
	position: relative;
}
.hseo-faq-icon::before,
.hseo-faq-icon::after {
	content: "";
	position: absolute;
	background: currentColor;
	transition: transform 0.2s ease;
}
.hseo-faq-icon::before {
	left: 0;
	top: 5px;
	width: 12px;
	height: 2px;
}
.hseo-faq-icon::after {
	left: 5px;
	top: 0;
	width: 2px;
	height: 12px;
}
.hseo-faq-item[open] .hseo-faq-icon::after {
	transform: scaleY(0);
}
.hseo-faq-a {
	padding: 0 18px 14px;
}
.hseo-faq-a p:first-child {
	margin-top: 0;
}
.hseo-faq-a p:last-child {
	margin-bottom: 0;
}

/* ---------- Breadcrumbs ---------- */
.hseo-breadcrumbs {
	font-size: 0.875em;
	margin: 0 0 1em;
}
.hseo-breadcrumbs ol {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}
.hseo-breadcrumbs li {
	display: flex;
	align-items: center;
	gap: 6px;
}
.hseo-breadcrumbs li + li::before {
	content: "/";
	opacity: 0.45;
}
.hseo-breadcrumbs a {
	text-decoration: none;
}
.hseo-breadcrumbs a:hover {
	text-decoration: underline;
}
.hseo-breadcrumbs li[aria-current="page"] {
	opacity: 0.7;
}
