/* Newsreader (editorial serif, variable opsz + italic). Scoped to scam pages
   via this stylesheet so the site-wide shared-head stays untouched. */
@import url('https://fonts.googleapis.com/css2?family=Newsreader:ital,opsz,wght@0,6..72,400..600;1,6..72,400..600&display=swap');

:root {
    --indigo: #2D3A5C;
    --indigo-light: #3D4E7A;
    --warm-cream: #F5F0E8;
    --warm-cream-soft: #FAF6EE;
    --sand: #E8DFD0;
    --sand-light: #F0E8D8;
    --earth: #7A6343;
    --earth-light: #A6906F;
    --terracotta: #9C5232;
    --terracotta-deep: #8E4A2D;
    --gold: #D4A24A;
    --sage: #7A8B6F;
    --deep-brown: #3E2F23;
    --white: #FEFCF9;
    --text: #2C2419;
    --text-muted: #6B5D4F;
    --danger: #DC2626;
    --danger-bg: #FEF2F2;
    --warning: #F59E0B;
    --warning-bg: #FFFBEB;
    --low: #16A34A;
    --low-bg: #F0FDF4;

    /* Editorial (v2) — desaturated severity palette, passes WCAG AA on warm-cream */
    --ed-high-bg: #F3DDD6;
    --ed-high-text: #8F3A2A;
    --ed-med-bg: #F0E3CD;
    --ed-med-text: #8A6B2F;
    --ed-low-bg: #E2E8DC;
    --ed-low-text: #4D5F46;

    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-pill: 100px;

    --font-serif: 'Newsreader', Georgia, 'Iowan Old Style', Palatino, serif;
    --font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;

    --nav-height: 64px;
}
@media (max-width: 768px) {
    :root { --nav-height: 56px; }
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* Hero */
.hero {
    background: var(--indigo);
    color: white;
    padding: 5rem 2rem 3rem;
    text-align: center;
}
.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.9);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.35rem 0.9rem;
    border-radius: 99px;
    margin-bottom: 1.25rem;
}
.hero h1 {
    font-size: clamp(1.8rem, 5vw, 3rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}
.hero p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    max-width: 600px;
    margin: 0 auto 1.5rem;
}
.hero-meta {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.65);
}
.hero-meta span { display: flex; align-items: center; gap: 0.35rem; }

/* Breadcrumb */
.breadcrumb {
    background: var(--sand);
    padding: 0.6rem 2rem;
    font-size: 0.8rem;
    color: var(--text-muted);
}
.breadcrumb a { color: var(--text-muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--indigo); }
.breadcrumb span { margin: 0 0.4rem; }

/* Content */
.content {
    max-width: 860px;
    margin: 0 auto;
    padding: 2.5rem 1.5rem;
}

/* Key Takeaways */
.takeaways-box {
    background: #EFF6FF;
    border: 1.5px solid #93C5FD;
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    margin-bottom: 2rem;
}
.takeaways-box h2 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--indigo);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.takeaways-box ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.takeaways-box li {
    font-size: 0.92rem;
    color: var(--text);
    display: flex;
    gap: 0.5rem;
}
.takeaways-box li::before { content: "→"; color: var(--indigo); font-weight: 700; flex-shrink: 0; }

/* Safety box */
.safety-box {
    background: var(--warning-bg);
    border: 1.5px solid var(--warning);
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    margin-bottom: 2.5rem;
}
.safety-box h2 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.safety-box ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.safety-box li {
    font-size: 0.92rem;
    color: var(--text);
    position: relative;
    padding-left: 1.25rem;
}
.safety-box li::before {
    content: "✓";
    color: var(--low);
    font-weight: 700;
    position: absolute;
    left: 0;
    top: 0;
}

/* Section heading */
.section-heading {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--indigo);
    margin-bottom: 1.25rem;
    padding-bottom: 0.6rem;
    border-bottom: 2px solid var(--sand);
}

/* Scam card */
.scam-card {
    background: var(--white);
    border: 1.5px solid var(--sand);
    border-radius: 14px;
    padding: 1.5rem;
    margin-bottom: 1.25rem;
    transition: box-shadow 0.2s;
}
.scam-card:hover { box-shadow: 0 4px 20px rgba(45,58,92,0.08); }

.scam-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.9rem;
    flex-wrap: wrap;
}
.scam-number {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.scam-title {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--indigo);
    margin-top: 0.2rem;
}
.danger-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.65rem;
    border-radius: 99px;
    white-space: nowrap;
    flex-shrink: 0;
}
.danger-high { background: var(--danger-bg); color: var(--danger); }
.danger-medium { background: var(--warning-bg); color: #B45309; }
.danger-low { background: var(--low-bg); color: var(--low); }

.scam-location {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}
.scam-story {
    font-size: 0.97rem;
    color: var(--text);
    margin-bottom: 1rem;
    line-height: 1.7;
}
.scam-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
@media (max-width: 600px) {
    .scam-details { grid-template-columns: 1fr; }
}
.detail-block h4 {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}
.detail-block ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}
.detail-block li {
    font-size: 0.87rem;
    color: var(--text);
    position: relative;
    padding-left: 1.6rem;
}
.red-flags li::before {
    content: "🚩";
    position: absolute;
    left: 0;
    top: 0;
}
.avoid li::before {
    content: "✓";
    color: var(--low);
    font-weight: 700;
    position: absolute;
    left: 0;
    top: 0;
}

/* What to do section */
.action-section {
    background: var(--indigo);
    color: white;
    border-radius: 14px;
    padding: 2rem;
    margin: 2.5rem 0;
}
.action-section h2 {
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: 1.25rem;
}
.action-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.25rem;
}
.action-item {
    background: rgba(255,255,255,0.08);
    border-radius: 10px;
    padding: 1rem;
}
.action-item h3 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.action-item p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.5;
}
.action-item a { color: #93C5FD; }

/* FAQ */
.faq-section { margin: 2.5rem 0; }
.faq-item {
    border: 1.5px solid var(--sand);
    border-radius: 10px;
    margin-bottom: 0.75rem;
    overflow: hidden;
}
.faq-q {
    width: 100%;
    background: none;
    border: none;
    padding: 1rem 1.25rem;
    text-align: left;
    font-size: 0.97rem;
    font-weight: 700;
    color: var(--text);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.faq-q:hover { background: var(--warm-cream); }
.faq-arrow { font-size: 0.9rem; transition: transform 0.2s; }
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-a {
    display: none;
    padding: 0 1.25rem 1rem;
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.65;
}
.faq-item.open .faq-a { display: block; }

/* Related cities */
.related-section {
    margin: 2.5rem 0;
}
.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 0.75rem;
}
.related-card {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    background: var(--warm-cream);
    border: 1.5px solid var(--sand);
    border-radius: 10px;
    padding: 0.85rem 1rem;
    text-decoration: none;
    color: var(--text);
    transition: border-color 0.2s, box-shadow 0.2s;
}
.related-card:hover {
    border-color: var(--indigo);
    box-shadow: 0 2px 10px rgba(45,58,92,0.08);
}
.related-card .related-flag { font-size: 1.4rem; }
.related-card .related-info { display: flex; flex-direction: column; }
.related-card .related-city {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--indigo);
}
.related-card .related-country {
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* CTA */
.cta-box {
    background: var(--warm-cream);
    border: 1.5px solid var(--sand);
    border-radius: 14px;
    padding: 2rem;
    text-align: center;
    margin: 2.5rem 0;
}
.cta-box h2 {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--indigo);
    margin-bottom: 0.5rem;
}
.cta-box p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
}
.cta-btn {
    display: inline-block;
    background: var(--terracotta);
    color: white;
    padding: 0.8rem 1.75rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.97rem;
    text-decoration: none;
    transition: opacity 0.2s;
}
.cta-btn:hover { opacity: 0.88; }

/* Severity summary in hero */
.severity-summary {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}
.severity-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 0.25rem 0.7rem;
    border-radius: 99px;
}
.severity-pill.high { background: rgba(220,38,38,0.2); color: #FCA5A5; }
.severity-pill.medium { background: rgba(245,158,11,0.2); color: #FDE68A; }
.severity-pill.low { background: rgba(22,163,74,0.2); color: #86EFAC; }

/* Table of Contents */
.toc {
    background: var(--warm-cream);
    border: 1.5px solid var(--sand);
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    margin-bottom: 2rem;
}
.toc h2 {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}
.toc-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}
.toc-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.toc-list a {
    font-size: 0.92rem;
    color: var(--indigo);
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.15s;
}
.toc-list a:hover { color: var(--terracotta); }
.toc-list .toc-badge {
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.15rem 0.45rem;
    border-radius: 99px;
    flex-shrink: 0;
}
.toc-list .toc-badge.high { background: var(--danger-bg); color: var(--danger); }
.toc-list .toc-badge.medium { background: var(--warning-bg); color: #B45309; }
.toc-list .toc-badge.low { background: var(--low-bg); color: var(--low); }

/* Floating emergency button */
.emergency-fab {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    background: var(--danger);
    color: white;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(220,38,38,0.35);
    z-index: 100;
    transition: transform 0.2s, box-shadow 0.2s;
    border: none;
    cursor: pointer;
}
.emergency-fab:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(220,38,38,0.45);
}
.emergency-fab-tooltip {
    position: fixed;
    bottom: 1.75rem;
    right: 4.5rem;
    background: var(--text);
    color: white;
    font-size: 0.78rem;
    font-weight: 600;
    padding: 0.35rem 0.75rem;
    border-radius: 6px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s;
    z-index: 100;
}
.emergency-fab:hover + .emergency-fab-tooltip { opacity: 1; }

/* Mobile sticky book-CTA bar — hidden on desktop, shown <=899px viewport.
   Sits below the emergency-fab (z:100) and above page content. Dismissible
   with localStorage persistence and auto-hide when the end-CTA is near. */
.mobile-book-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--warm-cream-soft, #FAF6EE);
    border-top: 1px solid rgba(45, 58, 92, 0.12);
    padding: 0.6rem 0.75rem calc(0.6rem + env(safe-area-inset-bottom));
    display: none;
    align-items: center;
    gap: 0.6rem;
    z-index: 90;
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.04);
}
@media (max-width: 899px) {
    .mobile-book-bar { display: flex; }
    .mobile-book-bar.dismissed { display: none; }
}
.mobile-book-bar img {
    width: 32px;
    height: 48px;
    border-radius: 4px;
    flex-shrink: 0;
    object-fit: cover;
}
.mobile-book-bar-bundle-mark {
    width: 32px;
    height: 48px;
    border-radius: 4px;
    flex-shrink: 0;
    background: linear-gradient(170deg, #2D3A5C 0%, #1F2A45 100%);
    color: var(--gold);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1px 4px rgba(31, 42, 69, 0.25);
}
.mobile-book-bar-text {
    flex: 1;
    font-size: 0.82rem;
    line-height: 1.3;
    color: var(--text);
    min-width: 0;
}
.mobile-book-bar-text strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--indigo);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.mobile-book-bar-text span {
    display: block;
    color: var(--text-muted);
    font-size: 0.78rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.mobile-book-bar-cta {
    background: var(--terracotta);
    color: #fff;
    padding: 0.45rem 0.75rem;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    flex-shrink: 0;
    white-space: nowrap;
}
.mobile-book-bar-cta:hover { background: var(--terracotta-deep); }
.mobile-book-bar-dismiss {
    background: none;
    border: 0;
    padding: 0.4rem;
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1;
    cursor: pointer;
    flex-shrink: 0;
}
.mobile-book-bar-dismiss:hover { color: var(--text); }

/* Cross-links bar */
.cross-links {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin: 1.5rem 0;
}
.cross-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--warm-cream);
    border: 1.5px solid var(--sand);
    border-radius: 8px;
    padding: 0.5rem 0.9rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--indigo);
    text-decoration: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.cross-link:hover {
    border-color: var(--indigo);
    box-shadow: 0 2px 8px rgba(45,58,92,0.08);
}

/* TL;DR line in scam story */
.scam-tldr {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--indigo);
    margin-bottom: 0.5rem;
    line-height: 1.5;
}
.scam-story-body {
    font-size: 0.97rem;
    color: var(--text);
    margin-bottom: 1rem;
    line-height: 1.7;
}

/* Share button */
.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: none;
    border: 1.5px solid var(--sand);
    border-radius: 8px;
    padding: 0.45rem 0.85rem;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    font-family: inherit;
    transition: border-color 0.2s, color 0.2s;
}
.share-btn:hover { border-color: var(--indigo); color: var(--indigo); }

/* Mid-content CTA */
.mid-cta {
    background: linear-gradient(135deg, var(--indigo), var(--indigo-light));
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    margin: 1.5rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}
.mid-cta p {
    color: rgba(255,255,255,0.9);
    font-size: 0.92rem;
    font-weight: 600;
    margin: 0;
}
.mid-cta a {
    display: inline-block;
    background: var(--terracotta);
    color: white;
    padding: 0.55rem 1.25rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.85rem;
    text-decoration: none;
    white-space: nowrap;
    transition: opacity 0.2s;
    flex-shrink: 0;
}
.mid-cta a:hover { opacity: 0.88; }

/* Book mid-scroll CTA — compact, horizontal, brand-gradient */
.book-mid-cta {
    display: flex;
    align-items: center;
    gap: 1.15rem;
    background: linear-gradient(135deg, var(--indigo), var(--indigo-light));
    border-radius: 14px;
    padding: 1.1rem 1.35rem;
    margin: 2rem 0;
    color: #fff;
    text-decoration: none;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
    box-shadow: 0 4px 18px rgba(45,58,92,0.12);
}
.book-mid-cta:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(45,58,92,0.22); }
.book-mid-cta-cover {
    flex: 0 0 64px;
    width: 64px;
    aspect-ratio: 2/3;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 6px 16px rgba(0,0,0,0.35);
    transform: rotate(-3deg);
}
.book-mid-cta-cover img { width: 100%; height: 100%; object-fit: cover; display: block; }
.book-mid-cta-body { flex: 1 1 auto; min-width: 0; }
.book-mid-cta-eyebrow {
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #D4A12E;
    font-weight: 700;
    margin-bottom: 0.3rem;
}
.book-mid-cta-headline {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.35;
    margin-bottom: 0.25rem;
}
.book-mid-cta-meta {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.78);
}
.book-mid-cta-btn {
    flex: 0 0 auto;
    background: var(--terracotta);
    color: #fff;
    padding: 0.65rem 1.25rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    white-space: nowrap;
    text-decoration: none;
}
.book-mid-cta-meta a {
    color: rgba(255, 255, 255, 0.92);
    text-decoration: underline;
    text-underline-offset: 2px;
}
.book-mid-cta-meta a:hover { color: #fff; }
@media (max-width: 640px) {
    .book-mid-cta { flex-wrap: wrap; padding: 1.1rem; }
    .book-mid-cta-btn { width: 100%; text-align: center; margin-top: 0.5rem; }
}

/* Book end-of-article CTA — prominent 2-column warm-cream module */
.book-end-cta {
    margin: 3rem 0 2rem;
    background: var(--warm-cream);
    border: 1.5px solid var(--sand);
    border-radius: 18px;
    padding: 2rem;
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 2rem;
    align-items: center;
}
.book-end-cta-cover {
    aspect-ratio: 2/3;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0,0,0,0.12), 0 22px 50px rgba(45,58,92,0.18);
    transform: rotate(-2deg);
    transition: transform 0.3s ease;
    display: block;
}
.book-end-cta-cover:hover { transform: rotate(0) scale(1.02); }
.book-end-cta-cover img { width: 100%; height: 100%; object-fit: cover; display: block; }
.book-end-cta-eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--terracotta);
    font-weight: 700;
    margin-bottom: 0.55rem;
}
.book-end-cta-headline {
    font-size: clamp(1.3rem, 2.4vw, 1.7rem);
    font-weight: 800;
    color: var(--indigo);
    line-height: 1.2;
    letter-spacing: -0.01em;
    margin-bottom: 0.75rem;
}
.book-end-cta-sub {
    font-size: 0.97rem;
    color: var(--text-muted);
    line-height: 1.55;
    margin-bottom: 1rem;
}
.book-end-cta-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 1.4rem;
    font-size: 0.93rem;
    color: var(--text);
}
.book-end-cta-benefits li {
    padding: 0.25rem 0 0.25rem 1.5rem;
    position: relative;
    line-height: 1.45;
}
.book-end-cta-benefits li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0.25rem;
    color: var(--sage);
    font-weight: 700;
}
.book-end-cta-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1rem;
    align-items: center;
}
.book-end-cta-primary {
    display: inline-block;
    background: var(--terracotta);
    color: #fff;
    padding: 0.9rem 1.6rem;
    border-radius: 9px;
    font-weight: 700;
    font-size: 0.98rem;
    text-decoration: none;
    transition: background 0.18s ease, transform 0.18s ease;
}
.book-end-cta-primary:hover { background: #b5633f; transform: translateY(-1px); }
.book-end-cta-secondary {
    display: inline-block;
    color: var(--indigo);
    padding: 0.9rem 0.25rem;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}
.book-end-cta-secondary:hover { color: var(--terracotta); }
@media (max-width: 720px) {
    .book-end-cta { grid-template-columns: 1fr; padding: 1.5rem; }
    .book-end-cta-cover { max-width: 180px; margin: 0 auto; }
}

/* Travel Safety Series bundle cover — CSS-only, no image asset.
   Renders inside `.book-end-cta-cover.bundle-cover` (220×330) and the
   smaller `.book-mid-cta-cover.bundle-cover` (≈64×96). */
.bundle-cover {
    background: linear-gradient(170deg, #2D3A5C 0%, #1F2A45 100%);
    color: #fff;
    position: relative;
    display: flex;
    flex-direction: column;
    text-decoration: none;
}
.bundle-cover::before {
    content: '';
    position: absolute;
    inset: 10px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 3px;
    pointer-events: none;
}
.book-end-cta-cover.bundle-cover {
    padding: 1.75rem 1.4rem;
    justify-content: space-between;
}
.bundle-cover-badge {
    position: absolute;
    top: -10px; right: -10px;
    background: var(--terracotta);
    color: #fff;
    width: 64px; height: 64px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.6rem;
    line-height: 1;
    box-shadow: 0 4px 12px rgba(168, 90, 55, 0.4);
    transform: rotate(8deg);
    z-index: 1;
}
.bundle-cover-badge small {
    font-size: 0.55rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 600;
    opacity: 0.9;
    margin-top: 2px;
}
.bundle-cover-eyebrow {
    font-size: 0.6rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    opacity: 0.6;
    font-weight: 600;
    margin-bottom: 0.5rem;
}
.bundle-cover-title {
    font-family: 'Newsreader', Georgia, serif;
    font-size: 2rem;
    line-height: 1;
    font-weight: 700;
    display: block;
}
.bundle-cover-title em {
    font-style: italic;
    color: var(--gold);
    display: block;
    font-size: 1.6rem;
}
.bundle-cover-sub {
    font-size: 0.78rem;
    line-height: 1.4;
    opacity: 0.75;
    margin-top: 0.5rem;
    display: block;
}
.bundle-cover-brand {
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    opacity: 0.5;
    font-weight: 600;
    display: block;
}

/* Mid-CTA bundle cover — compact variant. Hides the badge + sub copy that
   don't legibly render at this size; keeps the indigo block + "20+" mark. */
.book-mid-cta-cover.bundle-cover {
    padding: 0.4rem 0.3rem;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-radius: 4px;
    overflow: hidden;
}
.book-mid-cta-cover.bundle-cover::before { inset: 4px; border-radius: 2px; }
.book-mid-cta-cover.bundle-cover .bundle-cover-badge,
.book-mid-cta-cover.bundle-cover .bundle-cover-eyebrow,
.book-mid-cta-cover.bundle-cover .bundle-cover-sub,
.book-mid-cta-cover.bundle-cover .bundle-cover-brand { display: none; }
.book-mid-cta-cover.bundle-cover .bundle-cover-title {
    font-size: 0.62rem;
    letter-spacing: 0.04em;
    line-height: 1.05;
    font-weight: 700;
    color: var(--gold);
}
.book-mid-cta-cover.bundle-cover .bundle-cover-title em {
    font-size: 0.62rem;
    font-style: normal;
    color: #fff;
}

/* Reading time */
.reading-time {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.55);
    margin-top: 0.5rem;
}

/* Back-to-top */
.back-to-top {
    position: fixed;
    bottom: 1.5rem;
    left: 1.5rem;
    background: var(--indigo);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    text-decoration: none;
    box-shadow: 0 2px 10px rgba(45,58,92,0.25);
    z-index: 100;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s, transform 0.2s;
}
.back-to-top.visible { opacity: 1; pointer-events: auto; }
.back-to-top:hover { transform: scale(1.1); }


/* scam-illustration block - added for illustrated scam figures */
.scam-illustration {
    margin: 0 0 1rem;
    border-radius: 10px;
    overflow: hidden;
    background: var(--sand);
    aspect-ratio: 1 / 1;
}
.scam-illustration img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ============================================================
   EDITORIAL v2 — gated system matching /books + homepage typography.
   Activate by adding `editorial-v2` to <body>. When promoted, the gate
   can be removed in favour of unconditional selectors.
   ============================================================ */

body.editorial-v2 {
    font-family: var(--font-sans);
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Soft editorial selection — translucent terracotta tint preserves
   the underlying indigo/terracotta text color, so selecting a serif
   H1 no longer produces a jarring solid rectangle. */
body.editorial-v2 ::selection { background: rgba(168, 90, 55, 0.22); color: inherit; }

/* Signature editorial emphasis — italic serif in terracotta.
   Applies to every <em> inside editorial-v2 pages so the accent
   flows consistently through H1s, pull-quotes, body copy, and
   card titles. Per-context rules only override if they need to
   change size or line-height. */
body.editorial-v2 em {
    font-style: italic;
    color: var(--terracotta);
    font-weight: 500;
    font-family: inherit;
}

/* ---- Legacy class aliases so the 25 inline-<style> pages can drop
   their <style> block and inherit the editorial system without
   having to rename markup. ---- */
body.editorial-v2 .key-takeaways { /* alias of .takeaways-box */
    background: var(--warm-cream);
    border: 1px solid var(--sand);
    border-left: 4px solid var(--terracotta);
    border-radius: var(--radius-md);
    padding: 1.5rem 1.6rem;
    margin-bottom: 2rem;
}
body.editorial-v2 .related-box { /* alias of .related-section container */
    margin: 2.5rem 0;
}

/* ============================================================
   HERO — warm-cream editorial, matching /books
   ============================================================ */
body.editorial-v2 .breadcrumb {
    background: transparent;
    padding: 5.25rem 2rem 0.5rem;
    font-size: 0.82rem;
    color: var(--text-muted);
    max-width: 1160px;
    margin: 0 auto;
    font-family: var(--font-sans);
}
body.editorial-v2 .breadcrumb a { color: var(--earth); transition: color 0.15s; }
body.editorial-v2 .breadcrumb a:hover { color: var(--terracotta); }
body.editorial-v2 .breadcrumb span {
    margin: 0 0.5rem;
    color: var(--sand);
    font-family: var(--font-serif);
    font-style: italic;
}

body.editorial-v2 .hero {
    background: var(--warm-cream-soft);
    color: var(--text);
    padding: 3rem 2rem 3.5rem;
    text-align: center;
    border-bottom: 1px solid var(--sand);
}

body.editorial-v2 .hero-badge {
    display: inline-block;
    position: relative;
    background: none;
    color: var(--terracotta);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    padding: 1.25rem 0 0;
    margin-bottom: 1.25rem;
}
body.editorial-v2 .hero-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: var(--terracotta);
}

body.editorial-v2 .hero h1 {
    font-family: var(--font-serif);
    font-size: clamp(2.2rem, 5.5vw, 3.4rem);
    line-height: 1.08;
    font-weight: 500;
    color: var(--indigo);
    letter-spacing: -0.015em;
    margin-bottom: 1.2rem;
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
}
body.editorial-v2 .hero h1 em {
    font-style: italic;
    color: var(--terracotta);
    font-weight: 500;
}

body.editorial-v2 .hero p {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: clamp(1.05rem, 1.4vw, 1.2rem);
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 1.75rem;
    font-weight: 400;
    line-height: 1.55;
}

body.editorial-v2 .hero-meta {
    display: flex;
    justify-content: center;
    gap: 0.55rem;
    flex-wrap: wrap;
    font-size: 0.78rem;
    color: var(--indigo);
    margin-bottom: 1rem;
}
body.editorial-v2 .hero-meta span {
    background: var(--white);
    border: 1px solid var(--sand);
    border-radius: var(--radius-pill);
    padding: 0.45rem 1rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

body.editorial-v2 .severity-summary {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}
body.editorial-v2 .severity-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--white);
    border: 1px solid var(--sand);
    color: var(--indigo);
    font-size: 0.76rem;
    font-weight: 600;
    padding: 0.4rem 0.9rem;
    border-radius: var(--radius-pill);
    letter-spacing: 0.04em;
}
body.editorial-v2 .severity-pill::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}
body.editorial-v2 .severity-pill.high::before    { background: var(--ed-high-text); }
body.editorial-v2 .severity-pill.medium::before  { background: var(--ed-med-text); }
body.editorial-v2 .severity-pill.low::before     { background: var(--ed-low-text); }

body.editorial-v2 .reading-time {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 0.88rem;
    color: var(--earth);
    margin-top: 1rem;
}

/* ============================================================
   CONTENT WRAPPER
   ============================================================ */
body.editorial-v2 .content {
    max-width: 760px;
    margin: 0 auto;
    padding: 3rem 1.5rem 2rem;
}

/* ============================================================
   TAKEAWAYS + SAFETY — warm-cream containers, left strip signals
   ============================================================ */
body.editorial-v2 .takeaways-box,
body.editorial-v2 .key-takeaways {
    background: var(--warm-cream);
    border: 1px solid var(--sand);
    border-left: 4px solid var(--terracotta);
    border-radius: var(--radius-md);
    padding: 1.5rem 1.6rem;
    margin-bottom: 1.75rem;
}
body.editorial-v2 .takeaways-box h2,
body.editorial-v2 .key-takeaways h2 {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--indigo);
    letter-spacing: -0.005em;
    margin-bottom: 0.85rem;
    display: block;
}
body.editorial-v2 .takeaways-box ul,
body.editorial-v2 .key-takeaways ul { gap: 0.55rem; }
body.editorial-v2 .takeaways-box li,
body.editorial-v2 .key-takeaways li {
    font-size: 0.95rem;
    line-height: 1.55;
    color: var(--text);
}
body.editorial-v2 .takeaways-box li::before,
body.editorial-v2 .key-takeaways li::before {
    content: "→";
    color: var(--terracotta);
    font-weight: 700;
}

body.editorial-v2 .safety-box {
    background: var(--warm-cream-soft);
    border: 1px solid var(--sand);
    border-left: 4px solid var(--sage);
    border-radius: var(--radius-md);
    padding: 1.5rem 1.6rem;
    margin-bottom: 2.25rem;
}
body.editorial-v2 .safety-box h2 {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--indigo);
    letter-spacing: -0.005em;
    margin-bottom: 0.85rem;
}
body.editorial-v2 .safety-box li {
    font-size: 0.95rem;
    line-height: 1.55;
    color: var(--text);
}
body.editorial-v2 .safety-box li::before {
    content: "✓";
    color: var(--sage);
    font-weight: 700;
}

/* ============================================================
   CROSS-LINKS (above takeaways)
   ============================================================ */
body.editorial-v2 .cross-link {
    background: var(--white);
    border: 1px solid var(--sand);
    border-radius: var(--radius-pill);
    padding: 0.5rem 1rem;
    font-size: 0.82rem;
    color: var(--indigo);
    font-weight: 500;
}
body.editorial-v2 .cross-link:hover {
    border-color: var(--terracotta);
    color: var(--terracotta);
    box-shadow: none;
}

/* ============================================================
   TABLE OF CONTENTS — sticky on desktop
   ============================================================ */
body.editorial-v2 .toc {
    background: var(--warm-cream);
    border: 1px solid var(--sand);
    border-radius: var(--radius-md);
    padding: 1.4rem 1.6rem;
    margin-bottom: 2rem;
}
body.editorial-v2 .toc h2 {
    font-family: var(--font-sans);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--terracotta);
    margin-bottom: 0.9rem;
    position: relative;
    padding-top: 0.6rem;
}
body.editorial-v2 .toc h2::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 40px; height: 2px;
    background: var(--terracotta);
}
/* TOC list — editorial, minimal. Severity encoded as a 2px colored
   left-rule on each <li> (zero horizontal cost, no text labels).
   Scam number is a CSS counter so the markup stays untouched. */
body.editorial-v2 .toc-list {
    gap: 0;
    counter-reset: scam;
    margin-top: 0.25rem;
}
body.editorial-v2 .toc-list li {
    counter-increment: scam;
    position: relative;
    padding: 0.4rem 0 0.4rem 0.85rem;
    border-left: 2px solid var(--sand);
    transition: border-color 0.2s, background 0.2s;
}
body.editorial-v2 .toc-list li + li { border-top: 1px solid rgba(232, 223, 208, 0.5); }
body.editorial-v2 .toc-list li:hover { background: rgba(255, 255, 255, 0.6); }
body.editorial-v2 .toc-list li:has(.toc-badge.high)   { border-left-color: var(--ed-high-text); }
body.editorial-v2 .toc-list li:has(.toc-badge.medium) { border-left-color: var(--ed-med-text); }
body.editorial-v2 .toc-list li:has(.toc-badge.low)    { border-left-color: var(--ed-low-text); }
body.editorial-v2 .toc-list li.active {
    background: var(--white);
    border-left-width: 3px;
}

body.editorial-v2 .toc-list a {
    display: flex;
    align-items: baseline;
    gap: 0.55rem;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    line-height: 1.32;
    color: var(--indigo);
    font-weight: 500;
}
body.editorial-v2 .toc-list a::before {
    content: counter(scam, decimal-leading-zero);
    flex-shrink: 0;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--earth);
    min-width: 1.5em;
    font-variant-numeric: tabular-nums;
    transition: color 0.2s;
}
body.editorial-v2 .toc-list li.active a { color: var(--terracotta); font-weight: 600; }
body.editorial-v2 .toc-list li.active a::before { color: var(--terracotta); }
body.editorial-v2 .toc-list a:hover { color: var(--terracotta); }
body.editorial-v2 .toc-list a:hover::before { color: var(--terracotta); }

/* Hide the verbose HIGH/MEDIUM/LOW text badges — severity is now
   encoded visually via the li's left-border color. Keep the span in
   the markup so :has() can read the severity class. */
body.editorial-v2 .toc-list .toc-badge {
    position: absolute;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0,0,0,0);
    white-space: nowrap; border: 0;
}

/* ============================================================
   SECTION HEADING + SHARE BUTTON
   ============================================================ */
body.editorial-v2 .section-heading {
    font-family: var(--font-serif);
    font-size: clamp(1.55rem, 2.6vw, 1.9rem);
    font-weight: 500;
    color: var(--indigo);
    letter-spacing: -0.01em;
    padding-bottom: 0;
    border-bottom: none;
    line-height: 1.2;
}

body.editorial-v2 .share-btn {
    font-family: var(--font-sans);
    border: 1px solid var(--sand);
    color: var(--earth);
    font-weight: 500;
    font-size: 0.8rem;
    padding: 0.45rem 0.9rem;
    border-radius: var(--radius-pill);
    background: var(--white);
}
body.editorial-v2 .share-btn:hover {
    color: var(--terracotta);
    border-color: var(--terracotta);
}

/* ============================================================
   SCAM CARD
   ============================================================ */
body.editorial-v2 .scam-card {
    background: var(--warm-cream-soft);
    border: 1px solid var(--sand);
    border-radius: var(--radius-md);
    padding: 1.75rem 1.75rem 1.9rem;
    margin-bottom: 1.25rem;
    scroll-margin-top: calc(var(--nav-height) + 1rem);
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}
body.editorial-v2 .scam-card:hover,
body.editorial-v2 .browse-card:hover {
    border-color: var(--terracotta);
    box-shadow: 0 6px 22px rgba(60, 40, 25, 0.09);
    transform: translateY(-2px);
}

body.editorial-v2 .scam-number {
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--terracotta);
    text-transform: uppercase;
    letter-spacing: 0.22em;
    margin-bottom: 0.35rem;
}

body.editorial-v2 .scam-title {
    font-family: var(--font-serif);
    font-size: clamp(1.3rem, 2vw, 1.55rem);
    font-weight: 600;
    color: var(--indigo);
    line-height: 1.18;
    letter-spacing: -0.005em;
    margin-top: 0;
}

body.editorial-v2 .danger-badge {
    border: 1px solid transparent;
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 0.74rem;
    letter-spacing: 0.04em;
    padding: 0.3rem 0.75rem;
}
body.editorial-v2 .danger-high   { background: var(--ed-high-bg); color: var(--ed-high-text); }
body.editorial-v2 .danger-medium { background: var(--ed-med-bg);  color: var(--ed-med-text); }
body.editorial-v2 .danger-low    { background: var(--ed-low-bg);  color: var(--ed-low-text); }

body.editorial-v2 .scam-location {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 0.92rem;
    color: var(--earth);
    line-height: 1.5;
}

body.editorial-v2 .scam-tldr {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 500;
    font-size: 1.05rem;
    color: var(--indigo);
    line-height: 1.5;
    margin: 0.75rem 0 0.85rem;
    padding-left: 0.9rem;
    border-left: 2px solid var(--sand);
}

body.editorial-v2 .scam-story-body {
    font-family: var(--font-sans);
    font-size: 0.97rem;
    color: var(--text);
    line-height: 1.72;
    font-variant-numeric: tabular-nums;
}

body.editorial-v2 .detail-block h4 {
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--terracotta);
    margin-bottom: 0.65rem;
    position: relative;
    padding-top: 0.55rem;
}
body.editorial-v2 .detail-block h4::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 28px; height: 2px;
    background: var(--terracotta);
}
body.editorial-v2 .detail-block.avoid h4 { color: var(--ed-low-text); }
body.editorial-v2 .detail-block.avoid h4::before { background: var(--ed-low-text); }
body.editorial-v2 .detail-block li {
    font-size: 0.9rem;
    color: var(--text);
    line-height: 1.55;
}

/* ============================================================
   MID-CTA + BOOK CTA — already editorial, just minor polish
   ============================================================ */
body.editorial-v2 .mid-cta {
    background: linear-gradient(135deg, var(--indigo), var(--indigo-light));
    border-radius: var(--radius-md);
}
body.editorial-v2 .mid-cta p {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 500;
    font-size: 1rem;
}

/* ============================================================
   ACTION SECTION
   ============================================================ */
body.editorial-v2 .action-section {
    background: var(--indigo);
    border-radius: var(--radius-lg);
    padding: 2.25rem 2rem;
}
body.editorial-v2 .action-section h2 {
    font-family: var(--font-serif);
    font-size: clamp(1.5rem, 2.5vw, 1.85rem);
    font-weight: 500;
    letter-spacing: -0.01em;
}
body.editorial-v2 .action-item {
    background: rgba(255,255,255,0.06);
    border-radius: var(--radius-md);
}
body.editorial-v2 .action-item h3 {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: -0.005em;
}

/* ============================================================
   FAQ — serif answers, sans questions (button ergonomics)
   ============================================================ */
body.editorial-v2 .faq-item {
    border: 1px solid var(--sand);
    border-radius: var(--radius-md);
    background: var(--white);
}
body.editorial-v2 .faq-q {
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 600;
    color: var(--indigo);
}
body.editorial-v2 .faq-q:hover { background: var(--warm-cream-soft); }
body.editorial-v2 .faq-a {
    font-family: var(--font-serif);
    font-size: 1rem;
    color: var(--text);
    line-height: 1.65;
}

/* ============================================================
   RELATED SECTION
   ============================================================ */
body.editorial-v2 .related-section h2,
body.editorial-v2 .related-box h2 {
    font-family: var(--font-serif);
    font-size: clamp(1.4rem, 2.4vw, 1.7rem);
    font-weight: 500;
    color: var(--indigo);
    margin-bottom: 1.25rem;
}
body.editorial-v2 .related-card {
    background: var(--warm-cream);
    border: 1px solid var(--sand);
    border-radius: var(--radius-md);
}
body.editorial-v2 .related-card:hover {
    border-color: var(--terracotta);
    box-shadow: 0 4px 14px rgba(60, 40, 25, 0.08);
}
body.editorial-v2 .related-card .related-city {
    font-family: var(--font-serif);
    font-size: 1.02rem;
    font-weight: 600;
    color: var(--indigo);
    letter-spacing: -0.005em;
}
body.editorial-v2 .related-card .related-country {
    font-family: var(--font-sans);
    font-size: 0.76rem;
    color: var(--earth);
}

/* ============================================================
   CTA BOX
   ============================================================ */
body.editorial-v2 .cta-box {
    background: var(--warm-cream);
    border: 1px solid var(--sand);
    border-radius: var(--radius-lg);
    padding: 2.25rem;
}
body.editorial-v2 .cta-box h2 {
    font-family: var(--font-serif);
    font-size: clamp(1.4rem, 2.4vw, 1.75rem);
    font-weight: 500;
    letter-spacing: -0.01em;
}
body.editorial-v2 .cta-box p {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.02rem;
}
body.editorial-v2 .cta-btn {
    font-family: var(--font-sans);
    border-radius: var(--radius-md);
}

/* ============================================================
   FLOATING BUTTONS — reskin red FAB to terracotta
   ============================================================ */
body.editorial-v2 .emergency-fab {
    background: var(--terracotta);
    box-shadow: 0 4px 16px rgba(168, 90, 55, 0.35);
}
body.editorial-v2 .emergency-fab:hover {
    background: var(--terracotta-deep);
    box-shadow: 0 6px 24px rgba(168, 90, 55, 0.45);
}
body.editorial-v2 .back-to-top {
    background: var(--indigo);
    box-shadow: 0 2px 10px rgba(45, 58, 92, 0.25);
}

/* ============================================================
   STICKY TOC — desktop only
   ============================================================ */
@media (min-width: 900px) {
    body.editorial-v2 .content {
        display: grid;
        grid-template-columns: 220px minmax(0, 1fr);
        grid-column-gap: 3rem;
        max-width: 1080px;
    }
    body.editorial-v2 .cross-links,
    body.editorial-v2 .takeaways-box,
    body.editorial-v2 .key-takeaways,
    body.editorial-v2 .safety-box,
    body.editorial-v2 .scam-card,
    body.editorial-v2 .mid-cta,
    body.editorial-v2 .action-section,
    body.editorial-v2 .faq-section,
    body.editorial-v2 .related-section,
    body.editorial-v2 .related-box,
    body.editorial-v2 .cta-box,
    body.editorial-v2 .book-mid-cta,
    body.editorial-v2 .book-end-cta,
    body.editorial-v2 .content > div:not(.toc):not(.cross-links),
    body.editorial-v2 .content > h2,
    body.editorial-v2 .content > hr {
        grid-column: 2;
    }
    /* Scoped to scam-page TOCs (direct children of .content grid container).
       The unscoped `.toc` selector bled into /health/ country pages that use
       <aside class="toc"> inside a separate .layout grid — forcing 999 phantom
       grid rows × 2.5rem gap = ~40,000px empty space between Sources and footer. */
    body.editorial-v2 .content > .toc {
        grid-column: 1;
        grid-row: 1 / span 999;
        position: sticky;
        top: calc(var(--nav-height) + 1rem);
        align-self: start;
        max-height: calc(100vh - var(--nav-height) - 2rem);
        overflow-y: auto;
        padding: 1.25rem 1.25rem;
    }
    body.editorial-v2 .toc-list a { font-size: 0.88rem; }
}

/* ============================================================
   MOBILE
   ============================================================ */
@media (max-width: 768px) {
    body.editorial-v2 .hero { padding: 2.25rem 1.25rem 2.5rem; }
    body.editorial-v2 .content { padding: 2.25rem 1rem 2rem; }
    body.editorial-v2 .scam-card { padding: 1.4rem 1.35rem 1.5rem; }
    body.editorial-v2 .breadcrumb { padding-top: 4.5rem; padding-left: 1.25rem; padding-right: 1.25rem; }
    body.editorial-v2 .hero-meta { font-size: 0.74rem; }
}

/* ============================================================
   HUBS — /scams/ index + /scams/country/ (editorial-v2)
   Shared rules for the two hub page families. Only applies when the
   page carries body.editorial-v2.
   ============================================================ */

/* Shared hero — both /scams/ (.hero) and country (.page-hero) get the
   warm-cream editorial treatment. Breadcrumb sits above. */
body.editorial-v2 .page-hero {
    background: var(--warm-cream-soft);
    padding: 3rem 2rem 3.5rem;
    text-align: center;
    border-bottom: 1px solid var(--sand);
}
body.editorial-v2 .page-hero-inner {
    max-width: 820px;
    margin: 0 auto;
}
body.editorial-v2 .page-hero-eyebrow {
    display: inline-block;
    position: relative;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--terracotta);
    letter-spacing: 0.22em;
    text-transform: uppercase;
    padding-top: 1.25rem;
    margin-bottom: 1.1rem;
}
body.editorial-v2 .page-hero-eyebrow::before {
    content: '';
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 40px; height: 2px;
    background: var(--terracotta);
}
body.editorial-v2 .page-hero h1 {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4.5vw, 3rem);
    line-height: 1.08;
    font-weight: 500;
    color: var(--indigo);
    letter-spacing: -0.015em;
    margin-bottom: 1.2rem;
}
body.editorial-v2 .page-hero h1 em {
    font-style: italic;
    color: var(--terracotta);
    font-weight: 500;
}
body.editorial-v2 .page-hero-flag {
    display: inline-block;
    margin-right: 0.75rem;
    vertical-align: -0.08em;
    filter: saturate(0.92);
}
body.editorial-v2 .page-hero p {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: clamp(1.02rem, 1.4vw, 1.15rem);
    color: var(--text-muted);
    max-width: 620px;
    margin: 0 auto 1.75rem;
    line-height: 1.55;
}

/* Stats — both .page-hero-stats (country) and .stats-bar (index) */
body.editorial-v2 .page-hero-stats,
body.editorial-v2 .stats-bar {
    display: flex;
    justify-content: center;
    gap: 0.6rem;
    flex-wrap: wrap;
    margin-top: 0.5rem;
}
body.editorial-v2 .page-hero-stats .stat-pill,
body.editorial-v2 .stats-bar .stat {
    background: var(--white);
    border: 1px solid var(--sand);
    border-radius: var(--radius-pill);
    padding: 0.5rem 1.1rem;
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--indigo);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: baseline;
    gap: 0.4rem;
    font-variant-numeric: tabular-nums;
}
body.editorial-v2 .page-hero-stats .stat-pill strong,
body.editorial-v2 .stats-bar .stat strong {
    font-family: var(--font-serif);
    font-weight: 600;
    color: var(--terracotta);
    font-size: 1rem;
    letter-spacing: -0.01em;
    text-transform: none;
}

/* Danger strip (country hub) — severity dots, matching severity-pill pattern */
body.editorial-v2 .danger-strip {
    display: flex;
    justify-content: center;
    gap: 0.6rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}
body.editorial-v2 .danger-strip .danger-item {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--white);
    border: 1px solid var(--sand);
    border-radius: var(--radius-pill);
    padding: 0.35rem 0.85rem;
    font-size: 0.76rem;
    font-weight: 600;
    color: var(--indigo);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-variant-numeric: tabular-nums;
}
body.editorial-v2 .danger-strip .danger-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
    display: inline-block;
}
body.editorial-v2 .danger-strip .danger-high .danger-dot { background: var(--ed-high-text); }
body.editorial-v2 .danger-strip .danger-med  .danger-dot { background: var(--ed-med-text); }
body.editorial-v2 .danger-strip .danger-low  .danger-dot { background: var(--ed-low-text); }

/* /scams/ index specific — hero + badge */
body.editorial-v2 main > .hero {
    background: var(--warm-cream-soft);
    color: var(--text);
    padding: 3rem 2rem 3.5rem;
    text-align: center;
    border-bottom: 1px solid var(--sand);
}
body.editorial-v2 main > .hero h1 {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4.5vw, 3rem);
    line-height: 1.08;
    font-weight: 500;
    color: var(--indigo);
    letter-spacing: -0.015em;
    margin-bottom: 1.2rem;
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
}
body.editorial-v2 main > .hero h1 em {
    font-style: italic;
    color: var(--terracotta);
    font-weight: 500;
}
body.editorial-v2 main > .hero p {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: clamp(1.02rem, 1.4vw, 1.15rem);
    color: var(--text-muted);
    max-width: 620px;
    margin: 0 auto;
    line-height: 1.55;
}

/* Search section */
body.editorial-v2 .search-section {
    max-width: 680px;
    margin: 2rem auto 1.5rem;
    padding: 0 1.5rem;
}
body.editorial-v2 .search-wrap {
    position: relative;
    display: flex;
    align-items: center;
    background: var(--white);
    border: 1px solid var(--sand);
    border-radius: var(--radius-pill);
    padding: 0.15rem 0.5rem 0.15rem 1.2rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}
body.editorial-v2 .search-wrap:focus-within {
    border-color: var(--terracotta);
    box-shadow: 0 2px 12px rgba(168, 90, 55, 0.12);
}
body.editorial-v2 .search-icon {
    font-size: 1rem;
    opacity: 0.6;
    margin-right: 0.5rem;
    flex-shrink: 0;
}
body.editorial-v2 #city-search {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    padding: 0.75rem 0.25rem;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    color: var(--text);
    min-width: 0;
}
body.editorial-v2 #city-search::placeholder {
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--earth);
    opacity: 1;
}

/* Country filter pills */
body.editorial-v2 .country-filter {
    display: flex !important;
    flex-wrap: wrap;
    gap: 0.45rem !important;
    max-width: 960px !important;
    margin: 1.5rem auto !important;
    padding: 0 1.5rem !important;
    justify-content: center !important;
}
body.editorial-v2 .filter-pill {
    background: var(--white);
    border: 1px solid var(--sand);
    border-radius: var(--radius-pill);
    padding: 0.45rem 0.95rem;
    font-family: var(--font-sans);
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--indigo);
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s, color 0.2s, transform 0.15s;
    font-variant-numeric: tabular-nums;
}
body.editorial-v2 .filter-pill:hover {
    border-color: var(--terracotta);
    color: var(--terracotta);
    transform: translateY(-1px);
}
body.editorial-v2 .filter-pill.active {
    background: var(--terracotta);
    border-color: var(--terracotta);
    color: var(--white);
}
body.editorial-v2 #country-link-a {
    font-family: var(--font-sans);
    color: var(--terracotta) !important;
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s;
}
body.editorial-v2 #country-link-a:hover {
    border-bottom-color: var(--terracotta);
}

/* Grid section wrapper (index) */
body.editorial-v2 .grid-section {
    max-width: 1200px;
    margin: 2rem auto 0;
    padding: 0 1.5rem;
}
/* Bottom breathing room when a .grid-section is the final block before
   </main> — added 2026-04-30 after the Coming Soon section was removed
   on /scams/everywhere/ left the last card flush against the footer. */
body.editorial-v2 .grid-section:last-child {
    margin-bottom: 4rem;
}
body.editorial-v2 .grid-label {
    font-family: var(--font-sans);
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--terracotta);
    letter-spacing: 0.22em;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
    position: relative;
    padding-top: 1.25rem;
}
body.editorial-v2 .grid-label::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 40px; height: 2px;
    background: var(--terracotta);
}

/* City grid (shared container) */
body.editorial-v2 .city-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1rem;
}
body.editorial-v2 .no-results {
    display: none;
    margin: 1.5rem 0 0;
    padding: 1.25rem 1.4rem;
    background: var(--warm-cream);
    border: 1px solid var(--sand);
    border-radius: var(--radius-md);
    color: var(--text);
    font-family: var(--font-sans);
    line-height: 1.55;
}
body.editorial-v2 .no-results.visible {
    display: block;
}
body.editorial-v2 .no-results strong {
    display: block;
    color: var(--indigo);
    margin-bottom: 0.25rem;
}
body.editorial-v2 .no-results a {
    color: var(--terracotta);
    font-weight: 700;
}

/* City card — two internal structures, one chrome.
   Variant A (index): .flag + .city-name + .city-country + .scam-count + .city-tagline + .card-date + .arrow
   Variant B (country hub): .city-card-head > h3 + .city-risk-badge, then .city-card-count + .city-card-preview */
body.editorial-v2 .city-card {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    background: var(--warm-cream);
    border: 1px solid var(--sand);
    border-radius: var(--radius-md);
    padding: 1.25rem 1.25rem 1.1rem;
    text-decoration: none;
    color: var(--text);
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
body.editorial-v2 .city-card:hover {
    border-color: var(--terracotta);
    box-shadow: 0 6px 22px rgba(60, 40, 25, 0.09);
    transform: translateY(-2px);
}

/* Index variant */
body.editorial-v2 .city-card .flag {
    font-size: 1.5rem;
    line-height: 1;
    margin-bottom: 0.15rem;
    filter: saturate(0.92);
}
body.editorial-v2 .city-card .city-name {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--indigo);
    line-height: 1.15;
    letter-spacing: -0.005em;
}
body.editorial-v2 .city-card .city-country {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 0.85rem;
    color: var(--earth);
    line-height: 1.3;
    margin-bottom: 0.15rem;
}
body.editorial-v2 .city-card .scam-count {
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--terracotta);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-variant-numeric: tabular-nums;
}
body.editorial-v2 .city-card .city-tagline {
    font-size: 0.87rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-top: 0.25rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
body.editorial-v2 .city-card .card-date {
    font-family: var(--font-sans) !important;
    font-size: 0.72rem !important;
    color: var(--earth) !important;
    margin-top: 0.6rem !important;
    font-style: italic;
}
body.editorial-v2 .city-card .arrow {
    font-family: var(--font-sans);
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--terracotta);
    margin-top: 0.4rem;
    opacity: 0.85;
    transition: opacity 0.2s, transform 0.2s;
}
body.editorial-v2 .city-card:hover .arrow {
    opacity: 1;
    transform: translateX(2px);
}

/* Country-hub variant */
body.editorial-v2 .city-card .city-card-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.6rem;
    margin-bottom: 0.3rem;
}
body.editorial-v2 .city-card .city-card-head h3 {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--indigo);
    line-height: 1.15;
    letter-spacing: -0.005em;
    margin: 0;
}
body.editorial-v2 .city-card .city-risk-badge {
    background: var(--ed-high-bg);
    color: var(--ed-high-text);
    border-radius: var(--radius-pill);
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.22rem 0.55rem;
    letter-spacing: 0.04em;
    white-space: nowrap;
    flex-shrink: 0;
}
body.editorial-v2 .city-card .city-card-count {
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--terracotta);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-variant-numeric: tabular-nums;
}
body.editorial-v2 .city-card .city-card-preview {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.45;
    margin-top: 0.2rem;
}

/* Coming-soon state (index) — matches /books/ .coming-card */
body.editorial-v2 .city-card-soon {
    background: var(--warm-cream-soft);
    border: 1.5px dashed var(--sand);
    filter: saturate(0.88);
    opacity: 0.85;
}
body.editorial-v2 .city-card-soon:hover {
    border-style: solid;
    border-color: var(--earth-light);
    filter: saturate(1);
    opacity: 1;
    transform: translateY(-2px);
}

/* Emergency box (country hub) — takeaways pattern */
body.editorial-v2 .emergency-box {
    background: var(--warm-cream);
    border: 1px solid var(--sand);
    border-left: 4px solid var(--terracotta);
    border-radius: var(--radius-md);
    padding: 1.4rem 1.6rem;
    margin-bottom: 2rem;
}
body.editorial-v2 .emergency-title {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--indigo);
    margin-bottom: 0.9rem;
    letter-spacing: -0.005em;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
body.editorial-v2 .emergency-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 2rem;
}
body.editorial-v2 .emergency-item {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}
body.editorial-v2 .emergency-label {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--earth);
    letter-spacing: 0.16em;
    text-transform: uppercase;
}
body.editorial-v2 .emergency-value {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--indigo);
    font-variant-numeric: tabular-nums;
}
body.editorial-v2 .emergency-link {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--terracotta);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s;
}
body.editorial-v2 .emergency-link:hover {
    border-bottom-color: var(--terracotta);
}

/* Types section (country hub) */
body.editorial-v2 .types-section {
    margin-bottom: 2rem;
}
body.editorial-v2 .types-section .section-eyebrow {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--terracotta);
    letter-spacing: 0.22em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    position: relative;
    padding-top: 1.25rem;
}
body.editorial-v2 .types-section .section-eyebrow::before,
body.editorial-v2 section > .section-eyebrow::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 40px; height: 2px;
    background: var(--terracotta);
}
body.editorial-v2 section > .section-eyebrow {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--terracotta);
    letter-spacing: 0.22em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    position: relative;
    padding-top: 1.25rem;
}
body.editorial-v2 .scam-type-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}
body.editorial-v2 .scam-type-pill {
    background: var(--white);
    border: 1px solid var(--sand);
    border-radius: var(--radius-pill);
    padding: 0.4rem 0.95rem;
    font-family: var(--font-sans);
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--indigo);
    display: inline-flex;
    align-items: baseline;
    gap: 0.4rem;
    font-variant-numeric: tabular-nums;
}
body.editorial-v2 .scam-type-count {
    font-family: var(--font-serif);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--terracotta);
}

/* Container + section spacing on country hubs */
body.editorial-v2 main.container {
    max-width: 1080px;
    margin: 0 auto;
    padding: 2.5rem 1.5rem 3rem;
}

/* Report CTA (Been scammed? Help other travelers) — editorial replacement
   for the old amber warning banner */
body.editorial-v2 .report-cta {
    max-width: 780px;
    margin: 2.5rem auto;
    padding: 2rem 2.25rem;
    text-align: center;
    background: var(--warm-cream);
    border: 1px solid var(--sand);
    border-left: 4px solid var(--terracotta);
    border-radius: var(--radius-md);
}
body.editorial-v2 .report-cta h3 {
    font-family: var(--font-serif);
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    font-weight: 500;
    color: var(--indigo);
    letter-spacing: -0.005em;
    margin-bottom: 0.55rem;
    line-height: 1.25;
}
body.editorial-v2 .report-cta h3 em {
    font-style: italic;
    color: var(--terracotta);
    font-weight: 500;
}
body.editorial-v2 .report-cta p {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.55;
    margin-bottom: 1.1rem;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}
/* Editorial primary CTA button — shared by .report-cta-btn,
   .inline-cta-btn (about page), and .ready-primary (about page).
   Per-button padding + font-size overrides follow where they're defined. */
body.editorial-v2 .report-cta-btn,
body.editorial-v2 .inline-cta-btn,
body.editorial-v2 .ready-primary {
    display: inline-block;
    background: var(--terracotta);
    color: var(--white);
    border-radius: var(--radius-md);
    font-family: var(--font-sans);
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
}
body.editorial-v2 .report-cta-btn:hover,
body.editorial-v2 .inline-cta-btn:hover,
body.editorial-v2 .ready-primary:hover {
    background: var(--terracotta-deep);
    transform: translateY(-1px);
}
body.editorial-v2 .report-cta-btn { padding: 0.7rem 1.5rem; font-size: 0.92rem; }

/* CTA strip on /scams/ index */
body.editorial-v2 .cta-strip {
    background: var(--warm-cream);
    border: 1px solid var(--sand);
    border-radius: var(--radius-lg);
    padding: 2.25rem 2rem;
    text-align: center;
    max-width: 780px;
    margin: 3rem auto;
}
body.editorial-v2 .cta-strip h2 {
    font-family: var(--font-serif);
    font-size: clamp(1.4rem, 2.4vw, 1.75rem);
    font-weight: 500;
    color: var(--indigo);
    letter-spacing: -0.01em;
    margin-bottom: 0.6rem;
}
body.editorial-v2 .cta-strip p {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.02rem;
    color: var(--text-muted);
    margin-bottom: 1.2rem;
    line-height: 1.55;
}

/* Country filter is NOT sticky — was annoying on desktop when scrolling.
   Users hit cmd+f or scroll back up to switch filters, no stick needed. */

/* Mobile tweaks for hubs */
@media (max-width: 768px) {
    body.editorial-v2 .page-hero,
    body.editorial-v2 main > .hero { padding: 2.25rem 1.25rem 2.5rem; }
    body.editorial-v2 main.container { padding: 1.75rem 1rem 2rem; }
    body.editorial-v2 .grid-section { padding: 0 1rem; }
    body.editorial-v2 .city-grid { grid-template-columns: 1fr; gap: 0.85rem; }
    body.editorial-v2 .emergency-grid { gap: 0.75rem 1.5rem; }
    body.editorial-v2 .page-hero-stats .stat-pill,
    body.editorial-v2 .stats-bar .stat { font-size: 0.72rem; padding: 0.4rem 0.85rem; }
}

/* ============================================================
   ABOUT PAGE — editorial-v2 components
   ============================================================ */
body.editorial-v2 .about-main {
    max-width: 760px;
    margin: 0 auto;
    padding: 3rem 1.5rem 2rem;
}

body.editorial-v2 .about-section {
    margin-bottom: 4rem;
}
body.editorial-v2 .about-section:last-child { margin-bottom: 2rem; }

/* .about-section eyebrow + bar are covered by the generic
   `section > .section-eyebrow` rules higher in this file. */

body.editorial-v2 .about-section h2 {
    font-family: var(--font-serif);
    font-size: clamp(1.75rem, 3.2vw, 2.25rem);
    line-height: 1.12;
    font-weight: 500;
    color: var(--indigo);
    letter-spacing: -0.015em;
    margin-bottom: 1.25rem;
}
body.editorial-v2 .about-section h2 em {
    font-style: italic;
    color: var(--terracotta);
    font-weight: 500;
}

body.editorial-v2 .about-section p {
    font-family: var(--font-sans);
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--text);
    margin-bottom: 1rem;
    max-width: 68ch;
}
body.editorial-v2 .about-section p em {
    font-style: italic;
    color: var(--terracotta);
    font-weight: 500;
}

/* Pull-quote — editorial magazine anchor */
body.editorial-v2 .pull-quote {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
    font-size: clamp(1.5rem, 3.2vw, 2.1rem);
    line-height: 1.2;
    color: var(--indigo);
    letter-spacing: -0.01em;
    margin: 2rem 0 2rem;
    padding: 0.25rem 0 0.25rem 1.5rem;
    border-left: 3px solid var(--terracotta);
    max-width: 600px;
}
body.editorial-v2 .pull-quote em {
    color: var(--terracotta);
    font-style: italic;
}

body.editorial-v2 .method-grid {
    list-style: none;
    padding: 0;
    margin: 1.25rem 0 2rem;
    counter-reset: method;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.1rem;
}
body.editorial-v2 .method-step {
    counter-increment: method;
    background: var(--warm-cream);
    border: 1px solid var(--sand);
    border-left: 4px solid var(--terracotta);
    border-radius: var(--radius-md);
    padding: 1.35rem 1.6rem 1.4rem;
}
body.editorial-v2 .method-step .step-num {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--terracotta);
    letter-spacing: 0.22em;
    text-transform: uppercase;
    margin-bottom: 0.35rem;
    font-variant-numeric: tabular-nums;
}
body.editorial-v2 .method-step h3 {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--indigo);
    line-height: 1.2;
    letter-spacing: -0.005em;
    margin-bottom: 0.4rem;
}
body.editorial-v2 .method-step p {
    font-size: 0.96rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 0;
    max-width: none;
}

body.editorial-v2 .inline-cta {
    text-align: center;
    margin: 2rem 0 1rem;
}
body.editorial-v2 .inline-cta-btn {
    display: inline-block;
    background: var(--terracotta);
    color: var(--white);
    padding: 0.85rem 1.75rem;
    border-radius: var(--radius-md);
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 0.98rem;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
}
body.editorial-v2 .inline-cta-btn:hover {
    background: var(--terracotta-deep);
    transform: translateY(-1px);
}

body.editorial-v2 .team-card {
    display: flex;
    gap: 1.25rem;
    background: var(--warm-cream-soft);
    border: 1px solid var(--sand);
    border-radius: var(--radius-md);
    padding: 1.75rem 1.75rem 1.6rem;
    margin-bottom: 1rem;
    align-items: flex-start;
}
body.editorial-v2 .team-avatar {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--terracotta);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1;
    letter-spacing: -0.02em;
}
body.editorial-v2 .team-body { flex: 1; min-width: 0; }
body.editorial-v2 .team-role {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--terracotta);
    letter-spacing: 0.22em;
    text-transform: uppercase;
    margin-bottom: 0.25rem;
}
body.editorial-v2 .team-name {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--indigo);
    line-height: 1.15;
    letter-spacing: -0.01em;
    margin-bottom: 0.6rem;
}
body.editorial-v2 .team-note-label {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 0.88rem;
    color: var(--earth);
    margin-bottom: 0.6rem;
    max-width: none;
}
body.editorial-v2 .team-body p {
    font-size: 0.98rem;
    line-height: 1.7;
    color: var(--text);
    max-width: none;
}

/* Centered-eyebrow sections: center the 40px terracotta bar under
   the eyebrow label, since the section itself is text-align:center. */
body.editorial-v2 .etymology-section,
body.editorial-v2 .contact-section,
body.editorial-v2 .ready-section { text-align: center; }
body.editorial-v2 :is(.etymology-section, .contact-section, .ready-section) > .section-eyebrow::before {
    left: 50%;
    transform: translateX(-50%);
}

body.editorial-v2 .etymology-block {
    background: var(--warm-cream);
    border: 1px solid var(--sand);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem 2.25rem;
    max-width: 620px;
    margin: 0.5rem auto 0;
}
body.editorial-v2 .etymology-characters {
    font-family: var(--font-serif);
    font-weight: 500;
    font-size: clamp(4rem, 10vw, 6rem);
    line-height: 1;
    color: var(--indigo);
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}
body.editorial-v2 .etymology-reading {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    color: var(--text);
    line-height: 1.5;
    margin-bottom: 0.5rem;
    max-width: none;
}
body.editorial-v2 .etymology-reading em {
    font-style: italic;
    color: var(--terracotta);
    font-weight: 500;
}
body.editorial-v2 .etymology-meaning {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.55;
    margin-bottom: 1.5rem;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}
body.editorial-v2 .etymology-owl {
    width: 100%;
    max-width: 320px;
    aspect-ratio: 1 / 1;
    border-radius: var(--radius-md);
    margin: 0.25rem auto 1rem;
    display: block;
    box-shadow: 0 4px 18px rgba(45, 58, 92, 0.1);
}
body.editorial-v2 .etymology-caption {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 0.92rem;
    color: var(--earth);
    line-height: 1.55;
    margin: 0 auto;
    max-width: 440px;
}
body.editorial-v2 .etymology-caption em {
    color: var(--terracotta);
    font-style: italic;
    font-weight: 500;
}

body.editorial-v2 .beliefs-grid {
    display: grid;
    gap: 0.85rem;
    margin: 1.25rem 0 1.5rem;
}
body.editorial-v2 .belief-item {
    display: flex;
    gap: 0.9rem;
    align-items: flex-start;
    background: var(--warm-cream);
    border: 1px solid var(--sand);
    border-left: 4px solid var(--sage);
    border-radius: var(--radius-md);
    padding: 1.1rem 1.4rem;
}
body.editorial-v2 .belief-item.belief-dont {
    border-left-color: var(--ed-high-text);
    background: var(--warm-cream-soft);
}
body.editorial-v2 .belief-icon {
    flex-shrink: 0;
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--sage);
    line-height: 1.35;
    min-width: 1.2em;
    text-align: center;
}
body.editorial-v2 .belief-item.belief-dont .belief-icon {
    color: var(--ed-high-text);
}
body.editorial-v2 .belief-item strong {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--indigo);
    line-height: 1.3;
    letter-spacing: -0.005em;
    display: block;
    margin-bottom: 0.25rem;
}
body.editorial-v2 .belief-item p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.55;
    margin: 0;
    max-width: none;
}
body.editorial-v2 .dont-heading {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: var(--indigo);
    line-height: 1.4;
    margin: 1.75rem 0 1rem;
    letter-spacing: -0.005em;
}
body.editorial-v2 .dont-heading em {
    font-style: italic;
    color: var(--terracotta);
    font-weight: 500;
}

body.editorial-v2 .browse-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}
body.editorial-v2 .browse-card {
    background: var(--warm-cream);
    border: 1px solid var(--sand);
    border-radius: var(--radius-md);
    padding: 1.5rem 1.5rem 1.35rem;
    text-decoration: none;
    color: var(--text);
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}
/* .browse-card:hover is grouped with .scam-card:hover higher in this file */
body.editorial-v2 .browse-eyebrow {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--terracotta);
    letter-spacing: 0.22em;
    text-transform: uppercase;
}
body.editorial-v2 .browse-title {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--indigo);
    line-height: 1.2;
    letter-spacing: -0.005em;
    margin: 0.1rem 0 0.15rem;
}
body.editorial-v2 .browse-title em {
    font-style: italic;
    color: var(--terracotta);
    font-weight: 500;
}
body.editorial-v2 .browse-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.55;
    margin: 0;
    max-width: none;
}
body.editorial-v2 .browse-arrow {
    font-family: var(--font-sans);
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--terracotta);
    margin-top: 0.4rem;
    transition: transform 0.2s;
}
body.editorial-v2 .browse-card:hover .browse-arrow {
    transform: translateX(3px);
}

body.editorial-v2 .contact-block {
    background: var(--warm-cream);
    border: 1px solid var(--sand);
    border-left: 4px solid var(--terracotta);
    border-radius: var(--radius-md);
    padding: 1.75rem 2rem;
    max-width: 560px;
    margin: 0.5rem auto 0;
    text-align: center;
}
body.editorial-v2 .contact-lede {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 0.9rem;
    max-width: none;
}
body.editorial-v2 .contact-email {
    display: inline-block;
    font-family: var(--font-serif);
    font-size: clamp(1.35rem, 2.6vw, 1.65rem);
    font-weight: 500;
    color: var(--terracotta);
    text-decoration: none;
    letter-spacing: -0.005em;
    line-height: 1.2;
    margin-bottom: 0.75rem;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s;
}
body.editorial-v2 .contact-email:hover {
    border-bottom-color: var(--terracotta);
}
body.editorial-v2 .contact-note {
    font-family: var(--font-serif);
    font-size: 0.92rem;
    color: var(--earth);
    line-height: 1.5;
    margin: 0;
    max-width: none;
}
body.editorial-v2 .contact-note em {
    font-style: italic;
    color: var(--terracotta);
    font-weight: 500;
}

body.editorial-v2 .ready-section h2 {
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
}
body.editorial-v2 .ready-actions {
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem 1.25rem;
    align-items: center;
    margin-top: 0.5rem;
}
body.editorial-v2 .ready-primary {
    display: inline-block;
    background: var(--terracotta);
    color: var(--white);
    padding: 0.9rem 1.75rem;
    border-radius: var(--radius-md);
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
}
body.editorial-v2 .ready-primary:hover {
    background: var(--terracotta-deep);
    transform: translateY(-1px);
}
body.editorial-v2 .ready-secondary {
    display: inline-block;
    color: var(--indigo);
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: 0.95rem;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;
}
body.editorial-v2 .ready-secondary:hover { color: var(--terracotta); }

/* About mobile */
@media (max-width: 768px) {
    body.editorial-v2 .about-main { padding: 2rem 1.1rem 1.5rem; }
    body.editorial-v2 .about-section { margin-bottom: 3rem; }
    body.editorial-v2 .team-card { padding: 1.35rem 1.25rem 1.25rem; gap: 1rem; }
    body.editorial-v2 .team-avatar { width: 44px; height: 44px; font-size: 1.25rem; }
    body.editorial-v2 .etymology-block { padding: 2rem 1.25rem 1.75rem; }
    body.editorial-v2 .etymology-characters { font-size: clamp(3.5rem, 14vw, 5rem); }
    body.editorial-v2 .pull-quote { margin-left: 0; padding-left: 1rem; }
    body.editorial-v2 .browse-grid { grid-template-columns: 1fr; }
    body.editorial-v2 .contact-block { padding: 1.4rem 1.25rem; }
}

/* ============================================================
   ABOUT PAGE — recovered + P2/P3 polish (PR #1173)

   Recovered from PR #1172 (CSS edits dropped in a detached-HEAD
   incident; HTML on main references these classes but CSS was missing):
     - .team-avatar bumped to 140px / 96px mobile
     - .browse-card-anchor full-width hero variant for the books card

   New for P2/P3:
     - .disclosure-block (replaces inline .team-tools-block styles)
     - .about-hero-masthead — left-aligned colophon hero variant
     - serif body type for long-form .about-section paragraphs
     - .about-toc — chip-row in-page nav
     - .contact-rows — intent-labeled mailto grid
     - .team-links — proper tap-target chips (WCAG 44px)
   ============================================================ */

/* Team-avatar — 52px circle -> 140px square w/ border + shadow.
   Photo fills via inline style on the <img> child. */
body.editorial-v2 .team-avatar {
    flex-shrink: 0;
    width: 140px;
    height: 140px;
    border-radius: 6px;
    background: var(--warm-cream);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 600;
    line-height: 1;
    letter-spacing: -0.02em;
    overflow: hidden;
    border: 1px solid var(--sand);
    box-shadow: 0 2px 8px rgba(45, 58, 92, 0.08);
}

/* Browse-grid — books-anchor variant. Full-width hero spanning grid. */
body.editorial-v2 .browse-grid {
    grid-template-columns: repeat(3, 1fr);
}
body.editorial-v2 .browse-card-anchor {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, var(--warm-cream-soft) 0%, var(--warm-cream) 100%);
    border: 2px solid var(--terracotta);
    padding: 1.75rem 1.85rem 1.65rem;
    box-shadow: 0 4px 16px rgba(156, 82, 50, 0.12);
}
body.editorial-v2 .browse-card-anchor .browse-title { font-size: 1.5rem; }
body.editorial-v2 .browse-card-anchor .browse-meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
    margin: 0.4rem 0 0.2rem;
    font-family: var(--font-sans);
    font-size: 0.82rem;
    color: var(--text-muted);
}
body.editorial-v2 .browse-card-anchor .browse-meta-row strong {
    color: var(--text);
    font-weight: 600;
}

/* (#14) .disclosure-block — replaces inline .team-tools-block styles. */
body.editorial-v2 .disclosure-block {
    margin-top: 2rem;
    padding: 1.25rem 1.5rem;
    background: var(--warm-cream);
    border-left: 3px solid var(--terracotta);
    border-radius: 0 8px 8px 0;
    font-size: 0.95rem;
    line-height: 1.7;
}
body.editorial-v2 .disclosure-block p { margin: 0 0 0.5rem; max-width: none; }
body.editorial-v2 .disclosure-block p:last-child { margin: 0; }

/* (#15) Masthead-lockup hero — left-aligned colophon variant. */
body.editorial-v2.about-hero-masthead .page-hero {
    padding: 3rem 2rem 0;
}
body.editorial-v2.about-hero-masthead .page-hero-inner { max-width: 920px; }
body.editorial-v2.about-hero-masthead .page-hero-eyebrow {
    margin-bottom: 1.4rem;
}
body.editorial-v2.about-hero-masthead .page-hero h1 {
    font-size: clamp(2.4rem, 5.5vw, 3.6rem);
    margin-bottom: 1rem;
}
body.editorial-v2.about-hero-masthead .page-hero p {
    margin: 0 auto 2rem;
}
body.editorial-v2.about-hero-masthead .page-hero-stats {
    margin: 0 -2rem;
    padding: 0.85rem 2rem;
    border-top: 1px solid var(--sand);
    border-bottom: 1px solid var(--sand);
    background: var(--warm-cream-soft);
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
    font-feature-settings: "tnum" 1;
}
body.editorial-v2.about-hero-masthead .page-hero-stats .stat-pill {
    background: transparent;
    border: 0;
    border-radius: 0;
    padding: 0 1.25rem 0 0;
    margin-right: 1.25rem;
    color: var(--text-muted);
    font-family: var(--font-sans);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-right: 1px solid var(--sand);
}
body.editorial-v2.about-hero-masthead .page-hero-stats .stat-pill:last-child {
    border-right: 0;
    padding-right: 0;
    margin-right: 0;
}
body.editorial-v2.about-hero-masthead .page-hero-stats .stat-pill strong {
    color: var(--indigo);
    font-weight: 700;
    font-size: 1rem;
    margin-right: 0.4rem;
    letter-spacing: -0.01em;
}

/* (#16) Long-form serif body for .about-section paragraphs. */
body.editorial-v2 .about-section p {
    font-family: var(--font-serif);
    font-size: 1.08rem;
    line-height: 1.78;
}
body.editorial-v2 .about-section .team-body p,
body.editorial-v2 .disclosure-block p {
    font-size: 1rem;
}

/* (#17) In-page TOC — chip-row scrollable on mobile. */
body.editorial-v2 .about-toc {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    align-items: center;
    margin: 0 0 2.5rem;
    padding: 0.75rem 0;
    border-top: 1px solid var(--sand);
    border-bottom: 1px solid var(--sand);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
body.editorial-v2 .about-toc::-webkit-scrollbar { display: none; }
body.editorial-v2 .about-toc-label {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 0 0.75rem 0 0;
    flex-shrink: 0;
}
body.editorial-v2 .about-toc a {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 0.4rem 0.95rem;
    border: 1px solid var(--sand);
    border-radius: 999px;
    background: var(--white);
    color: var(--text-muted);
    font-family: var(--font-sans);
    font-size: 0.82rem;
    font-weight: 500;
    text-decoration: none;
    white-space: nowrap;
    transition: border-color 0.2s, color 0.2s, background 0.2s;
}
body.editorial-v2 .about-toc a:hover {
    border-color: var(--terracotta);
    color: var(--terracotta);
    background: var(--warm-cream);
}

/* (#18) Contact section — intent-labeled mailto rows. */
body.editorial-v2 .contact-rows {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 0.75rem;
    margin-top: 1.25rem;
    text-align: left;
}
body.editorial-v2 .contact-row {
    display: flex;
    flex-direction: column;
    padding: 0.85rem 1rem;
    background: var(--white);
    border: 1px solid var(--sand);
    border-radius: 8px;
    text-decoration: none;
    transition: border-color 0.2s;
    min-height: 56px;
}
body.editorial-v2 .contact-row:hover { border-color: var(--terracotta); }
body.editorial-v2 .contact-row .contact-row-intent {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--terracotta);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 0.2rem;
}
body.editorial-v2 .contact-row .contact-row-addr {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--indigo);
}

/* (#20) .team-links — proper tap-target chips. */
body.editorial-v2 .team-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 0.75rem 0 0;
    max-width: none;
    line-height: 1;
    font-family: var(--font-sans);
}
body.editorial-v2 .team-links a {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 0.5rem 0.85rem;
    border: 1px solid var(--sand);
    border-radius: 999px;
    background: var(--white);
    color: var(--text-muted);
    font-size: 0.82rem;
    font-weight: 500;
    text-decoration: none;
    transition: border-color 0.2s, color 0.2s;
}
body.editorial-v2 .team-links a:hover {
    border-color: var(--terracotta);
    color: var(--terracotta);
}

/* About-page mobile overrides for recovered + new components. */
@media (max-width: 768px) {
    body.editorial-v2 .team-card {
        flex-direction: column;
        align-items: flex-start;
    }
    body.editorial-v2 .team-avatar { width: 96px; height: 96px; font-size: 2rem; }
    body.editorial-v2 .browse-card-anchor .browse-title { font-size: 1.25rem; }
    body.editorial-v2.about-hero-masthead .page-hero { padding: 2rem 1.1rem 0; }
    body.editorial-v2.about-hero-masthead .page-hero-stats {
        margin: 0 -1.1rem;
        padding: 0.75rem 1.1rem;
    }
    body.editorial-v2.about-hero-masthead .page-hero-stats .stat-pill {
        padding: 0 0.85rem 0 0;
        margin-right: 0.85rem;
        font-size: 0.7rem;
    }
    body.editorial-v2.about-hero-masthead .page-hero-stats .stat-pill strong { font-size: 0.92rem; }
    body.editorial-v2 .about-toc { margin-bottom: 1.75rem; flex-wrap: nowrap; padding: 0.6rem 0; }
    body.editorial-v2 .about-toc-label { padding-right: 0.5rem; }
    body.editorial-v2 .about-toc a { font-size: 0.78rem; padding: 0.35rem 0.8rem; }
    body.editorial-v2 .about-section p { font-size: 1.02rem; line-height: 1.7; }
    body.editorial-v2 .contact-rows { grid-template-columns: 1fr 1fr; gap: 0.5rem; }
}
@media (max-width: 480px) {
    body.editorial-v2 .contact-rows { grid-template-columns: 1fr; }
}

/* ============================================================
   GENERAL-SCAMS PAGE COMPONENTS (editorial-v2 namespace)
   Consolidated from per-page <style> blocks across the
   /scams/everywhere/ corpus. Single source of truth.
   ============================================================ */
body.editorial-v2 .stat-strip { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1rem; margin: 1.5rem 0 2rem; }
body.editorial-v2 .stat-strip .stat-card { background: var(--warm-cream-soft); border-left: 4px solid var(--terracotta); padding: 1rem 1.25rem; border-radius: var(--radius-md); }
body.editorial-v2 .stat-strip .stat-num { font-family: var(--font-serif); font-size: 2rem; font-weight: 700; color: var(--indigo); line-height: 1; }
body.editorial-v2 .stat-strip .stat-label { font-size: 0.85rem; color: var(--text-muted); margin-top: 0.4rem; line-height: 1.4; }
body.editorial-v2 .stat-strip .stat-source { font-size: 0.7rem; color: var(--earth-light); margin-top: 0.3rem; }
body.editorial-v2 .stat-strip .stat-card.estimated { border-left-color: var(--earth-light); }

body.editorial-v2 .assessment-box { background: #FFF8EC; border: 1px solid var(--gold); border-radius: var(--radius-md); padding: 1.25rem 1.5rem; margin: 1.5rem 0 2rem; }
body.editorial-v2 .assessment-box h3 { font-family: var(--font-serif); font-size: 1.1rem; margin-bottom: 0.5rem; color: var(--deep-brown); }
body.editorial-v2 .assessment-box ol { margin: 0.5rem 0 0.75rem 1.25rem; line-height: 1.7; }
body.editorial-v2 .assessment-box .verdict { font-size: 0.9rem; color: var(--text-muted); border-top: 1px dashed var(--earth-light); padding-top: 0.75rem; margin-top: 0.5rem; }
body.editorial-v2 .assessment-skip { display: inline-block; margin-top: 0.4rem; background: var(--terracotta); color: var(--white); padding: 0.4rem 0.85rem; border-radius: var(--radius-pill); font-weight: 600; text-decoration: none; font-size: 0.85rem; }
body.editorial-v2 .assessment-skip:hover { background: var(--terracotta-deep); }

body.editorial-v2 .context-sidebar { background: var(--sand-light); border-radius: var(--radius-md); padding: 1.25rem 1.5rem; margin: 2rem 0; font-size: 0.95rem; }
body.editorial-v2 .context-sidebar h3 { font-family: var(--font-serif); font-size: 1.15rem; margin-bottom: 0.5rem; color: var(--deep-brown); }
body.editorial-v2 .context-sidebar p { margin-bottom: 0.6rem; line-height: 1.6; }
body.editorial-v2 .context-sidebar p:last-child { margin-bottom: 0; }

body.editorial-v2 .legal-disclaimer { font-size: 0.8rem; color: var(--text-muted); border-top: 1px solid var(--sand); padding-top: 1rem; margin-top: 2rem; line-height: 1.5; font-style: italic; }
body.editorial-v2 .transition-line { margin: 1rem 0 1.5rem; font-style: italic; color: var(--text-muted); font-size: 0.95rem; line-height: 1.6; }
body.editorial-v2 .tldr-box { border-left: 4px solid var(--terracotta); background: var(--warm-cream-soft); }
body.editorial-v2 .tldr-box h2 { margin-bottom: 0.5rem; }
body.editorial-v2 .tldr-box p { margin: 0; line-height: 1.7; }
body.editorial-v2 .hook-section p { font-size: 1.05rem; line-height: 1.75; color: var(--text); margin-bottom: 1rem; }
body.editorial-v2 .phase-list, body.editorial-v2 .intl-list, body.editorial-v2 .help-list { line-height: 1.75; margin: 1rem 0 1rem 1.5rem; }
body.editorial-v2 .intl-list li, body.editorial-v2 .help-list li { margin-bottom: 0.5rem; }
body.editorial-v2 .callback-box { background: var(--ed-low-bg); border: 2px dashed var(--sage); border-radius: var(--radius-md); padding: 1.25rem 1.5rem; margin: 1.5rem 0; }
body.editorial-v2 .callback-box h3 { font-family: var(--font-serif); font-size: 1.15rem; margin-bottom: 0.5rem; color: var(--deep-brown); }

/* Hero meta-row replaces the non-informative "X High Risk" severity-pill on
   /scams/everywhere/ pages with two specific demographic + loss-magnitude
   pills. Lives next to (or replaces) .severity-summary in the hero. */
body.editorial-v2 .page-meta-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

/* Reddit-quote pull-out used inside variant cards on /scams/everywhere/.
   Was unstyled prior to 2026-04-29 — quote text rendered flush against the
   bullet list above it with no visual distinction. Modeled on the
   compare-shared.css pattern, sized a bit wider/taller for the longer
   editorial reads. */
body.editorial-v2 .reddit-quote {
    border-left: 3px solid var(--sand);
    background: rgba(245, 240, 232, 0.35);
    border-radius: 0 8px 8px 0;
    padding: 1.25rem 1.5rem;
    margin: 2rem 0 1.5rem;
    font-size: 0.92rem;
    color: var(--text-muted);
    font-style: italic;
    line-height: 1.65;
}
body.editorial-v2 .reddit-quote .source {
    display: block;
    margin-top: 0.6rem;
    font-style: normal;
    font-size: 0.8rem;
    color: var(--earth-light);
}
body.editorial-v2 .reddit-quote .source a {
    color: var(--terracotta);
    text-decoration: none;
}
body.editorial-v2 .reddit-quote .source a:hover { text-decoration: underline; }
body.editorial-v2 .page-meta-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--warm-cream-soft);
    border: 1px solid var(--sand);
    border-radius: var(--radius-pill);
    padding: 0.4rem 0.85rem;
    font-size: 0.85rem;
    color: var(--text);
    font-weight: 500;
}
body.editorial-v2 .page-meta-pill strong { font-weight: 700; color: var(--indigo); }

/* Sibling navigation between general-scams guides — addresses the dead-end
   problem (every page is a terminal node otherwise). Sits at the bottom of
   the article body, above the legal disclaimer. */
body.editorial-v2 .series-nav {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 1rem;
    margin: 2.5rem 0 1.5rem;
    padding: 1rem 0;
    border-top: 1px solid var(--sand);
    border-bottom: 1px solid var(--sand);
}
body.editorial-v2 .series-nav a {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-md);
    background: var(--warm-cream-soft);
    color: var(--text);
    text-decoration: none;
    transition: background 0.15s, transform 0.15s;
    min-width: 0;
}
body.editorial-v2 .series-nav a:hover {
    background: var(--sand-light);
    transform: translateY(-1px);
}
body.editorial-v2 .series-nav .series-nav-direction {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
body.editorial-v2 .series-nav .series-nav-title {
    font-family: var(--font-serif);
    font-size: 1rem;
    color: var(--indigo);
    font-weight: 600;
    line-height: 1.3;
}
body.editorial-v2 .series-nav .series-nav-prev { text-align: left; }
body.editorial-v2 .series-nav .series-nav-next { text-align: right; align-items: flex-end; }
body.editorial-v2 .series-nav .series-nav-spacer { background: transparent; cursor: default; pointer-events: none; }
body.editorial-v2 .series-nav .series-nav-spacer:hover { background: transparent; transform: none; }
@media (max-width: 640px) {
    body.editorial-v2 .series-nav { flex-direction: column; }
    body.editorial-v2 .series-nav .series-nav-next { align-items: flex-start; text-align: left; }
}

/* Remove the misleading hover-shadow on .scam-card under editorial-v2 — these
   cards are not links (they expand inline). Hover affordance suggested they
   were clickable, which they are not. */
body.editorial-v2 .scam-card:hover { box-shadow: var(--shadow-soft, 0 2px 8px rgba(45,58,92,0.04)); }

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
    body.editorial-v2 *,
    body.editorial-v2 *::before,
    body.editorial-v2 *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}
