/* ═══════════════════════════════════════════════════════════
   THE CORRIDOR AFRICA — Shared Stylesheet
   thecorridorafrica.com
   Version 2.0 — Updated May 2026
   ═══════════════════════════════════════════════════════════ */

/* ── SKIP TO CONTENT ──────────────────────────────────────── */
.skip-link { position: absolute; top: -100px; left: 16px; background: #C0392B; color: white; font-family: 'DM Sans', sans-serif; font-size: 13px; font-weight: 700; padding: 10px 20px; z-index: 9999; text-decoration: none; transition: top 0.2s; }
.skip-link:focus { top: 16px; }

/* ── RESET & ROOT ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red: #C0392B;
  --red-deep: #7B241C;
  --cream: #F8F3EC;
  --dark: #0D0805;
  --ink: #1E1208;
  --mid: #5C3D28;
  --muted: #9C8068;
  --border: #E2D0BC;
}

html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; background: var(--cream); color: var(--ink); overflow-x: hidden; }

/* ── NAVIGATION ───────────────────────────────────────────── */
nav { position: relative; z-index: 200; }
.nav-topbar { background: #0f0e0c; padding: 10px 48px; display: flex; justify-content: space-between; align-items: center; border-bottom: 3px solid var(--red); }
.nav-brand { font-family: 'Playfair Display', serif; font-size: 24px; font-weight: 900; color: white; letter-spacing: 3px; text-decoration: none; }
.nav-topbar-right { display: flex; align-items: center; gap: 20px; }
.nav-tagline { font-family: 'Source Serif 4', serif; font-size: 12px; color: rgba(255,255,255,0.35); font-style: italic; }
.nav-sub-btn { background: var(--red); color: white; padding: 8px 18px; font-size: 12px; font-weight: 600; text-decoration: none; white-space: nowrap; }
.nav-sub-btn:hover { background: var(--red-deep); }
.nav-lensbar { background: white; border-bottom: 1px solid #d4cdc0; padding: 0 48px; display: flex; align-items: center; overflow: visible; position: relative; z-index: 100; }
.nav-lensbar::-webkit-scrollbar { display: none; }
.nav-lens-wrap { position: relative; display: flex; align-items: stretch; border-right: 1px solid #e8e4dc; }
.nav-lens-wrap:first-child { border-left: 1px solid #e8e4dc; }
.nav-lens { font-size: 11px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: #444; text-decoration: none; padding: 12px 14px; white-space: nowrap; border-bottom: 2px solid transparent; transition: all 0.15s; display: flex; align-items: center; gap: 5px; }
.nav-lens:hover { color: var(--red); background: #faf8f4; }
.nav-lens.active { color: var(--red); border-bottom-color: var(--red); font-weight: 700; }
.nav-lens-chevron { font-size: 7px; color: #ccc; transition: all 0.15s; margin-top: 1px; }
.nav-lens-wrap:hover .nav-lens-chevron { color: var(--red); }
.nav-lens-wrap:hover .nav-lens { color: var(--red); background: #faf8f4; }
.nav-dropdown { display: none; position: absolute; top: 100%; left: 0; background: white; border: 1px solid #d4cdc0; border-top: 3px solid var(--red); min-width: 210px; z-index: 200; box-shadow: 0 4px 16px rgba(0,0,0,0.08); }
.nav-lens-wrap:hover .nav-dropdown { display: block; }
.nav-dropdown-header { font-size: 9px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: #aaa; padding: 10px 16px 6px; border-bottom: 1px solid #f0ece4; }
.nav-dd-item { display: flex; align-items: center; gap: 10px; padding: 9px 16px; text-decoration: none; border-bottom: 1px solid #f8f5f0; transition: background 0.1s; }
.nav-dd-item:last-of-type { border-bottom: none; }
.nav-dd-item:hover { background: #faf8f4; }
.nav-dd-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.nav-dd-dot.live { background: var(--red); }
.nav-dd-dot.soon { background: #d4cdc0; }
.nav-dd-region { font-size: 12px; color: #333; flex: 1; font-weight: 500; }
.nav-dd-region.soon { color: #aaa; font-weight: 400; }
.nav-dd-count { font-size: 10px; font-weight: 700; color: var(--red); }
.nav-dd-count.soon { color: #ccc; font-weight: 400; }
.nav-dd-all { display: flex; align-items: center; padding: 9px 16px; border-top: 1px solid #e8e4dc; text-decoration: none; background: #faf8f4; transition: background 0.1s; }
.nav-dd-all:hover { background: #f5f0e8; }
.nav-dd-all-text { font-size: 10px; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; color: var(--red); }
.nav-spacer { flex: 1; }
.nav-about { font-size: 11px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: #444; text-decoration: none; padding: 12px 16px; border-left: 1px solid #e8e4dc; white-space: nowrap; }
.nav-about:hover { color: var(--red); }
.nav-search { display: flex; align-items: center; border-left: 1px solid #e8e4dc; padding: 0 16px; height: 100%; }
.nav-search-form { display: flex; align-items: center; gap: 6px; }
.nav-search-input { background: none; border: none; outline: none; font-family: 'DM Sans', sans-serif; font-size: 11px; color: #444; width: 130px; }
.nav-search-input::placeholder { color: #aaa; }
.nav-search-btn { background: none; border: none; cursor: pointer; font-size: 13px; color: #aaa; padding: 0; }
.nav-search-btn:hover { color: var(--red); }
.nav-hamburger { display: none; flex-direction: column; justify-content: center; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-hamburger span { display: block; width: 22px; height: 2px; background: white; border-radius: 2px; transition: all 0.3s; }
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-mobile-menu { display: none; flex-direction: column; background: #0f0e0c; border-top: 1px solid rgba(255,255,255,0.06); padding: 8px 0 16px; }
.nav-mobile-menu.open { display: flex; }
.nav-mobile-link { font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.7); text-decoration: none; padding: 13px 24px; border-bottom: 1px solid rgba(255,255,255,0.04); }
.nav-mobile-link:hover { color: white; background: rgba(255,255,255,0.03); }
.nav-mobile-link.soon { color: rgba(255,255,255,0.3); }
.nav-mobile-sub { font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.25); padding: 16px 24px 8px; }
.nav-mobile-dot { display: inline-block; width: 6px; height: 6px; border-radius: 50%; margin-right: 8px; vertical-align: middle; }
.nav-mobile-dot.live { background: var(--red); }
.nav-mobile-dot.soon { background: rgba(255,255,255,0.2); }

/* ── HOMEPAGE HERO ────────────────────────────────────────── */
.hero { min-height: 100vh; background: var(--dark); position: relative; display: flex; align-items: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background: radial-gradient(ellipse 80% 60% at 70% 50%, rgba(192,57,43,0.08) 0%, transparent 70%), radial-gradient(ellipse 40% 40% at 20% 80%, rgba(192,57,43,0.05) 0%, transparent 60%); }
.hero-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px); background-size: 80px 80px; }
.africa-bg { position: absolute; right: -40px; top: 50%; transform: translateY(-50%); width: 520px; height: 580px; opacity: 0.04; }
.hero-accent { position: absolute; left: 0; top: 0; bottom: 0; width: 5px; background: linear-gradient(to bottom, transparent, var(--red) 30%, var(--red) 70%, transparent); }
.hero-inner { position: relative; z-index: 2; max-width: 1100px; margin: 0 auto; padding: 120px 48px 80px; display: grid; grid-template-columns: 1fr 380px; gap: 80px; align-items: center; }
.hero-eyebrow { display: flex; align-items: center; gap: 12px; margin-bottom: 28px; }
.eyebrow-line { width: 40px; height: 2px; background: var(--red); }
.eyebrow-text { font-size: 11px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase; color: var(--red); }
.hero-title { font-family: 'Playfair Display', serif; font-size: clamp(32px, 4vw, 52px); font-weight: 900; line-height: 1.08; color: white; letter-spacing: -0.5px; margin-bottom: 8px; }
.hero-title span { color: var(--red); font-style: italic; }
.hero-subtitle { font-family: 'Source Serif 4', serif; font-size: 19px; font-weight: 300; color: rgba(255,255,255,0.5); line-height: 1.7; margin-bottom: 40px; font-style: italic; }
.hero-actions { display: flex; align-items: center; gap: 16px; }
.btn-primary { background: var(--red); color: white; padding: 14px 32px; border-radius: 3px; font-size: 14px; font-weight: 600; text-decoration: none; transition: all 0.2s; border: none; cursor: pointer; display: inline-flex; align-items: center; gap: 8px; }
.btn-primary:hover { background: var(--red-deep); transform: translateY(-1px); }
.btn-secondary { color: rgba(255,255,255,0.5); font-size: 14px; text-decoration: none; display: flex; align-items: center; gap: 8px; transition: color 0.2s; cursor: pointer; }
.btn-secondary:hover { color: white; }
.hero-meta { display: flex; align-items: center; gap: 24px; margin-top: 48px; padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.08); }
.meta-item { text-align: center; }
.meta-num { font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 700; color: white; }
.meta-label { font-size: 11px; color: rgba(255,255,255,0.3); margin-top: 2px; letter-spacing: 1px; text-transform: uppercase; }
.meta-sep { width: 1px; height: 40px; background: rgba(255,255,255,0.08); }
.hero-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 10px; padding: 28px; backdrop-filter: blur(8px); }
.card-label { font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--red); margin-bottom: 16px; display: flex; align-items: center; gap: 8px; }
.card-label::before { content: ''; width: 20px; height: 2px; background: var(--red); }
.card-issue-title { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 700; color: white; line-height: 1.3; margin-bottom: 12px; }
.card-excerpt { font-family: 'Source Serif 4', serif; font-size: 14px; color: rgba(255,255,255,0.45); line-height: 1.7; margin-bottom: 20px; }
.card-divider { height: 1px; background: rgba(255,255,255,0.07); margin-bottom: 16px; }
.card-author { display: flex; align-items: center; gap: 12px; }
.card-avatar { width: 38px; height: 38px; border-radius: 50%; background: linear-gradient(135deg, var(--red), var(--red-deep)); display: flex; align-items: center; justify-content: center; font-family: 'Playfair Display', serif; font-size: 14px; font-weight: 700; color: white; flex-shrink: 0; }
.card-author-name { font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.8); }
.card-author-role { font-size: 11px; color: rgba(255,255,255,0.3); margin-top: 1px; }
.card-read-btn { margin-top: 20px; width: 100%; background: rgba(192,57,43,0.15); border: 1px solid rgba(192,57,43,0.3); color: var(--red); padding: 11px; border-radius: 4px; font-size: 13px; font-weight: 600; cursor: pointer; font-family: 'DM Sans', sans-serif; transition: all 0.2s; text-align: center; text-decoration: none; display: block; }
.card-read-btn:hover { background: var(--red); color: white; border-color: var(--red); }

/* ── TICKER ───────────────────────────────────────────────── */
.ticker { background: var(--red); padding: 10px 0; overflow: hidden; white-space: nowrap; }
.ticker-track { display: inline-flex; animation: ticker 30s linear infinite; }
.ticker-item { font-size: 12px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.9); padding: 0 32px; }
.ticker-dot { color: rgba(255,255,255,0.4); padding: 0 8px; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── HOMEPAGE SECTIONS ────────────────────────────────────── */
.stats { background: var(--ink); padding: 80px 48px; }
.stats-inner { max-width: 1100px; margin: 0 auto; }
.section-label { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--red); margin-bottom: 12px; }
.section-title { font-family: 'Playfair Display', serif; font-size: 36px; font-weight: 700; color: white; line-height: 1.2; margin-bottom: 48px; max-width: 600px; }
.section-title-dark { font-family: 'Playfair Display', serif; font-size: 36px; font-weight: 700; color: var(--ink); line-height: 1.2; margin-bottom: 48px; max-width: 600px; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; background: rgba(255,255,255,0.06); border-radius: 10px; overflow: hidden; }
.stat-card { background: rgba(255,255,255,0.03); padding: 36px 28px; text-align: center; transition: background 0.3s; }
.stat-card:hover { background: rgba(192,57,43,0.12); }
.stat-number { font-family: 'Playfair Display', serif; font-size: 56px; font-weight: 900; color: var(--red); line-height: 1; margin-bottom: 10px; }
.stat-desc { font-size: 14px; color: rgba(255,255,255,0.7); line-height: 1.5; margin-bottom: 8px; font-weight: 500; }
.stat-source { font-size: 10px; color: rgba(255,255,255,0.25); font-style: italic; }
.quote-section { background: var(--cream); padding: 80px 48px; }
.quote-inner { max-width: 820px; margin: 0 auto; }
.quote-wrap { position: relative; padding: 48px; background: white; border-radius: 12px; border: 1px solid var(--border); box-shadow: 0 8px 40px rgba(0,0,0,0.06); }
.quote-mark { font-family: 'Playfair Display', serif; font-size: 140px; color: var(--red); line-height: 0.7; opacity: 0.15; position: absolute; top: 20px; left: 32px; }
.quote-text { font-family: 'Playfair Display', serif; font-size: 24px; font-style: italic; color: var(--ink); line-height: 1.65; margin-bottom: 36px; padding-top: 32px; position: relative; z-index: 1; }
.quote-author { display: flex; align-items: center; gap: 16px; padding-top: 24px; border-top: 1px solid var(--border); }
.quote-avatar { width: 52px; height: 52px; border-radius: 50%; background: linear-gradient(135deg, var(--red), var(--red-deep)); display: flex; align-items: center; justify-content: center; font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 700; color: white; flex-shrink: 0; }
.quote-name { font-size: 15px; font-weight: 700; color: var(--ink); }
.quote-role { font-size: 12px; color: var(--muted); margin-top: 3px; line-height: 1.4; }
.quote-label { margin-left: auto; font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--red); background: rgba(192,57,43,0.08); padding: 6px 12px; border-radius: 20px; white-space: nowrap; }
.who-reads { background: var(--ink); padding: 80px 48px; }
.who-reads-inner { max-width: 1100px; margin: 0 auto; }
.readers-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.reader-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07); border-radius: 10px; padding: 32px 24px; text-align: center; transition: all 0.3s; }
.reader-card:hover { background: rgba(192,57,43,0.1); border-color: rgba(192,57,43,0.3); transform: translateY(-4px); }
.reader-icon { font-size: 40px; margin-bottom: 18px; }
.reader-title { font-size: 15px; font-weight: 700; color: white; margin-bottom: 10px; }
.reader-desc { font-size: 13px; color: rgba(255,255,255,0.4); line-height: 1.6; }
.about-strip { background: var(--cream); padding: 80px 48px; }
.about-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-label { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--red); margin-bottom: 20px; display: flex; align-items: center; gap: 10px; }
.about-label::after { content: ''; flex: 0 0 40px; height: 2px; background: var(--red); }
.about-title { font-family: 'Playfair Display', serif; font-size: 34px; font-weight: 700; color: var(--ink); line-height: 1.2; margin-bottom: 20px; }
.about-body { font-family: 'Source Serif 4', serif; font-size: 17px; color: var(--mid); line-height: 1.8; margin-bottom: 20px; }
.credentials { display: flex; flex-direction: column; gap: 12px; }
.credential { display: flex; align-items: flex-start; gap: 12px; padding: 14px 18px; background: white; border-radius: 6px; border-left: 3px solid var(--red); }
.cred-icon { font-size: 20px; flex-shrink: 0; }
.cred-title { font-size: 14px; font-weight: 600; color: var(--ink); }
.cred-sub { font-size: 12px; color: var(--muted); margin-top: 2px; }
.pillars { background: white; padding: 80px 48px; border-top: 1px solid var(--border); }
.pillars-inner { max-width: 1100px; margin: 0 auto; }
.pillars-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.pillar-card { background: var(--cream); border: 1px solid var(--border); border-radius: 8px; padding: 28px; transition: all 0.3s; position: relative; overflow: hidden; }
.pillar-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--red); transform: scaleX(0); transform-origin: left; transition: transform 0.3s; }
.pillar-card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(0,0,0,0.08); }
.pillar-card:hover::before { transform: scaleX(1); }
.pillar-icon { font-size: 28px; margin-bottom: 16px; }
.pillar-title { font-size: 16px; font-weight: 700; color: var(--ink); margin-bottom: 10px; }
.pillar-body { font-family: 'Source Serif 4', serif; font-size: 14px; color: var(--mid); line-height: 1.7; }
.latest { background: var(--cream); padding: 80px 48px; border-top: 1px solid var(--border); }
.latest-inner { max-width: 1100px; margin: 0 auto; }
.latest-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 40px; }
.latest-article { background: white; border-radius: 10px; overflow: hidden; border: 1px solid var(--border); display: grid; grid-template-columns: 1fr 340px; box-shadow: 0 4px 32px rgba(0,0,0,0.06); }
.article-content { padding: 48px; }
.article-kicker { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--red); margin-bottom: 16px; }
.article-title { font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 700; color: var(--ink); line-height: 1.25; margin-bottom: 16px; }
.article-excerpt { font-family: 'Source Serif 4', serif; font-size: 16px; color: var(--mid); line-height: 1.75; margin-bottom: 28px; }
.article-meta { display: flex; align-items: center; gap: 16px; padding-top: 20px; border-top: 1px solid var(--border); }
.article-avatar { width: 36px; height: 36px; border-radius: 50%; background: linear-gradient(135deg, var(--red), var(--red-deep)); display: flex; align-items: center; justify-content: center; font-family: 'Playfair Display', serif; font-size: 13px; font-weight: 700; color: white; flex-shrink: 0; }
.article-author-name { font-size: 13px; font-weight: 600; color: var(--ink); }
.article-author-role { font-size: 11px; color: var(--muted); }
.article-read-btn { margin-left: auto; background: var(--red); color: white; padding: 10px 20px; border-radius: 4px; font-size: 13px; font-weight: 600; text-decoration: none; transition: background 0.2s; }
.article-read-btn:hover { background: var(--red-deep); }
.subscribe { background: var(--red); padding: 80px 48px; position: relative; overflow: hidden; }
.subscribe::before { content: ''; position: absolute; inset: 0; background: repeating-linear-gradient(-45deg, transparent, transparent 30px, rgba(0,0,0,0.04) 30px, rgba(0,0,0,0.04) 31px); }
.subscribe-inner { max-width: 640px; margin: 0 auto; text-align: center; position: relative; z-index: 1; }
.subscribe-title { font-family: 'Playfair Display', serif; font-size: 40px; font-weight: 900; color: white; line-height: 1.15; margin-bottom: 16px; }
.subscribe-sub { font-family: 'Source Serif 4', serif; font-size: 18px; color: rgba(255,255,255,0.75); line-height: 1.7; margin-bottom: 36px; font-style: italic; }
.subscribe-btn { display: inline-block; background: white; color: var(--red); padding: 14px 40px; border-radius: 4px; font-size: 15px; font-weight: 700; text-decoration: none; margin-bottom: 16px; transition: all 0.2s; }
.subscribe-btn:hover { background: var(--ink); color: white; }
.subscribe-note { font-size: 12px; color: rgba(255,255,255,0.5); margin-top: 16px; }

/* ── B1 STATS STRIP — article pages ──────────────────────── */
.b1-stats { background: var(--dark); border-bottom: 2px solid rgba(255,255,255,0.5); }
.b1-stats-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); }
.b1-card { padding: 28px 24px; border-right: 1px solid rgba(255,255,255,0.06); }
.b1-card:last-child { border-right: none; }
.b1-num { font-family: 'Playfair Display', serif; font-size: 32px; font-weight: 900; color: white; line-height: 1; margin-bottom: 10px; }
.b1-card.red .b1-num { color: #E74C3C; }
.b1-card.gold .b1-num { color: #C9A84C; }
.b1-card.green .b1-num { color: #27AE60; }
.b1-divider { width: 24px; height: 2px; background: var(--red); margin-bottom: 10px; }
.b1-card.red .b1-divider { background: #E74C3C; }
.b1-card.gold .b1-divider { background: #C9A84C; }
.b1-card.green .b1-divider { background: #27AE60; }
.b1-label { font-size: 12px; color: rgba(255,255,255,0.45); line-height: 1.55; margin-bottom: 8px; }
.b1-source { font-size: 10px; color: rgba(255,255,255,0.2); font-style: italic; }

/* ── SHARE BAR ────────────────────────────────────────────── */
.share-bar { background: white; border-bottom: 1px solid var(--border); padding: 12px 48px; display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.share-label { font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: #aaa; margin-right: 4px; white-space: nowrap; }
.share-btn { display: inline-flex; align-items: center; gap: 7px; font-family: 'DM Sans', sans-serif; font-size: 12px; font-weight: 600; padding: 7px 16px; text-decoration: none; border: 1px solid var(--border); background: white; color: #555; transition: all 0.15s; cursor: pointer; white-space: nowrap; }
.share-btn:hover { background: var(--cream); color: #0f0e0c; border-color: #999; }
.share-btn.linkedin { border-color: #0077B5; color: #0077B5; }
.share-btn.linkedin:hover { background: #0077B5; color: white; }
.share-btn.twitter { border-color: #000; color: #000; }
.share-btn.twitter:hover { background: #000; color: white; }
.share-btn.whatsapp { border-color: #25D366; color: #25D366; }
.share-btn.whatsapp:hover { background: #25D366; color: white; }
.share-btn.copy { border-color: var(--red); color: var(--red); }
.share-btn.copy:hover { background: var(--red); color: white; }
.share-btn.print-btn { border-color: #888; color: #888; }
.share-btn.print-btn:hover { background: #555; color: white; border-color: #555; }
.share-copied { font-size: 11px; color: #27AE60; font-weight: 700; display: none; }

/* ── ARTICLE HERO — TEXT ONLY (Issues 001–009) ────────────── */
.article-page-hero {
  background: var(--dark);
  position: relative;
  overflow: hidden;
  padding: 56px 0 48px;
}
.article-hero-bg { position: absolute; inset: 0; background: radial-gradient(ellipse 70% 50% at 60% 40%, rgba(192,57,43,0.07) 0%, transparent 70%); pointer-events: none; }
.article-hero-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px); background-size: 80px 80px; pointer-events: none; }
.article-hero-inner { max-width: 860px; margin: 0 auto; padding: 0 48px; position: relative; z-index: 2; }

/* ── ARTICLE HERO — PHOTO VERSION (Issue 010+) ────────────── */
.article-page-hero.photo-hero { padding: 0; }
.article-page-hero-img { width: 100%; height: 520px; object-fit: cover; object-position: center 40%; display: block; filter: brightness(0.35); }
.article-page-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(15,14,12,0.3) 0%, rgba(15,14,12,0.75) 60%, rgba(15,14,12,0.95) 100%); }
.article-hero-photo-credit { position: absolute; bottom: 8px; right: 16px; font-size: 10px; color: rgba(255,255,255,0.2); }
.article-page-hero.photo-hero .article-hero-inner { position: absolute; bottom: 0; left: 0; right: 0; padding: 0 48px 48px; max-width: 100%; }
.article-page-hero.photo-hero .article-hero-inner > * { max-width: 860px; margin-left: auto; margin-right: auto; }

/* ── HERO CONTENT ─────────────────────────────────────────── */
.article-hero-kicker { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; flex-wrap: wrap; font-size: 11px; color: rgba(255,255,255,0.35); }
.article-hero-title { font-family: 'Playfair Display', serif; font-size: clamp(26px, 4vw, 38px); font-weight: 900; color: white; line-height: 1.15; margin: 0 0 18px; }
.article-hero-title em { color: var(--red); font-style: italic; }
.article-hero-subtitle { font-family: 'Source Serif 4', serif; font-size: 17px; color: rgba(255,255,255,0.5); line-height: 1.8; font-style: italic; font-weight: 300; margin: 0 0 32px; }
.article-hero-meta { display: flex; align-items: center; justify-content: space-between; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.07); flex-wrap: wrap; gap: 16px; }
.article-hero-author { display: flex; align-items: center; gap: 12px; }
.author-avatar { width: 36px; height: 36px; border-radius: 50%; background: linear-gradient(135deg, var(--red), var(--red-deep)); display: flex; align-items: center; justify-content: center; font-family: 'Playfair Display', serif; font-size: 12px; font-weight: 700; color: white; flex-shrink: 0; }
.author-name { font-size: 13px; font-weight: 600; color: white; }
.author-role { font-size: 11px; color: rgba(255,255,255,0.35); margin-top: 2px; }
.article-hero-stats { display: flex; gap: 20px; }
.hero-stat { font-size: 11px; color: rgba(255,255,255,0.3); }
.hero-stat strong { color: rgba(255,255,255,0.65); }

/* ── ARTICLE TWO-COLUMN GRID ──────────────────────────────── */
.article-wrap { max-width: 1100px; margin: 0 auto; padding: 64px 48px; display: grid; grid-template-columns: 1fr 320px; gap: 56px; align-items: start; background: white; }
.article-body { min-width: 0; grid-column: 1; }
.article-lead { font-family: 'Source Serif 4', serif; font-size: 21px; color: var(--ink); line-height: 1.8; margin-bottom: 48px; padding-bottom: 48px; border-bottom: 1px solid var(--border); font-weight: 400; }
.article-body h2 { font-family: 'Playfair Display', serif; font-size: 26px; font-weight: 700; color: var(--ink); line-height: 1.3; margin: 40px 0 16px; }
.article-body p { font-family: 'Source Serif 4', serif; font-size: 18px; color: var(--mid); line-height: 1.9; margin-bottom: 22px; }

/* ── SECTION RULE ─────────────────────────────────────────── */
.section-rule { display: flex; align-items: center; gap: 16px; margin: 48px 0 8px; }
.section-rule-label { font-size: 10px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--red); white-space: nowrap; }
.section-rule::before { content: ''; flex: 0 0 30px; height: 2px; background: var(--red); }
.section-rule::after { content: ''; flex: 1; height: 1px; background: var(--border); }

/* ── PULLQUOTE ────────────────────────────────────────────── */
.pullquote { border-left: 4px solid var(--red); padding: 24px 32px; margin: 36px 0; background: white; border-radius: 0 8px 8px 0; box-shadow: inset 0 0 0 1px var(--border); }
.pullquote p { font-family: 'Playfair Display', serif; font-size: 21px; font-style: italic; color: var(--ink); line-height: 1.6; margin-bottom: 10px; }
.pullquote cite { font-size: 11px; color: var(--muted); font-style: normal; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; }

/* ── DATA CALLOUT ─────────────────────────────────────────── */
.data-callout { background: var(--ink); border-radius: 10px; padding: 32px; margin: 36px 0; }
.data-callout-label { font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--red); margin-bottom: 20px; }
.data-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.data-item { text-align: center; }
.data-num { font-family: 'Playfair Display', serif; font-size: 32px; font-weight: 900; line-height: 1; margin-bottom: 8px; color: var(--red); }
.data-num.gold { color: #C9A84C; }
.data-num.green { color: #27AE60; }
.data-num.red { color: #E74C3C; }
.data-desc { font-size: 12px; color: rgba(255,255,255,0.45); line-height: 1.55; }

/* ── DATA LIST ────────────────────────────────────────────── */
.data-list { background: var(--ink); border-radius: 10px; padding: 32px; margin: 36px 0; }
.data-list-label { font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: #C9A84C; margin-bottom: 20px; }
.data-list ul { list-style: none; padding: 0; }
.data-list ul li { font-family: 'DM Sans', sans-serif; font-size: 14px; color: rgba(255,255,255,0.7); line-height: 1.6; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.06); display: flex; gap: 12px; align-items: baseline; }
.data-list ul li:last-child { border-bottom: none; }
.data-list ul li::before { content: '→'; color: #C9A84C; font-weight: 700; flex-shrink: 0; }

/* ── INSIGHT BLOCK ────────────────────────────────────────── */
.insight-block { background: white; border: 1px solid var(--border); border-top: 3px solid var(--red); border-radius: 0 0 8px 8px; padding: 24px 28px; margin: 24px 0; }
.insight-label { font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--red); margin-bottom: 10px; }
.insight-block p { font-family: 'DM Sans', sans-serif; font-size: 15px; line-height: 1.7; color: var(--ink); margin: 0; }
.insight-block strong { font-weight: 700; color: var(--dark); }

/* ── FRAMEWORK BOX ────────────────────────────────────────── */
.framework-box { background: var(--cream); border: 1px solid var(--border); border-radius: 10px; padding: 36px; margin: 40px 0; border-top: 4px solid var(--red); }
.framework-label { font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--red); margin-bottom: 8px; }
.framework-title { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700; color: var(--ink); margin-bottom: 6px; }
.framework-sub { font-size: 14px; color: var(--muted); font-style: italic; margin-bottom: 28px; }
.framework-pillars { display: flex; flex-direction: column; gap: 20px; }
.pillar { display: flex; gap: 20px; align-items: flex-start; }
.pillar-num { width: 36px; height: 36px; border-radius: 50%; background: var(--red); color: white; font-family: 'Playfair Display', serif; font-size: 16px; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }
.pillar-content { flex: 1; }
.pillar-title { font-size: 14px; font-weight: 700; color: var(--ink); margin-bottom: 6px; }
.pillar-body { font-size: 14px; color: var(--mid); line-height: 1.7; }

/* ── CONCLUSION BOX ───────────────────────────────────────── */
.conclusion-box { background: var(--dark); border-radius: 10px; padding: 40px; margin: 48px 0 0; }
.conclusion-label { font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: #C9A84C; margin-bottom: 20px; }
.conclusion-box p { font-family: 'Source Serif 4', serif; font-size: 17px; color: rgba(255,255,255,0.65); line-height: 1.85; margin-bottom: 16px; }
.conclusion-box p:last-child { font-family: 'Playfair Display', serif; font-size: 19px; font-style: italic; color: white; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px; margin-top: 8px; margin-bottom: 0; }

/* ── SUBSCRIBE STRIP (in-article) ────────────────────────── */
.subscribe-strip { background: rgba(192,57,43,0.07); border: 1px solid rgba(192,57,43,0.15); border-radius: 8px; padding: 28px; margin: 40px 0; }
.subscribe-strip-inner { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.subscribe-strip-eyebrow { font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--red); margin-bottom: 6px; }
.subscribe-strip-title { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 700; color: var(--ink); margin-bottom: 4px; }
.subscribe-strip-sub { font-size: 14px; color: var(--muted); line-height: 1.5; }
.subscribe-strip-btn { background: var(--red); color: white; padding: 12px 24px; border-radius: 4px; font-size: 13px; font-weight: 600; text-decoration: none; white-space: nowrap; margin-left: auto; }
.subscribe-strip-btn:hover { background: var(--red-deep); }
.subscribe-strip-note { font-size: 11px; color: var(--muted); text-align: right; margin-top: 8px; width: 100%; }

/* ── SIDEBAR CARDS ────────────────────────────────────────── */
.article-sidebar { display: flex; flex-direction: column; gap: 20px; grid-column: 2; align-self: start; }
.sidebar-card { background: white; border: 1px solid var(--border); border-radius: 10px; padding: 22px 24px; }
.sidebar-card.sidebar-dark { background: var(--ink); border-color: rgba(255,255,255,0.06); }
.sidebar-label { font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--red); margin-bottom: 16px; }
.sidebar-dark-row { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
.sidebar-dark-row:last-child { border-bottom: none; }
.sidebar-dark-label { font-size: 12px; color: rgba(255,255,255,0.4); }
.sidebar-dark-val { font-size: 12px; font-weight: 700; color: white; }
.sidebar-dark-val.red { color: #E74C3C; }
.sidebar-dark-val.gold { color: #C9A84C; }
.sidebar-dark-val.green { color: #27AE60; }
.sidebar-stat-row { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; border-bottom: 1px solid var(--border); }
.sidebar-stat-row:last-child { border-bottom: none; }
.sidebar-stat-label { font-size: 12px; color: var(--muted); }
.sidebar-stat-val { font-size: 12px; font-weight: 700; color: var(--ink); }
.sidebar-stat-val.red { color: #E74C3C; }
.sidebar-stat-val.gold { color: #C9A84C; }
.sidebar-stat-val.green { color: #27AE60; }
.sidebar-checklist { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.sidebar-checklist li { font-size: 12px; color: rgba(255,255,255,0.5); line-height: 1.5; padding-left: 16px; position: relative; }
.sidebar-checklist li::before { content: '→'; position: absolute; left: 0; color: var(--red); font-weight: 700; }
.sidebar-checklist.light li { color: var(--muted); }

/* ── NEXT ISSUE TEASER ────────────────────────────────────── */
.next-issue-teaser { background: var(--dark); padding: 48px; border-top: 1px solid rgba(255,255,255,0.06); }
.next-issue-inner { max-width: 1100px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.next-label { font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 8px; }
.next-title { font-family: 'Playfair Display', serif; font-size: 20px; color: white; font-weight: 700; max-width: 680px; line-height: 1.4; }
.next-btn { background: var(--red); color: white; padding: 12px 28px; font-size: 13px; font-weight: 700; text-decoration: none; white-space: nowrap; flex-shrink: 0; display: inline-block; }
.next-btn:hover { background: var(--red-deep); }

/* ── FOOTER — CLEAN SINGLE BAR ────────────────────────────── */
.bs-footer { background: #0f0e0c; padding: 40px 48px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px; border-top: 1px solid rgba(255,255,255,0.06); }
.bs-footer-brand { font-family: 'Playfair Display', serif; font-size: 16px; font-weight: 900; color: white; letter-spacing: 2px; margin-bottom: 6px; }
.bs-footer-tagline { font-size: 12px; color: rgba(255,255,255,0.3); line-height: 1.5; }
.bs-footer-links { display: flex; gap: 20px; flex-wrap: wrap; margin-top: 10px; }
.bs-footer-links a { font-size: 11px; color: rgba(255,255,255,0.25); text-decoration: none; }
.bs-footer-links a:hover { color: rgba(255,255,255,0.7); }
.bs-footer-copy { font-size: 11px; color: rgba(255,255,255,0.2); }

/* ── LENS PAGES ───────────────────────────────────────────── */
.lp-breadcrumb { background: #f5f0e8; padding: 8px 48px; border-bottom: 1px solid #d4cdc0; font-size: 12px; color: #999; }
.lp-breadcrumb a { color: var(--red); text-decoration: none; }
.lp-breadcrumb a:hover { text-decoration: underline; }
.lp-header { background: white; padding: 40px 48px 32px; border-bottom: 3px solid #0f0e0c; display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; }
.lp-header-left { flex: 1; }
.lp-icon { font-size: 36px; margin-bottom: 10px; display: block; }
.lp-title { font-family: 'Playfair Display', serif; font-size: clamp(28px, 4vw, 44px); font-weight: 900; color: #0f0e0c; margin-bottom: 10px; line-height: 1.1; }
.lp-desc { font-family: 'Source Serif 4', serif; font-size: 15px; color: #666; line-height: 1.7; max-width: 560px; font-style: italic; }
.lp-header-right { text-align: right; flex-shrink: 0; }
.lp-count-num { font-family: 'Playfair Display', serif; font-size: 40px; font-weight: 900; color: #0f0e0c; display: block; line-height: 1; }
.lp-count-label { font-size: 11px; color: #aaa; margin-top: 4px; letter-spacing: 0.5px; }
.lp-body { display: grid; grid-template-columns: 1fr 260px; background: #f5f0e8; border-bottom: 1px solid #d4cdc0; }
.lp-main { background: white; }
.lp-article { border-left: 4px solid var(--red); border-bottom: 1px solid #d4cdc0; padding: 32px 36px; background: white; }
.lp-article:last-child { border-bottom: none; }
.lp-article-kicker { font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--red); margin-bottom: 10px; }
.lp-article-title { font-family: 'Playfair Display', serif; font-size: clamp(20px, 2.5vw, 26px); font-weight: 700; color: #0f0e0c; line-height: 1.25; margin-bottom: 12px; }
.lp-article-excerpt { font-family: 'Source Serif 4', serif; font-size: 15px; color: #555; line-height: 1.8; margin-bottom: 16px; }
.lp-article-byline { font-size: 12px; color: #bbb; margin-bottom: 16px; display: flex; align-items: center; gap: 8px; }
.lp-article-byline-avatar { width: 26px; height: 26px; border-radius: 50%; background: var(--red); display: flex; align-items: center; justify-content: center; font-family: 'Playfair Display', serif; font-size: 9px; font-weight: 700; color: white; flex-shrink: 0; }
.lp-article-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 20px; }
.lp-article-tag { font-size: 10px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--red); background: rgba(192,57,43,0.08); border: 1px solid rgba(192,57,43,0.2); padding: 3px 10px; border-radius: 20px; }
.lp-article-cta { display: inline-block; font-size: 12px; font-weight: 700; color: white; background: var(--red); padding: 10px 22px; text-decoration: none; }
.lp-article-cta:hover { background: var(--red-deep); }
.lp-sidebar { border-left: 1px solid #d4cdc0; background: #faf8f4; padding: 28px 24px; }
.lp-sidebar-label { font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: #aaa; border-bottom: 1px solid #e8e4dc; padding-bottom: 10px; margin-bottom: 16px; }
.lp-sidebar-item { padding: 14px 0; border-bottom: 1px solid #f0ece4; }
.lp-sidebar-item:last-child { border-bottom: none; }
.lp-sidebar-num { font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--red); margin-bottom: 5px; }
.lp-sidebar-title { font-family: 'Playfair Display', serif; font-size: 14px; font-weight: 700; color: #0f0e0c; line-height: 1.4; text-decoration: none; display: block; }
.lp-sidebar-title:hover { color: var(--red); }
.lp-sidebar-lens { font-size: 11px; color: #bbb; margin-top: 3px; }
.lp-more { background: white; border-left: 4px solid #e0dbd3; padding: 28px 36px; display: flex; align-items: center; gap: 16px; border-bottom: 1px solid #d4cdc0; }
.lp-more-icon { font-size: 22px; flex-shrink: 0; }
.lp-more-text { font-family: 'Source Serif 4', serif; font-size: 13px; color: #888; font-style: italic; line-height: 1.6; }

/* ── PAGE HEADERS (region/lens pages) ────────────────────── */
.page-header { background: var(--dark); padding: 120px 48px 60px; position: relative; overflow: hidden; }
.page-header::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 50% at 50% 60%, rgba(192,57,43,0.07) 0%, transparent 70%); }
.page-header-inner { max-width: 1100px; margin: 0 auto; position: relative; z-index: 1; }
.breadcrumb { font-size: 12px; color: rgba(255,255,255,0.25); margin-bottom: 20px; }
.breadcrumb a { color: rgba(255,255,255,0.25); text-decoration: none; }
.breadcrumb a:hover { color: var(--red); }
.breadcrumb span { margin: 0 8px; }
.lens-icon { font-size: 40px; margin-bottom: 16px; }
.page-title { font-family: 'Playfair Display', serif; font-size: clamp(36px,5vw,56px); font-weight: 900; color: white; line-height: 1.1; margin-bottom: 20px; }
.page-title span { color: var(--red); }
.page-standfirst { font-family: 'Source Serif 4', serif; font-size: 18px; color: rgba(255,255,255,0.5); line-height: 1.7; max-width: 680px; font-style: italic; }
.content-wrap { max-width: 1100px; margin: 0 auto; padding: 64px 48px; }
.coming-soon { background: white; border-radius: 12px; border: 1px solid var(--border); padding: 64px 48px; text-align: center; max-width: 640px; margin: 0 auto 64px; }
.coming-soon-icon { font-size: 48px; margin-bottom: 24px; }
.coming-soon-title { font-family: 'Playfair Display', serif; font-size: 26px; font-weight: 700; color: var(--ink); margin-bottom: 12px; }
.coming-soon-text { font-family: 'Source Serif 4', serif; font-size: 16px; color: var(--mid); line-height: 1.7; margin-bottom: 20px; }
.coming-soon-issue { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--red); }
.article-card { background: white; border-radius: 10px; border: 1px solid var(--border); padding: 40px; margin-bottom: 28px; box-shadow: 0 4px 24px rgba(0,0,0,0.05); transition: all 0.3s; }
.article-card:hover { transform: translateY(-3px); box-shadow: 0 8px 40px rgba(0,0,0,0.1); }
.article-card-kicker { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--red); margin-bottom: 14px; }
.article-card-title { font-family: 'Playfair Display', serif; font-size: 26px; font-weight: 700; color: var(--ink); line-height: 1.25; margin-bottom: 16px; }
.article-card-excerpt { font-family: 'Source Serif 4', serif; font-size: 16px; color: var(--mid); line-height: 1.8; margin-bottom: 24px; }
.article-card-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 20px; border-top: 1px solid var(--border); flex-wrap: wrap; gap: 12px; }
.article-card-meta { display: flex; flex-wrap: wrap; gap: 8px; }
.article-card-tag { background: rgba(192,57,43,0.08); border: 1px solid rgba(192,57,43,0.18); color: var(--red); padding: 4px 12px; border-radius: 20px; font-size: 11px; font-weight: 600; }
.article-card-link { background: var(--red); color: white; padding: 10px 22px; border-radius: 4px; font-size: 13px; font-weight: 600; text-decoration: none; transition: background 0.2s; white-space: nowrap; }
.article-card-link:hover { background: var(--red-deep); }
.lenses-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.lens-card { background: white; border: 1px solid var(--border); border-radius: 8px; padding: 24px; text-decoration: none; transition: all 0.3s; display: block; }
.lens-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.08); border-color: var(--red); }
.lens-card.active { border-color: var(--red); background: rgba(192,57,43,0.04); }
.lens-card-icon { font-size: 28px; margin-bottom: 12px; }
.lens-card-title { font-size: 15px; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.lens-card-desc { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* ── LEGAL / SEARCH PAGES ─────────────────────────────────── */
.legal-body { max-width: 800px; margin: 0 auto; padding: 60px 48px; }
.legal-body h2 { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700; color: var(--ink); margin: 40px 0 12px; }
.legal-body p, .legal-body li { font-family: 'Source Serif 4', serif; font-size: 16px; color: var(--mid); line-height: 1.8; margin-bottom: 12px; }
.legal-body ul { padding-left: 24px; }
.legal-body a { color: var(--red); }
.search-results { max-width: 800px; margin: 0 auto; padding: 48px; }
.search-result-item { background: white; border-radius: 8px; border: 1px solid var(--border); padding: 24px 28px; margin-bottom: 16px; transition: all 0.2s; }
.search-result-item:hover { border-color: var(--red); transform: translateX(4px); }
.search-result-kicker { font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--red); margin-bottom: 8px; }
.search-result-title { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.search-result-excerpt { font-family: 'Source Serif 4', serif; font-size: 14px; color: var(--mid); line-height: 1.6; }


/* ── FLOW DIAGRAM (issue 002) ─────────────────────────────── */
.flow-diagram { background: var(--ink); border-radius: 10px; padding: 32px; margin: 36px 0; overflow: hidden; }
.flow-title { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 700; color: white; margin-bottom: 6px; }
.flow-sub { font-size: 13px; color: rgba(255,255,255,0.4); font-style: italic; margin-bottom: 24px; }
.flow-nodes { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; flex-wrap: wrap; min-width: 0; }
.flow-node { flex: 1; min-width: 0; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 8px; padding: 20px; }
.flow-node.collapse { border-color: rgba(231,76,60,0.4); }
.flow-node.opportunity { border-color: rgba(39,174,96,0.4); }
.flow-node-icon { font-size: 24px; margin-bottom: 8px; }
.flow-node-title { font-size: 14px; font-weight: 700; color: white; margin-bottom: 6px; }
.flow-node-stat { font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 900; color: #E74C3C; margin-bottom: 8px; }
.flow-node-stat.green { color: #27AE60; }
.flow-node-detail { font-size: 12px; color: rgba(255,255,255,0.45); line-height: 1.5; }
.flow-arrow { font-size: 24px; color: rgba(255,255,255,0.3); flex-shrink: 0; }
.flow-destinations { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; margin-bottom: 16px; }
.flow-dest { background: rgba(255,255,255,0.04); border-radius: 6px; padding: 14px; text-align: center; }
.flow-dest-flag { font-size: 20px; margin-bottom: 6px; }
.flow-dest-name { font-size: 12px; font-weight: 700; color: white; margin-bottom: 4px; }
.flow-dest-receipts { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 900; color: #27AE60; }
.flow-dest-growth { font-size: 11px; color: rgba(255,255,255,0.35); margin-top: 2px; }
.flow-note { font-size: 10px; color: rgba(255,255,255,0.2); font-style: italic; }

/* ── BAR CHARTS (issue 002, 003) ──────────────────────────── */
.chart-block { background: white; border: 1px solid var(--border); border-radius: 10px; padding: 28px; margin: 36px 0; overflow: hidden; }
.chart-title { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 700; color: var(--ink); margin-bottom: 6px; }
.chart-sub { font-size: 13px; color: var(--muted); font-style: italic; margin-bottom: 20px; }
.bar-chart { display: flex; flex-direction: column; gap: 12px; }
.bar-row { display: flex; align-items: center; gap: 12px; }
.bar-label { font-size: 12px; font-weight: 600; color: var(--mid); width: 120px; flex-shrink: 0; text-align: right; }
.bar-track { flex: 1; background: #f0ece4; border-radius: 3px; overflow: hidden; height: 32px; position: relative; }
.bar-fill { height: 100%; display: flex; align-items: center; padding: 0 10px; font-size: 12px; font-weight: 700; color: white; border-radius: 3px; transition: width 0.6s ease; white-space: nowrap; }
.bar-fill.green { background: #27AE60; }
.bar-fill.gold { background: #C9A84C; }
.bar-fill.mid { background: var(--mid); }
.bar-fill.red { background: #E74C3C; }
.chart-note { font-size: 11px; color: var(--muted); font-style: italic; margin-top: 16px; line-height: 1.5; }

/* ── ANIMATIONS ───────────────────────────────────────────── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 900px) {
  .nav-topbar { padding: 10px 20px; }
  .nav-tagline { display: none; }
  .nav-lensbar { padding: 0 20px; overflow-x: auto; overflow-y: visible; }
  /* Article */
  .article-page-hero { padding: 32px 0 28px; }
  .article-hero-inner { padding: 0 24px; }
  .article-page-hero.photo-hero { padding: 0; }
  .article-page-hero-img { height: 400px; }
  .article-wrap { grid-template-columns: 1fr; padding: 40px 24px; }
  .data-row { grid-template-columns: 1fr 1fr; }
  .next-issue-teaser { padding: 36px 24px; }
  .bs-footer { padding: 32px 24px; flex-direction: column; align-items: flex-start; gap: 16px; }
  /* Share bar */
  .share-bar { padding: 12px 24px; }
  /* Lens pages */
  .lp-breadcrumb { padding: 8px 20px; }
  .lp-header { padding: 28px 20px 24px; flex-direction: column; align-items: flex-start; }
  .lp-header-right { text-align: left; }
  .lp-body { grid-template-columns: 1fr; }
  .lp-sidebar { border-left: none; border-top: 3px solid #0f0e0c; display: grid; grid-template-columns: 1fr 1fr; gap: 0 24px; padding: 24px 20px; }
  .lp-sidebar-label { grid-column: 1 / -1; }
  .lp-article { padding: 24px 20px; }
  .lp-more { padding: 20px; }
  /* Stats strip */
  .b1-stats-inner { grid-template-columns: repeat(2, 1fr); }
  /* Homepage */
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-card { display: none; }
  .pillars-grid, .readers-grid, .stats-grid { grid-template-columns: 1fr 1fr; }
  .lenses-grid { grid-template-columns: 1fr 1fr; }
  .content-wrap { padding: 40px 24px; }
  .page-header { padding: 40px 24px 32px; }
  .about-inner { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 600px) {
  .nav-hamburger { display: flex; }
  .nav-lensbar { display: none; }
  /* Article */
  .article-page-hero { padding: 20px 0 24px; }
  .article-hero-inner { padding: 0 16px; }
  .article-page-hero.photo-hero .article-hero-inner { padding: 0 16px 32px; }
  .article-page-hero-img { height: 320px; }
  .article-wrap { padding: 24px 16px; }
  .data-row { grid-template-columns: 1fr; }
  .next-issue-teaser { padding: 28px 16px; }
  .bs-footer { padding: 28px 16px; }
  /* Share bar */
  .share-bar { padding: 12px 16px; }
  .share-label { width: 100%; }
  /* Lens pages */
  .lp-sidebar { grid-template-columns: 1fr; }
  .lp-article-tags { display: none; }
  /* Homepage */
  .lenses-grid { grid-template-columns: 1fr; }
  .b1-stats-inner { grid-template-columns: 1fr 1fr; }
  .pillars-grid { grid-template-columns: 1fr; }
}


/* ── CONCEPT DEFINITIONS (policy.html) ───────────────────── */
.concept-item { background: white; border: 1px solid var(--border); border-left: 4px solid var(--red); border-radius: 0 8px 8px 0; padding: 20px 24px; margin: 16px 0; }
.concept-term { font-family: 'Playfair Display', serif; font-size: 16px; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.concept-def { font-family: 'Source Serif 4', serif; font-size: 14px; color: var(--mid); line-height: 1.7; }

/* ── PRINT ────────────────────────────────────────────────── */
@media print {
  nav, .nav-topbar, .nav-lensbar, .nav-mobile-menu,
  .bs-footer, .share-bar, .next-issue-teaser,
  .article-sidebar, .sidebar-card,
  .skip-link, .nav-hamburger { display: none !important; }
  body { font-family: Georgia, serif; font-size: 12pt; color: #000; background: white; }
  .article-wrap { display: block; padding: 24pt 0; }
  .article-body { width: 100%; }
  .article-body p { font-size: 11pt; line-height: 1.75; color: #000; }
  .article-body h2 { font-size: 14pt; color: #000; page-break-after: avoid; }
  .b1-stats-inner { grid-template-columns: repeat(4, 1fr); }
  .b1-card { background: white; padding: 10pt; }
  .b1-num { font-size: 20pt; color: #000; }
  @page { margin: 2cm; }
}
