/* ────────────────────────────────────────────────────────────
   Pagalbos skyrius — editorial B&W system
   ──────────────────────────────────────────────────────────── */

:root {
	--faqhc-bg:          #FFFFFF;
	--faqhc-paper:       #F7F5F0;
	--faqhc-band:        #F1EDE4;
	--faqhc-ink:         #0A0A0A;
	--faqhc-muted:       #7A7670;
	--faqhc-faint:       #B5B0A8;
	--faqhc-hair:        rgba(10,10,10,0.14);
	--faqhc-hair-strong: rgba(10,10,10,0.28);
	--faqhc-accent:      var(--faqhc-ink);   /* overridable per site */
}

.faqhc-page-wrap {
	background: var(--faqhc-bg);
	color: var(--faqhc-ink);
	font-family: 'Montserrat', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
	font-size: 14px;
	line-height: 1.55;
	font-weight: 300;
}
.faqhc-page-wrap * { box-sizing: border-box; }
.faqhc-page-wrap img { display: block; max-width: 100%; }
.faqhc-page-wrap a { color: inherit; }

.faqhc {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0;
}

/* ── Monospaced labels ───────────────────────────────────── */
.faqhc-mono,
.faqhc-eyebrow,
.faqhc-block-num,
.faqhc-promoted-item__topic,
.faqhc-promoted-item__num,
.faqhc-section-list a > svg + span /* placeholder */ {
	font-weight: 500;
	font-size: 10px;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	font-family: 'Montserrat', system-ui, sans-serif;
}
.faqhc-mono--md { font-size: 11px; letter-spacing: 0.24em; }
.faqhc-mono--sm { font-size:  9px; letter-spacing: 0.20em; }

/* ── In-plugin navigation bar (always present) ───────────── */
.faqhc-navbar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 16px 24px;
	border-bottom: 1px solid var(--faqhc-ink);
	background: var(--faqhc-bg);
	font-weight: 500;
	font-size: 10px;
	letter-spacing: 0.22em;
	text-transform: uppercase;
}
.faqhc-navbar a { text-decoration: none; color: var(--faqhc-ink); }
.faqhc-navbar a:hover { color: var(--faqhc-muted); }
.faqhc-navbar__back {
	display: inline-flex;
	align-items: center;
	gap: 10px;
}
.faqhc-navbar__back svg { width: 12px; height: 12px; }

/* ── Hero ────────────────────────────────────────────────── */
.faqhc-hero {
	display: grid;
	grid-template-columns: 1.35fr 1fr;
	border-bottom: 1px solid var(--faqhc-ink);
	background: var(--faqhc-bg);
}
.faqhc-hero__left {
	padding: 72px 56px 60px;
	border-right: 1px solid var(--faqhc-ink);
}
.faqhc-hero__right {
	background: var(--faqhc-paper);
	padding: 56px 44px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.faqhc-eyebrow {
	display: block;
	color: var(--faqhc-muted);
	margin-bottom: 40px;
}

.faqhc-headline {
	font-family: 'Montserrat', sans-serif;
	font-weight: 200;
	font-size: 64px;
	letter-spacing: -0.025em;
	line-height: 1.02;
	margin: 0 0 22px;
	color: var(--faqhc-ink);
	text-wrap: balance;
}
.faqhc-headline em {
	font-style: italic;
	font-weight: 200;
}

.faqhc-hero__lede {
	font-size: 15.5px;
	color: var(--faqhc-muted);
	line-height: 1.6;
	max-width: 520px;
	margin: 0 0 32px;
	font-weight: 300;
}

/* Search */
.faqhc-search {
	display: flex;
	align-items: stretch;
	margin-bottom: 22px;
	background: transparent;
	border: 0;
	border-radius: 0;
	position: relative;
}
.faqhc-search__input-wrap {
	flex: 1;
	display: flex;
	align-items: center;
	border-bottom: 1.5px solid var(--faqhc-ink);
	padding-bottom: 4px;
	min-width: 0;
}
.faqhc-search__input-wrap svg {
	width: 18px; height: 18px;
	margin-right: 12px;
	flex-shrink: 0;
}
.faqhc-search input {
	flex: 1; min-width: 0; width: 100%;
	border: 0; background: transparent; outline: none;
	font-family: 'Montserrat', sans-serif;
	font-weight: 300;
	font-size: 20px;
	color: var(--faqhc-ink);
	padding: 14px 0;
	letter-spacing: -0.01em;
}
.faqhc-search button {
	background: var(--faqhc-ink);
	color: #fff;
	border: 0;
	padding: 0 28px;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	font-weight: 500;
	font-size: 10px;
	letter-spacing: 0.24em;
	text-transform: uppercase;
	white-space: nowrap;
}
.faqhc-search button svg { width: 12px; height: 12px; }
.faqhc-search-results-dropdown {
	position: absolute;
	top: calc(100% + 8px);
	left: 0; right: 0;
	background: #fff;
	border: 1px solid var(--faqhc-ink);
	z-index: 50;
	max-height: 360px;
	overflow-y: auto;
	text-align: left;
}
.faqhc-search-results-dropdown a {
	display: block;
	padding: 14px 18px;
	text-decoration: none;
	color: var(--faqhc-ink);
	border-bottom: 1px solid var(--faqhc-hair);
}
.faqhc-search-results-dropdown a:last-child { border-bottom: 0; }
.faqhc-search-results-dropdown a:hover,
.faqhc-search-results-dropdown a:focus { background: var(--faqhc-paper); }
.faqhc-search-results-dropdown .faqhc-sr-title {
	font-weight: 500;
	display: block;
	font-size: 14px;
}
.faqhc-search-results-dropdown .faqhc-sr-excerpt {
	font-size: 12px;
	color: var(--faqhc-muted);
	display: block;
	margin-top: 4px;
	font-weight: 300;
}
.faqhc-search-results-dropdown .faqhc-sr-empty {
	padding: 18px;
	color: var(--faqhc-muted);
	text-align: center;
	font-size: 12px;
	letter-spacing: 0.04em;
}

/* Popular tags chip row */
.faqhc-popular-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	align-items: center;
}
.faqhc-popular-tags__label {
	font-weight: 500;
	font-size: 10px;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--faqhc-muted);
	margin-right: 6px;
}
.faqhc-popular-tags a {
	font-size: 12px;
	color: var(--faqhc-ink);
	padding: 6px 12px;
	border: 1px solid var(--faqhc-hair-strong);
	border-radius: 999px;
	text-decoration: none;
	cursor: pointer;
}
.faqhc-popular-tags a:hover { background: var(--faqhc-ink); color: #fff; border-color: var(--faqhc-ink); }

/* Guide CTA (right side of hero) */
.faqhc-guide-cta__title {
	font-family: 'Montserrat', sans-serif;
	font-weight: 300;
	font-size: 28px;
	line-height: 1.15;
	letter-spacing: -0.02em;
	color: var(--faqhc-ink);
	margin: 0 0 28px;
}
.faqhc-guide-cta__title em {
	font-style: italic;
	font-weight: 300;
}
.faqhc-guide-cta__steps {
	list-style: none;
	padding: 0;
	margin: 0 0 32px;
	border-top: 1px solid var(--faqhc-ink);
}
.faqhc-guide-cta__steps li {
	display: grid;
	grid-template-columns: 38px 1fr;
	gap: 14px;
	padding: 16px 0;
	border-bottom: 1px solid var(--faqhc-hair);
	align-items: baseline;
}
.faqhc-guide-cta__steps .num {
	font-weight: 500;
	font-size: 9px;
	letter-spacing: 0.20em;
	text-transform: uppercase;
	color: var(--faqhc-muted);
}
.faqhc-guide-cta__steps .label {
	font-size: 14px;
	font-weight: 500;
	color: var(--faqhc-ink);
	margin-bottom: 4px;
	letter-spacing: -0.005em;
}
.faqhc-guide-cta__steps .desc {
	font-size: 12px;
	color: var(--faqhc-muted);
	line-height: 1.55;
	font-weight: 300;
}

/* ── Buttons ─────────────────────────────────────────────── */
.faqhc-button {
	display: inline-flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	background: var(--faqhc-ink);
	color: #fff;
	padding: 16px 24px;
	border: 0;
	font-weight: 500;
	font-size: 10px;
	letter-spacing: 0.24em;
	text-transform: uppercase;
	cursor: pointer;
	text-decoration: none;
	font-family: 'Montserrat', sans-serif;
}
.faqhc-button--block {
	width: 100%;
	padding: 18px 22px;
}
.faqhc-button:hover { background: #2b2b2b; color: #fff; }
.faqhc-button svg { width: 14px; height: 14px; }

/* ── Block headers (numbered) ────────────────────────────── */
.faqhc-block-header {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 12px;
	padding: 72px 56px 36px;
}
.faqhc-block-header__left {
	display: flex;
	align-items: baseline;
	gap: 18px;
}
.faqhc-block-num {
	color: var(--faqhc-muted);
	font-size: 11px;
	letter-spacing: 0.24em;
}
.faqhc-block-title {
	font-family: 'Montserrat', sans-serif;
	font-weight: 300;
	font-size: 32px;
	letter-spacing: -0.02em;
	line-height: 1;
	margin: 0;
	color: var(--faqhc-ink);
}
.faqhc-block-title em { font-style: italic; font-weight: 300; }
.faqhc-block-header__link {
	font-weight: 500;
	font-size: 10px;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--faqhc-ink);
	border-bottom: 1px solid var(--faqhc-ink);
	padding-bottom: 3px;
	text-decoration: none;
}
.faqhc-block-header__link:hover { color: var(--faqhc-muted); border-color: var(--faqhc-muted); }

/* ── Promoted (popular questions strip) ──────────────────── */
.faqhc-promoted {
	border-bottom: 1px solid var(--faqhc-hair);
	padding-bottom: 0;
}
.faqhc-promoted-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	border-top: 1px solid var(--faqhc-ink);
	border-left: 1px solid var(--faqhc-ink);
	margin: 0 56px 72px;
}
.faqhc-promoted-item {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 26px 24px;
	border-right: 1px solid var(--faqhc-ink);
	border-bottom: 1px solid var(--faqhc-ink);
	text-decoration: none;
	color: var(--faqhc-ink);
	min-height: 200px;
	background: var(--faqhc-bg);
	transition: background .15s;
}
.faqhc-promoted-item:hover { background: var(--faqhc-paper); color: var(--faqhc-ink); }
.faqhc-promoted-item__top {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	margin-bottom: 18px;
}
.faqhc-promoted-item__num {
	color: var(--faqhc-muted);
	font-size: 9px;
}
.faqhc-promoted-item__topic {
	color: var(--faqhc-ink);
	font-size: 9px;
}
.faqhc-promoted-item__q {
	font-size: 17px;
	font-weight: 400;
	line-height: 1.3;
	color: var(--faqhc-ink);
	margin-bottom: 24px;
	letter-spacing: -0.005em;
}
.faqhc-promoted-item__cta {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-weight: 500;
	font-size: 9px;
	letter-spacing: 0.20em;
	text-transform: uppercase;
	color: var(--faqhc-muted);
}
.faqhc-promoted-item__cta svg { width: 14px; height: 14px; }

/* ── Sections grid (topic cards) ─────────────────────────── */
.faqhc-sections { border-bottom: 1px solid var(--faqhc-hair); }
.faqhc-sections-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	border-top: 1px solid var(--faqhc-ink);
	border-left: 1px solid var(--faqhc-ink);
	margin: 0 56px 96px;
}
.faqhc-section-card {
	display: flex;
	flex-direction: column;
	gap: 16px;
	padding: 32px 28px;
	border-right: 1px solid var(--faqhc-ink);
	border-bottom: 1px solid var(--faqhc-ink);
	background: var(--faqhc-bg);
}
.faqhc-section-card:hover { background: var(--faqhc-paper); }
.faqhc-section-card__num {
	font-weight: 500;
	font-size: 9px;
	letter-spacing: 0.20em;
	text-transform: uppercase;
	color: var(--faqhc-muted);
}
.faqhc-section-head {
	display: flex;
	align-items: center;
	gap: 14px;
	text-decoration: none;
	color: var(--faqhc-ink);
}
.faqhc-section-head h4 {
	font-family: 'Montserrat', sans-serif;
	font-weight: 500;
	font-size: 19px;
	margin: 0;
	letter-spacing: -0.01em;
}
.faqhc-section-icon { width: 36px; height: 36px; object-fit: contain; }
.faqhc-section-icon--placeholder {
	width: 36px; height: 36px;
	border: 1px solid var(--faqhc-hair-strong);
	border-radius: 50%;
}
.faqhc-section-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
}
.faqhc-section-list li { border-top: 1px solid var(--faqhc-hair); }
.faqhc-section-list li:first-child { border-top: 1px solid var(--faqhc-hair-strong); }
.faqhc-section-list a {
	display: flex;
	align-items: baseline;
	gap: 10px;
	padding: 12px 0;
	text-decoration: none;
	color: var(--faqhc-ink);
	font-size: 13.5px;
	font-weight: 400;
	line-height: 1.4;
}
.faqhc-section-list a:hover { color: var(--faqhc-muted); }
.faqhc-section-list a svg { width: 10px; height: 10px; flex-shrink: 0; opacity: .5; }
.faqhc-section-more {
	margin-top: auto;
	font-weight: 500;
	font-size: 10px;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--faqhc-ink);
	border-bottom: 1px solid var(--faqhc-ink);
	padding-bottom: 3px;
	text-decoration: none;
	align-self: flex-start;
}

/* ── Single section page (accordion) ─────────────────────── */
.faqhc-section-title {
	font-family: 'Montserrat', sans-serif;
	font-weight: 300;
	font-size: 38px;
	letter-spacing: -0.025em;
	margin: 56px 56px 16px;
	color: var(--faqhc-ink);
}
.faqhc-section-desc {
	color: var(--faqhc-muted);
	font-size: 15px;
	line-height: 1.6;
	margin: 0 56px 32px;
	max-width: 720px;
}
.faqhc-accordion {
	list-style: none;
	padding: 0;
	margin: 0 56px 64px;
	border-top: 1px solid var(--faqhc-ink);
}
.faqhc-accordion li {
	border-bottom: 1px solid var(--faqhc-hair);
}
.faqhc-accordion summary {
	display: grid;
	grid-template-columns: 44px 1fr auto;
	gap: 18px;
	align-items: baseline;
	padding: 26px 0;
	cursor: pointer;
	list-style: none;
	font-weight: 400;
	font-size: 18px;
	color: var(--faqhc-ink);
	line-height: 1.3;
	letter-spacing: -0.005em;
}
.faqhc-accordion summary::-webkit-details-marker { display: none; }
.faqhc-accordion summary::before {
	content: counter(faq-counter, decimal-leading-zero);
	counter-increment: faq-counter;
	font-weight: 500;
	font-size: 9px;
	letter-spacing: 0.20em;
	color: var(--faqhc-muted);
}
.faqhc-accordion { counter-reset: faq-counter; }
.faqhc-accordion summary::after {
	content: "+";
	width: 36px; height: 36px;
	border: 1px solid var(--faqhc-ink);
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	font-weight: 300;
	color: var(--faqhc-ink);
	transition: all .15s;
}
.faqhc-accordion details[open] summary::after {
	content: "−";
	background: var(--faqhc-ink);
	color: #fff;
}
.faqhc-answer {
	padding: 0 0 32px 62px;
	color: var(--faqhc-ink);
	line-height: 1.7;
	max-width: 680px;
	font-weight: 300;
	font-size: 15px;
}
.faqhc-answer p { margin: 0 0 14px; }
.faqhc-answer ul, .faqhc-answer ol { margin: 0 0 14px 22px; }

/* ── Single FAQ item page ────────────────────────────────── */
.faqhc-single {
	padding: 64px 56px 80px;
	max-width: 880px;
}
.faqhc-item-title {
	font-family: 'Montserrat', sans-serif;
	font-weight: 300;
	font-size: 40px;
	letter-spacing: -0.025em;
	line-height: 1.1;
	margin: 0 0 32px;
}
.faqhc-single .faqhc-answer { padding: 0; }

/* ── Search results page ─────────────────────────────────── */
.faqhc-search-results { padding: 0 56px 64px; }
.faqhc-results-list {
	list-style: none;
	padding: 0;
	margin: 0;
	border-top: 1px solid var(--faqhc-ink);
}
.faqhc-results-list li {
	padding: 18px 0;
	border-bottom: 1px solid var(--faqhc-hair);
}
.faqhc-results-list a {
	text-decoration: none;
	color: var(--faqhc-ink);
	font-size: 17px;
	font-weight: 400;
	letter-spacing: -0.005em;
}
.faqhc-results-list a:hover { color: var(--faqhc-muted); }

/* ── Contact band (full-width dark) ──────────────────────── */
.faqhc-contact {
	background: var(--faqhc-ink);
	color: #fff;
	padding: 104px 56px;
	margin: 0;
	border-radius: 0;
	/* Break out of any .faqhc max-width to full viewport */
	width: 100vw;
	position: relative;
	left: 50%;
	right: 50%;
	margin-left: -50vw;
	margin-right: -50vw;
}
.faqhc-contact-inner {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1.4fr;
	gap: 80px;
	align-items: start;
	padding: 0 56px;
}
.faqhc-contact-intro h5 {
	font-weight: 500;
	font-size: 11px;
	letter-spacing: 0.24em;
	text-transform: uppercase;
	color: var(--faqhc-faint);
	margin: 0 0 28px;
}
.faqhc-contact-intro h3 {
	font-family: 'Montserrat', sans-serif;
	font-weight: 200;
	font-size: 56px;
	letter-spacing: -0.025em;
	line-height: 1;
	margin: 0 0 20px;
	color: #fff;
}
.faqhc-contact-intro h3 em { font-style: italic; font-weight: 200; }
.faqhc-contact-intro p {
	color: rgba(255,255,255,.7);
	font-size: 14.5px;
	line-height: 1.65;
	max-width: 360px;
	margin: 0;
	font-weight: 300;
}
.faqhc-contact-cards {
	border-top: 1px solid rgba(255,255,255,.4);
}
.faqhc-contact-card {
	display: grid;
	grid-template-columns: 60px 1fr auto;
	gap: 28px;
	align-items: center;
	padding: 30px 0;
	border-bottom: 1px solid rgba(255,255,255,.2);
	text-decoration: none;
	color: #fff;
}
.faqhc-contact-card__num {
	font-weight: 500;
	font-size: 11px;
	letter-spacing: 0.24em;
	color: var(--faqhc-faint);
}
.faqhc-contact-card__tag {
	font-weight: 500;
	font-size: 9px;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--faqhc-faint);
	margin-bottom: 6px;
}
.faqhc-contact-card__primary {
	font-size: 24px;
	font-weight: 300;
	letter-spacing: -0.01em;
	margin-bottom: 6px;
	color: #fff;
}
.faqhc-contact-card__sub {
	font-size: 12px;
	color: rgba(255,255,255,.6);
}
.faqhc-contact-card__cta {
	font-weight: 500;
	font-size: 10px;
	letter-spacing: 0.24em;
	text-transform: uppercase;
	color: #fff;
	border-bottom: 1px solid #fff;
	padding-bottom: 3px;
}

/* ── Guide step page ─────────────────────────────────────── */
.faqhc-guide {
	padding: 0;
	background: var(--faqhc-bg);
}
.faqhc-guide-back-top {
	padding: 24px 56px;
	border-bottom: 1px solid var(--faqhc-hair);
}
.faqhc-guide-back-top a {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	text-decoration: none;
	color: var(--faqhc-muted);
	font-weight: 500;
	font-size: 10px;
	letter-spacing: 0.22em;
	text-transform: uppercase;
}
.faqhc-guide-back-top a:hover { color: var(--faqhc-ink); }
.faqhc-guide-back-top svg { width: 12px; height: 12px; }

.faqhc-guide-breadcrumb {
	padding: 32px 56px 16px;
}
.faqhc-guide-breadcrumb ol {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	align-items: center;
}
.faqhc-guide-breadcrumb li {
	font-weight: 500;
	font-size: 10px;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--faqhc-muted);
	display: inline-flex;
	align-items: center;
}
.faqhc-guide-breadcrumb li:not(:last-child)::after {
	content: "›";
	margin-left: 8px;
	color: var(--faqhc-faint);
	letter-spacing: 0;
}
.faqhc-guide-breadcrumb a {
	color: var(--faqhc-muted);
	text-decoration: none;
}
.faqhc-guide-breadcrumb a:hover { color: var(--faqhc-ink); }
.faqhc-guide-breadcrumb [aria-current] { color: var(--faqhc-ink); }

.faqhc-guide-step {
	padding: 56px 56px 96px;
	max-width: 880px;
}
.faqhc-guide-meta {
	font-weight: 500;
	font-size: 11px;
	letter-spacing: 0.24em;
	text-transform: uppercase;
	color: var(--faqhc-muted);
	margin-bottom: 18px;
}
.faqhc-guide-question {
	font-family: 'Montserrat', sans-serif;
	font-weight: 300;
	font-size: 48px;
	letter-spacing: -0.025em;
	line-height: 1.05;
	margin: 0 0 24px;
	color: var(--faqhc-ink);
}
.faqhc-guide-question em { font-style: italic; font-weight: 300; }
.faqhc-guide-intro {
	color: var(--faqhc-muted);
	font-size: 16px;
	line-height: 1.6;
	margin-bottom: 40px;
	max-width: 680px;
	font-weight: 300;
}
.faqhc-guide-intro p { margin: 0 0 12px; }

.faqhc-guide-options {
	border-top: 1px solid var(--faqhc-ink);
}
.faqhc-guide-option {
	display: grid;
	grid-template-columns: 44px 1fr auto;
	gap: 18px;
	align-items: center;
	padding: 26px 0;
	border-bottom: 1px solid var(--faqhc-hair);
	text-decoration: none;
	color: var(--faqhc-ink);
	transition: padding .15s;
}
.faqhc-guide-option:hover { padding-left: 8px; }
.faqhc-guide-option__num {
	font-weight: 500;
	font-size: 9px;
	letter-spacing: 0.20em;
	color: var(--faqhc-muted);
}
.faqhc-guide-option__text { display: flex; flex-direction: column; }
.faqhc-guide-option__label {
	font-size: 18px;
	font-weight: 400;
	line-height: 1.3;
	letter-spacing: -0.005em;
}
.faqhc-guide-option__desc {
	font-size: 12px;
	color: var(--faqhc-muted);
	margin-top: 4px;
	font-weight: 300;
}
.faqhc-guide-option__arrow {
	width: 36px; height: 36px;
	border: 1px solid var(--faqhc-ink);
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}
.faqhc-guide-option__arrow svg { width: 12px; height: 12px; }
.faqhc-guide-option:hover .faqhc-guide-option__arrow {
	background: var(--faqhc-ink);
	color: #fff;
}
.faqhc-guide-option:hover .faqhc-guide-option__arrow svg path { stroke: #fff; }

/* Inline final answer (details/summary) */
.faqhc-guide-option--final { display: block; padding: 0; cursor: pointer; }
.faqhc-guide-option--final summary {
	display: grid;
	grid-template-columns: 44px 1fr auto;
	gap: 18px;
	align-items: center;
	padding: 26px 0;
	list-style: none;
}
.faqhc-guide-option--final summary::-webkit-details-marker { display: none; }
.faqhc-guide-option--final summary::after {
	content: "+";
	width: 36px; height: 36px;
	border: 1px solid var(--faqhc-ink);
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	font-weight: 300;
	flex-shrink: 0;
}
.faqhc-guide-option--final[open] summary::after {
	content: "−";
	background: var(--faqhc-ink);
	color: #fff;
}
.faqhc-guide-option__content {
	padding: 0 0 32px 62px;
	color: var(--faqhc-ink);
	line-height: 1.7;
	font-weight: 300;
	font-size: 15px;
}

.faqhc-guide-back {
	margin-top: 40px;
	padding-top: 24px;
	border-top: 1px solid var(--faqhc-hair);
}
.faqhc-guide-back a {
	font-weight: 500;
	font-size: 10px;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--faqhc-muted);
	text-decoration: none;
}
.faqhc-guide-back a:hover { color: var(--faqhc-ink); }
.faqhc-guide-empty {
	color: var(--faqhc-muted);
	font-style: italic;
	padding: 24px 0;
}

/* ── Feedback (Was this helpful?) ────────────────────────── */
.faqhc-feedback {
	margin-top: 40px;
	padding: 24px 0;
	border-top: 1px solid var(--faqhc-hair);
	display: flex;
	align-items: center;
	gap: 16px;
	flex-wrap: wrap;
}
.faqhc-feedback__question {
	margin: 0;
	font-weight: 500;
	font-size: 10px;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--faqhc-muted);
}
.faqhc-feedback__buttons { display: flex; gap: 18px; }
.faqhc-feedback__btn {
	background: transparent;
	border: 0;
	font-weight: 500;
	font-size: 10px;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--faqhc-ink);
	border-bottom: 1px solid var(--faqhc-ink);
	padding: 2px 0;
	cursor: pointer;
	font-family: 'Montserrat', sans-serif;
}
.faqhc-feedback__btn:nth-child(2) {
	color: var(--faqhc-muted);
	border-bottom-color: transparent;
}
.faqhc-feedback__btn:hover { color: var(--faqhc-ink); border-bottom-color: var(--faqhc-ink); }
.faqhc-feedback__btn[disabled] { opacity: .5; cursor: not-allowed; }
.faqhc-feedback__btn.is-active { color: var(--faqhc-ink); border-bottom-color: var(--faqhc-ink); }
.faqhc-feedback__thanks {
	margin: 0;
	font-size: 12px;
	color: var(--faqhc-muted);
	font-weight: 300;
	font-style: italic;
}

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 900px) {
	.faqhc-hero { grid-template-columns: 1fr; }
	.faqhc-hero__left { padding: 36px 20px 32px; border-right: 0; }
	.faqhc-hero__right { padding: 32px 20px; }
	.faqhc-headline { font-size: 40px; }
	.faqhc-search { flex-direction: column; gap: 12px; }
	.faqhc-search button { padding: 14px 20px; align-self: stretch; }
	.faqhc-search input { font-size: 16px; }
	.faqhc-block-header { padding: 44px 20px 28px; }
	.faqhc-block-title { font-size: 24px; }
	.faqhc-promoted-grid {
		grid-template-columns: 1fr;
		margin: 0 20px 44px;
	}
	.faqhc-promoted-item { min-height: auto; }
	.faqhc-sections-grid {
		grid-template-columns: 1fr;
		margin: 0 20px 64px;
	}
	.faqhc-contact { padding: 56px 20px; }
	.faqhc-contact-inner { grid-template-columns: 1fr; gap: 36px; padding: 0 20px; }
	.faqhc-contact-intro h3 { font-size: 36px; }
	.faqhc-contact-card { grid-template-columns: 44px 1fr; gap: 14px; padding: 22px 0; }
	.faqhc-contact-card__cta { grid-column: 2; justify-self: start; margin-top: 8px; }
	.faqhc-section-title { font-size: 28px; margin: 36px 20px 12px; }
	.faqhc-section-desc { margin: 0 20px 28px; }
	.faqhc-accordion { margin: 0 20px 48px; }
	.faqhc-accordion summary { font-size: 16px; }
	.faqhc-answer { padding-left: 50px; font-size: 14px; }
	.faqhc-single { padding: 36px 20px 64px; }
	.faqhc-item-title { font-size: 28px; }
	.faqhc-search-results { padding: 0 20px 48px; }
	.faqhc-guide-back-top { padding: 18px 20px; }
	.faqhc-guide-breadcrumb { padding: 24px 20px 12px; }
	.faqhc-guide-step { padding: 32px 20px 64px; }
	.faqhc-guide-question { font-size: 28px; }
	.faqhc-navbar { padding: 14px 20px; }
}

/* ──────────────────────────────────────────────────────────
   v5.1: Theme-overrides — force white text where it must be.
   Breakdance's `a { color: var(--bde-link-color) }` was beating
   our `.faqhc-button { color: #fff }` on equal specificity.
   We boost specificity (a.faqhc-button) and add !important as
   defense-in-depth. Same fix for popular-tags hover.
   ────────────────────────────────────────────────────────── */

.faqhc-page-wrap a.faqhc-button,
.faqhc-page-wrap a.faqhc-button:link,
.faqhc-page-wrap a.faqhc-button:visited,
.faqhc-page-wrap a.faqhc-button:hover,
.faqhc-page-wrap a.faqhc-button:focus,
.faqhc-page-wrap a.faqhc-button:active,
.faqhc-page-wrap a.faqhc-button span {
	color: #fff !important;
	text-decoration: none !important;
}
.faqhc-page-wrap a.faqhc-button svg path { stroke: #fff !important; }

.faqhc-page-wrap .faqhc-popular-tags a:hover,
.faqhc-page-wrap .faqhc-popular-tags a:focus {
	background: var(--faqhc-ink) !important;
	color: #fff !important;
	border-color: var(--faqhc-ink) !important;
	text-decoration: none !important;
}

/* Contact band CTAs — link text inside a black band must read white */
.faqhc-page-wrap a.faqhc-contact-card,
.faqhc-page-wrap a.faqhc-contact-card:link,
.faqhc-page-wrap a.faqhc-contact-card:visited,
.faqhc-page-wrap a.faqhc-contact-card:hover {
	color: #fff !important;
	text-decoration: none !important;
}

/* ──────────────────────────────────────────────────────────
   v5.1: TOPIC BROWSER — single-page, no-navigation
   Left sticky nav (numbered list) + right tabbed accordion.
   All sections render server-side; JS just toggles `is-active`.
   ────────────────────────────────────────────────────────── */

.faqhc-topic-browser {
	padding-bottom: 96px;
	border-bottom: 1px solid var(--faqhc-hair);
}

.faqhc-tb {
	display: grid;
	grid-template-columns: 320px 1fr;
	gap: 64px;
	padding: 0 56px;
	align-items: start;
}

/* ── Left side: section index ── */

.faqhc-tb__nav {
	border-top: 1px solid var(--faqhc-ink);
	position: sticky;
	top: 24px;
}

.faqhc-tb__nav-item {
	width: 100%;
	text-align: left;
	background: transparent;
	border: 0;
	border-bottom: 1px solid var(--faqhc-hair);
	padding: 18px 18px 18px 0;
	cursor: pointer;
	display: grid;
	grid-template-columns: 44px 1fr auto;
	align-items: center;
	gap: 8px;
	font-family: 'Montserrat', sans-serif;
	color: var(--faqhc-ink);
	transition: padding-left .15s, background .15s, color .15s;
}
.faqhc-tb__nav-item:hover { padding-left: 6px; }
.faqhc-tb__nav-item.is-active,
.faqhc-tb__nav-item.is-active:hover {
	background: var(--faqhc-ink);
	color: #fff;
	padding-left: 18px;
	border-bottom-color: var(--faqhc-ink);
}

.faqhc-tb__nav-num {
	font-weight: 500;
	font-size: 9px;
	letter-spacing: 0.20em;
	text-transform: uppercase;
	color: var(--faqhc-muted);
	font-family: 'Montserrat', sans-serif;
}
.faqhc-tb__nav-item.is-active .faqhc-tb__nav-num { color: var(--faqhc-faint); }

.faqhc-tb__nav-body { min-width: 0; }
.faqhc-tb__nav-label {
	display: block;
	font-size: 15px;
	font-weight: 500;
	letter-spacing: -0.005em;
	line-height: 1.25;
}
.faqhc-tb__nav-sub {
	display: block;
	font-size: 11px;
	color: var(--faqhc-muted);
	margin-top: 3px;
	font-weight: 300;
	line-height: 1.4;
}
.faqhc-tb__nav-item.is-active .faqhc-tb__nav-sub { color: var(--faqhc-faint); }

.faqhc-tb__nav-count {
	font-weight: 500;
	font-size: 9px;
	letter-spacing: 0.20em;
	text-transform: uppercase;
	color: var(--faqhc-muted);
	font-family: 'Montserrat', sans-serif;
}
.faqhc-tb__nav-count-arrow { display: none; }
.faqhc-tb__nav-item.is-active .faqhc-tb__nav-count { color: #fff; }
.faqhc-tb__nav-item.is-active .faqhc-tb__nav-count-num { display: none; }
.faqhc-tb__nav-item.is-active .faqhc-tb__nav-count-arrow { display: inline; }

/* ── Right side: panels (one visible at a time) ── */

.faqhc-tb__panels { min-width: 0; padding-top: 4px; }
.faqhc-tb__panel { display: none; }
.faqhc-tb__panel.is-active { display: block; }

.faqhc-tb__panel-head {
	margin-bottom: 28px;
	padding-bottom: 22px;
	border-bottom: 1px solid var(--faqhc-ink);
}
.faqhc-tb__panel-meta {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	margin-bottom: 14px;
	flex-wrap: wrap;
	gap: 12px;
}
.faqhc-tb__panel-eyebrow {
	font-weight: 500;
	font-size: 11px;
	letter-spacing: 0.24em;
	text-transform: uppercase;
	color: var(--faqhc-muted);
	font-family: 'Montserrat', sans-serif;
}
.faqhc-tb__panel-info {
	font-weight: 500;
	font-size: 9px;
	letter-spacing: 0.20em;
	text-transform: uppercase;
	color: var(--faqhc-muted);
	font-family: 'Montserrat', sans-serif;
}
.faqhc-tb__panel-title {
	font-family: 'Montserrat', sans-serif;
	font-weight: 300;
	font-size: 38px;
	letter-spacing: -0.025em;
	margin: 0;
	color: var(--faqhc-ink);
	line-height: 1.05;
}
.faqhc-tb__panel-intro {
	font-weight: 300;
	font-size: 16px;
	color: var(--faqhc-muted);
	line-height: 1.6;
	margin: 18px 0 0;
	max-width: 720px;
}

/* Accordion sits inside panel — reuse existing .faqhc-accordion */
.faqhc-tb__panel .faqhc-accordion {
	margin: 0;
	counter-reset: faq-counter;
}

/* ── Mobile: stack ── */

@media (max-width: 900px) {
	.faqhc-tb {
		grid-template-columns: 1fr;
		gap: 28px;
		padding: 0 20px;
	}
	.faqhc-tb__nav {
		position: static;
		border-bottom: 1px solid var(--faqhc-ink);
	}
	.faqhc-tb__panel-title { font-size: 28px; }
	.faqhc-tb__panel-head { margin-bottom: 20px; padding-bottom: 18px; }
	.faqhc-tb__panel-meta { flex-direction: column; gap: 6px; align-items: flex-start; }
}
