/* Expansion pages — additive styles only. Loaded exclusively on the 10 new
   SEO pages, so these rules do not affect the protected homepage. */

.crumbs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 26px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-dim);
}

.crumbs a {
    color: var(--text-dim);
    text-decoration: none;
}

.crumbs a:hover {
    color: var(--blue-bright);
}

.crumbs .crumb-sep {
    color: var(--line-strong);
}

.crumbs [aria-current="page"] {
    color: var(--text-muted);
}

.hero-intro {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 40rem;
}

.hero-intro p + p {
    margin-top: 1em;
}

.prose {
    color: var(--text-muted);
    max-width: 44rem;
}

.prose > * + * {
    margin-top: 1em;
}

.prose p {
    line-height: 1.7;
}

.prose strong {
    color: var(--text);
}

.prose ul {
    list-style: none;
    padding-left: 0;
    margin-top: 1em;
}

.prose ul li {
    position: relative;
    padding-left: 22px;
}

.prose ul li + li {
    margin-top: 0.6em;
}

.prose ul li::before {
    content: "";
    position: absolute;
    left: 2px;
    top: 0.58em;
    width: 8px;
    height: 8px;
    border-radius: 2px;
    background: var(--blue);
}

.prose a {
    color: var(--blue-bright);
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 1px;
}

.prose a:hover {
    color: var(--white);
}

.seo-h2 {
    font-family: var(--display);
    font-weight: 800;
    font-size: clamp(1.35rem, 4.5vw, 2.4rem);
    line-height: 1.05;
    letter-spacing: -0.04em;
    margin-bottom: 14px;
}

.seo-section-head {
    max-width: 44rem;
}

.checklist {
    margin-top: 22px;
    max-width: 52rem;
}

.checklist .icon {
    color: var(--blue-bright);
}

.price-pair {
    margin-top: 22px;
    max-width: 34rem;
}

.compare {
    display: grid;
    gap: 12px;
    margin-top: 26px;
}

.compare-card {
    background: var(--bg-card);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 22px;
}

.compare-card h3 {
    font-family: var(--display);
    font-size: 1.1rem;
    letter-spacing: -0.03em;
    margin-bottom: 12px;
    color: var(--text);
}

.compare-card ul {
    list-style: none;
}

.compare-card li {
    position: relative;
    padding: 8px 0 8px 20px;
    color: var(--text-muted);
    font-size: 0.98rem;
    border-top: 1px solid var(--line);
}

.compare-card li:first-child {
    border-top: 0;
}

.compare-card li::before {
    content: "";
    position: absolute;
    left: 2px;
    top: 16px;
    width: 7px;
    height: 7px;
    border-radius: 2px;
    background: var(--blue);
}

.compare-card.is-mobile li::before {
    background: var(--blue-bright);
}

.related-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 26px;
}

.related-links a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.03);
    color: var(--text);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.86rem;
}

.related-links a:hover {
    border-color: var(--line-strong);
    color: var(--white);
}

.faq-more {
    display: inline-block;
    margin-top: 24px;
    color: var(--blue-bright);
    text-decoration: none;
    font-weight: 800;
}

.mt {
    margin-top: 22px;
}

.mt-sm {
    margin-top: 14px;
}

.closing-copy a {
    color: #ffffff;
    text-decoration: underline;
    text-underline-offset: 2px;
    text-decoration-thickness: 1px;
}

@media (min-width: 700px) {
    .compare {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .compare-card {
        padding: 26px;
    }
}
