/* content.css — SEO/GEO content pillar. Emerald brand, long-form reading layout.
   Scoped to .fa-content so it never bleeds into the funnel pages. */

.fa-content {
    --fa-emerald: #059669;
    --fa-emerald-700: #047857;
    --fa-emerald-50: #ecfdf5;
    --fa-ink: #0f172a;
    --fa-text: #1f2937;
    --fa-muted: #6b7280;
    --fa-border: #e5e7eb;
    --fa-bg-soft: #f8fafc;
    --fa-amber-50: #fffbeb;
    --fa-amber-700: #b45309;

    background: #ffffff;
    color: var(--fa-text);
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.0625rem;
    line-height: 1.7;
}

.fa-article {
    /* World-class content width: 680px → ~66 chars/line (the readability optimum; was 760/~76). */
    max-width: 680px;
    margin: 0 auto;
    padding: 1.5rem 1.25rem 3rem;
}

.fa-article h1,
.fa-article h2,
.fa-article h3 {
    font-family: 'Montserrat', sans-serif;
    color: var(--fa-ink);
}

/* WS1 design tokens — disciplined 7-step type scale (measured from NerdWallet/Zebra world-class exemplars).
   Every heading is larger AND heavier than body; H3 (23px) is now > body (fixes the H3<body bug). */
.fa-article h1 {
    font-size: 2.75rem;   /* 44px (was 32) */
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.01em;
    margin: 0.5rem 0 1rem;
}

.fa-article h2 {
    font-size: 1.875rem;  /* 30px (was 22) */
    font-weight: 700;
    line-height: 1.2;
    margin: 2.5rem 0 0.75rem;
}

.fa-article h3 {
    font-size: 1.4375rem; /* 23px (was 18 — now > body) */
    font-weight: 700;
    line-height: 1.3;
    margin: 1.5rem 0 0.4rem;
}

.fa-article p { margin: 0 0 1rem; }
.fa-article a { color: var(--fa-emerald-700); }
.fa-article ol,
.fa-article ul { margin: 0 0 1rem; padding-left: 1.4rem; }
.fa-article li { margin: 0.35rem 0; }

/* Breadcrumb */
.fa-breadcrumb {
    font-size: 0.8125rem;
    color: var(--fa-muted);
    margin-bottom: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    align-items: center;
}
.fa-breadcrumb a { color: var(--fa-muted); text-decoration: none; }
.fa-breadcrumb a:hover { color: var(--fa-emerald-700); text-decoration: underline; }
.fa-breadcrumb-current { color: var(--fa-ink); font-weight: 600; }

/* Draft / pending-review banner */
.fa-draft-banner {
    background: var(--fa-amber-50);
    border: 1px solid #fcd34d;
    color: var(--fa-amber-700);
    border-radius: 10px;
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}
.fa-draft-banner code {
    background: #fde68a;
    border-radius: 4px;
    padding: 0 4px;
    font-size: 0.8125rem;
}

/* Icon family base (Wave A3) — sized by context, inherits currentColor. */
.fa-icon { display: inline-block; width: 1.1em; height: 1.1em; vertical-align: -0.15em; }

/* C1 — answer-first lead in an icon callout. */
.fa-answer-callout {
    display: flex; gap: 0.7rem; align-items: flex-start;
    background: var(--fa-emerald-50); border-left: 4px solid var(--fa-emerald);
    padding: 0.9rem 1.1rem; border-radius: 0 10px 10px 0; margin: 0 0 1.25rem;
}
.fa-answer-callout__icon { width: 22px; height: 22px; flex: 0 0 auto; color: var(--fa-emerald-700); margin-top: 2px; }
/* Inside the callout the lead is plain text — the callout owns the box. */
.fa-answer-callout .fa-lead { border: none; background: none; padding: 0; margin: 0; border-radius: 0; }

/* Answer-first lead (standalone fallback, outside the callout). */
.fa-lead {
    font-size: 1.1875rem;
    line-height: 1.65;
    color: var(--fa-ink);
    border-left: 4px solid var(--fa-emerald);
    background: var(--fa-emerald-50);
    padding: 0.9rem 1.1rem;
    border-radius: 0 10px 10px 0;
    margin: 0 0 1.25rem;
    /* border-box so the padding + 4px border-left don't push the box past the viewport (layout-guard). */
    box-sizing: border-box;
    max-width: 100%;
    overflow-wrap: break-word;
}

/* Byline / E-E-A-T */
.fa-byline {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    font-size: 0.8125rem;
    color: var(--fa-muted);
    border-bottom: 1px solid var(--fa-border);
    padding-bottom: 1.1rem;
    margin-bottom: 1.5rem;
}
.fa-byline-author { color: var(--fa-text); font-weight: 600; }
.fa-byline-role { color: var(--fa-muted); font-weight: 400; }
.fa-byline-review--ok { color: var(--fa-emerald-700); font-weight: 600; }
.fa-byline-review--pending { color: var(--fa-amber-700); font-weight: 600; font-size: 0.8125rem; margin: 0 0 1.5rem; }

/* WS1.2 C7 — visual reviewer trust card (E-E-A-T signal). */
.fa-reviewer {
    display: flex; align-items: center; gap: 0.8rem;
    margin: 0 0 1.5rem; padding: 0.8rem 1rem;
    background: var(--fa-emerald-50); border: 1px solid #a7f3d0; border-radius: 12px;
}
.fa-reviewer__avatar {
    flex: 0 0 auto; width: 42px; height: 42px; border-radius: 50%;
    background: var(--fa-emerald-700); color: #fff;
    font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 0.95rem; letter-spacing: 0.02em;
    display: inline-flex; align-items: center; justify-content: center;
}
.fa-reviewer__body { display: flex; flex-direction: column; gap: 0.15rem; min-width: 0; }
.fa-reviewer__line { font-size: 0.95rem; color: var(--fa-ink); display: inline-flex; align-items: center; gap: 0.3rem; flex-wrap: wrap; }
.fa-reviewer__line a { color: var(--fa-emerald-700); }
.fa-reviewer__check { width: 16px; height: 16px; color: var(--fa-emerald-700); flex: 0 0 auto; }
.fa-reviewer__meta { font-size: 0.8125rem; color: var(--fa-muted); }
.fa-reviewer__meta a { color: var(--fa-emerald-700); font-weight: 600; }

/* In-body comparison tables. Content Body HTML tables carry no class, so scope cell styling to .fa-article.
   Without this the browser default gives ZERO cell padding and the first column's text butts against the next
   ("Progressive0.54"). Gap lives on each cell's right (except the last) so column 1 keeps a flush left edge. */
.fa-article table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.4rem 0;
    font-size: 0.95rem;
    line-height: 1.45;
}
.fa-article thead th {
    text-align: left;
    font-weight: 700;
    color: var(--fa-ink);
    border-bottom: 2px solid var(--fa-border);
    padding: 0.5rem 1.1rem 0.5rem 0;
    vertical-align: bottom;
}
.fa-article tbody td {
    padding: 0.6rem 1.1rem 0.6rem 0;
    border-bottom: 1px solid var(--fa-border);
    vertical-align: top;
}
.fa-article th:last-child,
.fa-article td:last-child { padding-right: 0; }
.fa-article tbody tr:last-child td { border-bottom: none; }
.fa-article tbody td:first-child { font-weight: 600; color: var(--fa-ink); }
@media (max-width: 600px) {
    /* narrow screens: let a wide data table scroll horizontally instead of crushing columns together */
    .fa-article table { display: block; overflow-x: auto; white-space: nowrap; font-size: 0.9rem; }
    /* Bespoke study/comparison tables (fa-ac/su/tr/ma/mi __table) live OUTSIDE .fa-article, so the rule above
       misses them — they overflowed the page on mobile. Make any "__table" scroll horizontally instead. */
    table[class*="__table"] { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; max-width: 100%; }
}
/* Pull-quotes (expert quotes in studies) — content Body uses <blockquote> with no class; without this it
   falls back to the browser default (big bare margins). Brand it as an emerald-accented callout. */
.fa-article blockquote {
    margin: 1.4rem 0;
    padding: 0.85rem 1.15rem;
    border-left: 3px solid var(--fa-emerald);
    background: var(--fa-emerald-50);
    color: var(--fa-ink);
    font-style: italic;
    border-radius: 0 6px 6px 0;
}
.fa-article blockquote p:last-child { margin-bottom: 0; }

/* Data points */
.fa-data-list { list-style: none; padding: 0; margin: 0; }
.fa-data-item {
    display: grid;
    gap: 0.15rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--fa-border);
}
.fa-data-label { font-weight: 600; color: var(--fa-ink); }
.fa-data-qualifier { font-weight: 400; color: var(--fa-muted); }
.fa-data-value { font-size: 1.25rem; font-weight: 700; color: var(--fa-emerald-700); }
.fa-data-value--pending { color: var(--fa-muted); font-style: italic; font-size: 1rem; }
/* SD-4 — filed-figure magnitude bar (a mini step-chart; decorative, aria-hidden) */
.fa-data-bar { display: block; height: 6px; max-width: 340px; margin: 0.3rem 0 0.15rem; background: var(--fa-border); border-radius: 3px; overflow: hidden; }
.fa-data-bar-fill { display: block; height: 100%; min-width: 2px; background: var(--fa-emerald); border-radius: 3px; }
/* S3 readability — a plain-language takeaway that balances the dense factor decimals. */
.fa-data-takeaway { margin: 0 0 0.9rem; padding: 0.6rem 0.85rem; background: var(--fa-emerald-50, #ecfdf5); border-left: 3px solid var(--fa-emerald); border-radius: 4px; font-size: 0.95rem; line-height: 1.5; }
/* S2 relatability — labeled illustrative dollars applied to a baseline premium (never a quote). */
.fa-data-illus { display: block; font-size: 0.85rem; font-weight: 600; color: var(--fa-emerald-700); margin: 0.1rem 0 0.15rem; }
.fa-data-illus-note { font-size: 0.8rem; font-style: italic; color: var(--fa-muted); margin: 0.5rem 0 0; }
.fa-data-source { font-size: 0.75rem; color: var(--fa-muted); }
.fa-data-source a { color: var(--fa-muted); }

/* WS1.2 components — C2 pull-stat cards, C3 data table, C10 section band. */
.fa-pullstats { display: flex; flex-wrap: wrap; gap: 0.9rem; margin: 0 0 1.1rem; }
.fa-pullstat { flex: 1 1 200px; background: var(--fa-emerald-50); border: 1px solid #a7f3d0; border-radius: 12px; padding: 0.9rem 1.1rem; }
.fa-pullstat-num { display: block; font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 2rem; line-height: 1.1; color: var(--fa-emerald-700); }
.fa-pullstat-label { display: block; margin-top: 0.25rem; font-size: 0.85rem; color: var(--fa-muted); line-height: 1.35; }
.fa-pullstat--high .fa-pullstat-num { color: var(--fa-ink); }

.fa-dtable-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; margin: 0 0 0.5rem; }
.fa-dtable { width: 100%; border-collapse: collapse; font-size: 0.95rem; }
.fa-dtable th { text-align: left; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.03em; color: var(--fa-muted); font-weight: 700; padding: 0.5rem 0.7rem; border-bottom: 2px solid var(--fa-border); white-space: nowrap; }
.fa-dtable td { padding: 0.6rem 0.7rem; border-bottom: 1px solid var(--fa-border); vertical-align: top; }
.fa-dtable tbody tr:nth-child(even) { background: var(--fa-bg-soft); }
.fa-dtable-factor { color: var(--fa-ink); font-weight: 600; }
.fa-dtable-value { font-weight: 800; color: var(--fa-emerald-700); white-space: nowrap; }
.fa-dtable-illus { color: var(--fa-muted); white-space: nowrap; }
.fa-dtable .fa-data-source { font-size: 0.8125rem; }

.fa-section--band { background: var(--fa-bg-soft); border-radius: 12px; padding: 1rem 1.25rem; }

/* C8 — inline above-the-fold ZIP micro-capture (starts the funnel on the page). */
.fa-zipcapture {
    margin: 1.4rem 0 1.75rem;
    background: var(--fa-emerald-50);
    border: 1px solid #a7f3d0;
    border-radius: 16px;
    padding: 1.25rem 1.4rem;
}
.fa-zipcapture__head { margin: 0; font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 1.25rem; line-height: 1.25; color: var(--fa-ink); }
.fa-zipcapture__sub { margin: 0.35rem 0 0; font-size: 0.95rem; color: var(--fa-muted); line-height: 1.45; }
.fa-zipcapture__row { display: flex; gap: 0.6rem; margin-top: 0.9rem; }
.fa-zipcapture__input {
    flex: 1 1 auto; min-width: 0;
    height: 52px; padding: 0 1rem;
    font-size: 16px; /* ≥16px so iOS Safari never zooms the field */
    border: 1.5px solid #a7f3d0; border-radius: 10px; background: #fff; color: var(--fa-ink);
}
.fa-zipcapture__input:focus { outline: none; border-color: var(--fa-emerald-700); box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.18); }
.fa-zipcapture__btn {
    flex: 0 0 auto;
    height: 52px; padding: 0 1.4rem;
    font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 1rem; white-space: nowrap;
    color: #fff; background: var(--fa-emerald-700); border: none; border-radius: 10px; cursor: pointer;
    transition: background 0.15s ease;
}
.fa-zipcapture__btn:hover { background: #047857; }
.fa-zipcapture__trust { margin: 0.7rem 0 0; font-size: 0.8125rem; color: var(--fa-muted); }
@media (max-width: 560px) {
    .fa-zipcapture__row { flex-direction: column; }
    .fa-zipcapture__input, .fa-zipcapture__btn { width: 100%; height: 56px; }
}

/* WS2.3 Slice 8 — desktop persistent conversion element: a sticky right-rail quote card. Hidden on mobile
   (the bottom sticky bar serves there) and tablet (in-flow CTAs serve); shown only at ≥1024px, where the page
   becomes a two-column [article | rail] layout and the rail sticks in view at every scroll depth. */
.fa-rail { display: none; }
@media (min-width: 1024px) {
    .fa-content { display: flex; justify-content: center; align-items: flex-start; gap: 2rem; }
    .fa-article { margin: 0; flex: 0 1 680px; min-width: 0; }
    .fa-rail { display: block; flex: 0 0 300px; position: sticky; top: 1.5rem; padding: 1.5rem 0 3rem; }
}
/* Rail variant of the ZIP capture — stacked (narrow column), a touch more compact than the in-body form. */
.fa-zipcapture--rail { margin: 0; }
.fa-zipcapture--rail .fa-zipcapture__head { font-size: 1.15rem; }
.fa-zipcapture--rail .fa-zipcapture__row { flex-direction: column; }
.fa-zipcapture--rail .fa-zipcapture__input, .fa-zipcapture--rail .fa-zipcapture__btn { width: 100%; }

/* C4 — SVG factor chart (magnitude curve). */
.fa-factorchart { margin: 0 0 1.1rem; }
.fa-factorchart svg { width: 100%; height: auto; display: block; }
.fa-factorchart__cap { margin: 0.4rem 0 0; font-size: 0.8125rem; color: var(--fa-muted); line-height: 1.4; }

/* FAQ */
.fa-faq-item { padding: 0.5rem 0 0.75rem; border-bottom: 1px solid var(--fa-border); }
.fa-faq-q { margin-top: 0.75rem; }
.fa-faq-a { margin: 0.25rem 0 0; }

/* CTA */
.fa-cta {
    margin-top: 2.5rem;
    background: var(--fa-emerald-50);
    border: 1px solid #a7f3d0;
    border-radius: 14px;
    padding: 1.25rem 1.4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}
.fa-cta-text { display: flex; flex-direction: column; gap: 0.15rem; }
.fa-cta-text strong { color: var(--fa-ink); font-size: 1.0625rem; }
.fa-cta-text span { color: var(--fa-muted); font-size: 0.875rem; }
.fa-cta-btn {
    background: var(--fa-emerald);
    color: #ffffff !important;
    font-weight: 700;
    text-decoration: none;
    padding: 0.7rem 1.4rem;
    border-radius: 10px;
    white-space: nowrap;
    transition: background 0.15s ease;
    /* Guarantee a 48px touch target on every CTA button (bible DoD: ≥44px, aim 48). */
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.fa-cta-btn:hover { background: var(--fa-emerald-700); }
/* Long per-state CTA labels ("Get my Pennsylvania car insurance quotes") clip at phone widths under
   white-space:nowrap — and run off-screen on the longest state names. Let the button wrap + center on
   narrow screens so the label breaks onto a second line instead of clipping (caught by qa/layout guard). */
@media (max-width: 600px) {
    .fa-cta-btn, .fa-zipcapture__btn { white-space: normal; text-align: center; }
    .fa-zipcapture__btn { height: auto; min-height: 56px; padding-top: 0.5rem; padding-bottom: 0.5rem; }
}

/* Scannability: "what this means for your rate" TL;DR callout near the top of data pages. */
.fa-key-takeaway {
    margin: 1.25rem 0 0;
    padding: 0.9rem 1.1rem;
    background: var(--fa-emerald-50);
    border-left: 4px solid var(--fa-emerald);
    border-radius: 0 10px 10px 0;
}
.fa-key-takeaway-label {
    display: inline-flex; align-items: center; gap: 0.35rem;
    font-size: 0.75rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase;
    color: var(--fa-emerald-700); margin-bottom: 0.2rem;
}
.fa-key-takeaway-icon { width: 16px; height: 16px; }
.fa-key-takeaway p { margin: 0; color: var(--fa-ink); font-size: 1.0625rem; line-height: 1.5; }
/* C5 — bulleted key-takeaways box. */
.fa-key-takeaway-list { margin: 0.4rem 0 0; padding-left: 1.2rem; color: var(--fa-ink); }
.fa-key-takeaway-list li { margin: 0.35rem 0; font-size: 1.0625rem; line-height: 1.5; }

/* Multi-touch CTA variants (hero above the fold, mid mid-article, terminal at the end). */
.fa-cta--hero { margin-top: 1.25rem; margin-bottom: 1.75rem; }
.fa-cta--mid  { margin: 2rem 0; }

/* Real trust/reassurance chips under the hero + terminal CTAs (near-button reassurance lifts CTR). */
.fa-cta-trust {
    list-style: none; margin: 0.5rem 0 0; padding: 0;
    display: flex; flex-wrap: wrap; gap: 0.4rem 1rem;
    font-size: 0.8125rem; color: var(--fa-muted);
}
.fa-cta-trust li { display: inline-flex; align-items: center; gap: 0.3rem; }
.fa-cta-trust li::before {
    content: ""; width: 14px; height: 14px; flex: none;
    background: var(--fa-emerald); border-radius: 50%;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/12px no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/12px no-repeat;
}

/* Sticky mobile CTA bar — hidden on desktop, fixed to the bottom on phones. */
/* The sticky bar renders OUTSIDE .fa-content, where the brand vars are scoped — redeclare them here so the
   quote button's `background: var(--fa-emerald)` and the call button's border/color actually resolve
   (otherwise the filled button collapses to a transparent bg + white text = invisible on the white bar). */
.fa-cta-sticky {
    display: none;
    --fa-emerald: #059669;
    --fa-emerald-700: #047857;
    --fa-emerald-50: #ecfdf5;
    --fa-ink: #0f172a;
}

@media (max-width: 768px) {
    /* Dual-action sticky bar: [Call] (outline) + [Get my quote] (filled). */
    .fa-cta-sticky {
        display: flex;
        position: fixed;
        left: 0; right: 0; bottom: 0;
        z-index: 50;
        align-items: stretch;
        gap: 0.6rem;
        padding: 0.55rem 0.9rem calc(0.55rem + env(safe-area-inset-bottom, 0px));
        background: #ffffff;
        border-top: 1px solid #a7f3d0;
        box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.08);
    }
    .fa-cta-sticky-call {
        display: inline-flex; align-items: center; justify-content: center; gap: 0.4rem;
        flex: 0 0 34%;
        min-height: 48px; padding: 0.5rem 0.5rem;
        border: 1.5px solid var(--fa-emerald); border-radius: 10px;
        background: #ffffff; color: var(--fa-emerald-700);
        font-weight: 700; text-decoration: none; white-space: nowrap;
    }
    .fa-cta-sticky-call svg { width: 18px; height: 18px; }
    .fa-cta-sticky-btn { flex: 1 1 auto; min-height: 48px; }
    /* Keep the fixed bar from covering the footer / last content. */
    .fa-content { padding-bottom: 5rem; }
}

@media (max-width: 600px) {
    /* WS1 responsive type scale — mobile: H1 34 / H2 26 / H3 21px (H3 still > body). */
    .fa-article h1 { font-size: 2.125rem; letter-spacing: -0.01em; }
    .fa-article h2 { font-size: 1.625rem; }
    .fa-article h3 { font-size: 1.3125rem; }
    .fa-content { font-size: 1rem; }
    .fa-cta { flex-direction: column; align-items: stretch; text-align: center; }
    /* Readability floor on phones — lift the smallest supporting text off 11–12px. */
    .fa-data-source, .fa-data-source a, .fa-source-date, .fa-data-illus-note { font-size: 0.8125rem; }
    .fa-byline, .fa-byline-review, .fa-byline-dates { font-size: 0.8125rem; }
}

/* Sources cited / methodology / disclosure / lint banner (gold-standard blocks) */
.fa-sources-list { padding-left: 1.3rem; margin: 0; }
.fa-sources-list li { margin: 0.4rem 0; font-size: 0.9375rem; }
.fa-source-date { color: var(--fa-muted); font-size: 0.8125rem; }
.fa-methodology p { color: var(--fa-text); font-size: 0.9375rem; }
.fa-disclosure {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid var(--fa-border);
    color: var(--fa-muted);
    font-size: 0.8125rem;
    line-height: 1.5;
}
.fa-disclosure p { margin: 0 0 0.5rem; }
.fa-draft-violations { margin: 0.5rem 0 0; padding-left: 1.1rem; font-size: 0.8125rem; }
.fa-draft-violations li { margin: 0.2rem 0; }
.fa-draft-violations code { background: #fde68a; border-radius: 3px; padding: 0 3px; }

/* SE6 — author bio / authority pages */
.fa-author-role { color: #6c757d; font-size: 0.95rem; margin: 0.15rem 0 0.5rem; }
.fa-author-knows { list-style: none; padding: 0; margin: 0.5rem 0 0; display: flex; flex-wrap: wrap; gap: 0.5rem; }
.fa-author-knows li { background: #e9f5ee; color: #198754; border: 1px solid #cfeadd; border-radius: 999px; padding: 0.25rem 0.75rem; font-size: 0.85rem; }
.fa-author-list { list-style: none; padding: 0; margin: 1.25rem 0 0; display: grid; gap: 1rem; }
.fa-author-card { border: 1px solid #dee2e6; border-radius: 10px; padding: 1.1rem 1.25rem; }
.fa-author-card a { font-size: 1.1rem; text-decoration: none; }
.fa-author-card .fa-author-role { display: inline-block; margin-left: 0.5rem; }
.fa-author-card p { margin: 0.5rem 0 0; color: #495057; font-size: 0.9rem; }
.fa-authority-links { margin: 0.75rem 0 0; font-size: 0.85rem; }
.fa-authority-links a { color: var(--fa-emerald-700); }

/* SE7 — related guides block */
.fa-related-list { list-style: none; padding: 0; margin: 0.5rem 0 0; display: grid; gap: 0.5rem; }
.fa-related-list li { border-left: 3px solid #198754; padding-left: 0.75rem; }
.fa-related-list a { text-decoration: none; font-weight: 600; }
.fa-related-list a:hover { text-decoration: underline; }
