/* ═══════════════════════════════════════════════════════════════
   NATIONAL HERALD — Washington Post-inspired Design System
   Light default · Dark mode · Full article layout · Mobile-first
   ═══════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=UnifrakturMaguntia&family=Libre+Franklin:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,700&family=Source+Serif+4:ital,opsz,wght@0,8..60,300;0,8..60,400;0,8..60,600;0,8..60,700;1,8..60,300;1,8..60,400;1,8..60,600&display=swap');

/* ── TOKENS ─────────────────────────────────────────────── */
:root {
  /* Brand */
  --red:        #c8102e;
  --red-dark:   #a00d23;
  --gold:       #c9a84c;

  /* Light mode palette */
  --bg:         #ffffff;
  --bg-alt:     #f7f7f5;
  --bg-card:    #ffffff;
  --text:       #1a1a1a;
  --text-2:     #444;
  --text-3:     #888;
  --border:     #ddd;
  --border-lt:  #ebebeb;

  /* Type */
  --fraktur: 'UnifrakturMaguntia', Georgia, serif;
  --sans:    'Libre Franklin', system-ui, sans-serif;
  --serif:   'Source Serif 4', Georgia, serif;

  /* Spacing */
  --radius: 0;
  --col-gap: 24px;
}

/* Dark mode overrides */
[data-theme="dark"] {
  --bg:        #111;
  --bg-alt:    #1a1a1a;
  --bg-card:   #1a1a1a;
  --text:      #e8e4dc;
  --text-2:    #aaa;
  --text-3:    #666;
  --border:    #2e2e2e;
  --border-lt: #232323;
  --red:       #e0253a;
  --gold:      #e8c76a;
}

/* ── RESET ──────────────────────────────────────────────── */
*,*::before,*::after { box-sizing:border-box; margin:0; padding:0 }
html { font-size:16px; scroll-behavior:smooth }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  transition: background .2s, color .2s;
}
a { color: inherit; text-decoration: none }
a:hover { color: var(--red) }
img { max-width: 100%; display: block }

.container      { max-width: 1200px; margin: 0 auto; padding: 0 20px }
.container-wide { max-width: 1400px; margin: 0 auto; padding: 0 20px }

/* ═══════════════════════════════════════════════════════════
   UTILITY BAR  (WaPo: black bar with date + links)
   ═══════════════════════════════════════════════════════════ */
.utility-bar {
  background: #000;
  color: rgba(255,255,255,.55);
  font-family: var(--sans);
  font-size: 11.5px;
  font-weight: 500;
  padding: 0;
  border-bottom: 1px solid #222;
}
.utility-inner {
  display: flex;
  align-items: stretch;
  height: 38px;
}
.utility-date {
  display: flex;
  align-items: center;
  color: rgba(255,255,255,.4);
  padding-right: 16px;
  border-right: 1px solid rgba(255,255,255,.1);
  margin-right: 16px;
  white-space: nowrap;
  font-size: 11px;
}
.utility-links {
  display: flex;
  align-items: center;
  gap: 0;
  flex: 1;
  overflow: hidden;
}
.utility-links a {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 13px;
  color: rgba(255,255,255,.52);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .02em;
  border-right: 1px solid rgba(255,255,255,.07);
  transition: color .15s, background .15s;
  white-space: nowrap;
}
.utility-links a:hover { color: #fff; background: rgba(255,255,255,.06) }
.utility-right {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
  padding-left: 12px;
}
.theme-toggle {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.65);
  padding: 4px 10px;
  border-radius: 3px;
  font-size: 13px;
  cursor: pointer;
  line-height: 1;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: background .15s;
}
.theme-toggle:hover { background: rgba(255,255,255,.16) }
.util-admin-link {
  font-size: 10.5px;
  color: rgba(255,255,255,.25);
  padding: 0 8px;
  transition: color .15s;
}
.util-admin-link:hover { color: rgba(255,255,255,.7) }
.btn-sub {
  background: var(--red);
  color: #fff;
  padding: 5px 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  font-family: var(--sans);
  transition: background .15s;
  white-space: nowrap;
  text-decoration: none;
  display: flex;
  align-items: center;
}
.btn-sub:hover { background: var(--red-dark); color: #fff }

/* ═══════════════════════════════════════════════════════════
   MASTHEAD  (WaPo: centered logo, clean white, thin rule)
   ═══════════════════════════════════════════════════════════ */
.masthead {
  background: var(--bg);
  text-align: center;
  padding: 20px 0 16px;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.masthead-logo {
  height: clamp(44px, 8vw, 82px);
  width: auto;
  max-width: 85%;
  margin: 0 auto 6px;
  display: block;
}
/* logo swap handled by JS in header.ejs */

.masthead-tagline {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--text-3);
}
.masthead-rule {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 8px;
}
.masthead-rule-line { width: 44px; height: 1px; background: var(--border) }
.masthead-rule-dot  { width: 4px; height: 4px; border-radius: 50%; background: var(--red) }

/* ═══════════════════════════════════════════════════════════
   STICKY NAV  (WaPo: white bar, bold categories, red accent)
   ═══════════════════════════════════════════════════════════ */
.nav-wrap {
  background: var(--bg);
  border-bottom: 3px solid var(--border);
  border-top: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 800;
  box-shadow: 0 2px 6px rgba(0,0,0,.06);
}
[data-theme="dark"] .nav-wrap { box-shadow: 0 2px 8px rgba(0,0,0,.4) }
.nav-inner {
  display: flex;
  align-items: stretch;
  height: 46px;
}
/* Sticky logo (WaPo shows condensed logo in sticky nav) */
.nav-logo { display: flex; align-items: center; padding-right: 16px; border-right: 1px solid var(--border); flex-shrink: 0; margin-right: 4px }
.nav-logo-text {
  font-family: var(--fraktur);
  font-size: 20px;
  color: var(--text);
  white-space: nowrap;
  line-height: 1;
}
.nav-logo--desktop { display: flex }
.nav-items {
  display: flex;
  flex: 1;
  align-items: stretch;
  overflow-x: auto;
  scrollbar-width: none;
}
.nav-items::-webkit-scrollbar { display: none }
.nav-item { position: relative; display: flex; align-items: stretch }
.nav-item > a, .nav-item > button {
  display: flex;
  align-items: center;
  padding: 0 13px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  white-space: nowrap;
  border: none;
  background: none;
  border-bottom: 3px solid transparent;
  margin-bottom: -3px;
  transition: color .15s, border-color .15s;
  gap: 4px;
  cursor: pointer;
  letter-spacing: .01em;
}
.nav-item > a:hover, .nav-item > button:hover,
.nav-item.active > a {
  color: var(--red);
  border-bottom-color: var(--red);
}
.chevron { font-size: 8px; opacity: .4; transition: transform .2s }
.nav-item:hover .chevron { transform: rotate(180deg) }

/* Mega menu */
.mega-drop {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 480px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-top: 3px solid var(--red);
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  padding: 18px 20px;
  box-shadow: 0 8px 32px rgba(0,0,0,.12);
  z-index: 900;
}
.nav-item:hover .mega-drop { display: grid }
.mega-col {
  padding: 0 16px;
  border-right: 1px solid var(--border-lt);
}
.mega-col:first-child { padding-left: 0 }
.mega-col:last-child  { border-right: none }
.mega-col-title {
  font-family: var(--sans);
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 10px;
}
.mega-link {
  display: block;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-2);
  padding: 5px 0;
  transition: color .12s;
}
.mega-link:hover { color: var(--red) }

.nav-right {
  margin-left: auto;
  display: flex;
  align-items: stretch;
  flex-shrink: 0;
}
.nav-search-form {
  display: flex;
  align-items: center;
  border-left: 1px solid var(--border);
}
.nav-search-input {
  border: none;
  outline: none;
  font-family: var(--sans);
  font-size: 13px;
  padding: 0 12px;
  width: 0;
  transition: width .28s ease;
  background: transparent;
  color: var(--text);
}
.nav-search-input:focus { width: 160px }
.nav-search-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border: none;
  background: none;
  cursor: pointer;
  color: var(--text-3);
  border-left: 1px solid var(--border);
  transition: color .15s;
}
.nav-search-btn:hover { color: var(--red) }
.nav-subscribe-btn {
  background: var(--red);
  color: #fff;
  padding: 0 20px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background .15s;
  white-space: nowrap;
  text-decoration: none;
  display: flex;
  align-items: center;
}
.nav-subscribe-btn:hover { background: var(--red-dark); color: #fff }

/* ═══════════════════════════════════════════════════════════
   TICKER BAR
   ═══════════════════════════════════════════════════════════ */
.ticker-bar {
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.ticker-inner {
  display: flex;
  align-items: stretch;
  height: 32px;
}
.ticker-label {
  background: var(--red);
  color: #fff;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 0 14px;
  display: flex;
  align-items: center;
  white-space: nowrap;
  flex-shrink: 0;
}
.ticker-track { flex: 1; overflow: hidden; position: relative }
.ticker-items {
  display: flex;
  align-items: center;
  height: 100%;
  white-space: nowrap;
  animation: ticker 50s linear infinite;
}
.ticker-items:hover { animation-play-state: paused }
.ticker-item {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  color: var(--text-2);
  padding-right: 40px;
}
.ticker-item a { color: inherit; transition: color .15s }
.ticker-item a:hover { color: var(--red) }
.ticker-sep { color: var(--border); padding-right: 40px }
@keyframes ticker {
  0%   { transform: translateX(0) }
  100% { transform: translateX(-50%) }
}

/* ═══════════════════════════════════════════════════════════
   SECTION HEADERS
   ═══════════════════════════════════════════════════════════ */
.sec-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 3px solid var(--text);
}
.sec-head-title {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--text);
  white-space: nowrap;
}
.sec-head-title.red { color: var(--red) }
.sec-head-line  { flex: 1; height: 1px; background: var(--border-lt) }
.sec-head-more  {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  color: var(--red);
  white-space: nowrap;
  transition: opacity .15s;
}
.sec-head-more:hover { opacity: .7; color: var(--red) }

/* ═══════════════════════════════════════════════════════════
   AI / HERALD SUMMARY BOX
   ═══════════════════════════════════════════════════════════ */
.ai-box {
  background: #fafaf8;
  border: 1px solid #e2ddd4;
  border-left: 3px solid var(--gold);
  padding: 10px 14px;
  margin: 12px 0 14px;
  font-family: var(--sans);
  font-size: 12.5px;
  line-height: 1.6;
  color: var(--text-2);
  border-radius: 0 2px 2px 0;
}
[data-theme="dark"] .ai-box { background: #1c1a14; border-color: rgba(201,168,76,.2) }
.ai-label {
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #8a7040;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 5px;
}

/* ═══════════════════════════════════════════════════════════
   HOMEPAGE HERO  (WaPo-style: large left + right stack)
   ═══════════════════════════════════════════════════════════ */
.hero {
  display: grid;
  grid-template-columns: 1fr 1px 300px;
  gap: 0;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 28px;
}
.hero-main {
  padding-right: 24px;
  cursor: pointer;
  display: block;
  text-decoration: none;
}
.hero-main:hover .hero-h1 { color: var(--red) }
.hero-divider { background: var(--border) }
.hero-sidebar {
  padding-left: 24px;
  display: flex;
  flex-direction: column;
}
.hero-main-img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  margin-bottom: 14px;
  background: var(--bg-alt);
  display: block;
}
.hero-eyebrow {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 7px;
}
.hero-h1 {
  font-family: var(--serif);
  font-size: clamp(22px, 2.8vw, 38px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 10px;
  transition: color .15s;
}
.hero-deck {
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.65;
  color: var(--text-2);
  margin-bottom: 12px;
}
.hero-meta {
  font-family: var(--sans);
  font-size: 11.5px;
  color: var(--text-3);
  display: flex;
  align-items: center;
  gap: 7px;
  flex-wrap: wrap;
}
.hero-meta .dot     { opacity: .4 }
.hero-meta .author  { font-weight: 700; color: var(--text-2) }
.hero-meta .readtime { background: var(--bg-alt); padding: 1px 7px; border-radius: 10px }

.hero-side-story {
  padding: 12px 0;
  border-bottom: 1px solid var(--border-lt);
  cursor: pointer;
  display: block;
  text-decoration: none;
}
.hero-side-story:first-child { padding-top: 0 }
.hero-side-story:last-child  { border-bottom: none; padding-bottom: 0 }
.hero-side-story:hover .hs-title { color: var(--red) }
.hs-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  margin-bottom: 8px;
  background: var(--bg-alt);
  display: block;
}
.hs-cat  { font-family: var(--sans); font-size: 9.5px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; color: var(--red); margin-bottom: 3px }
.hs-title {
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.35;
  color: var(--text);
  margin-bottom: 4px;
  transition: color .15s;
}
.hs-meta  { font-family: var(--sans); font-size: 11px; color: var(--text-3) }
.hs-number{ font-family: var(--serif); font-size: 28px; font-weight: 700; color: var(--border); line-height: 1; margin-bottom: 3px }

/* ═══════════════════════════════════════════════════════════
   MID BAND — 3 category columns
   ═══════════════════════════════════════════════════════════ */
.mid-band {
  display: grid;
  grid-template-columns: 1fr 1px 1fr 1px 1fr;
  gap: 0;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}
.mid-col { padding: 0 24px }
.mid-col:first-child { padding-left: 0 }
.mid-col:last-child  { padding-right: 0 }
.mid-divider { background: var(--border-lt) }
.mid-art {
  padding-bottom: 14px;
  margin-bottom: 14px;
  border-bottom: 1px solid var(--border-lt);
  cursor: pointer;
  display: block;
  text-decoration: none;
}
.mid-art:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0 }
.mid-art:hover .mid-title { color: var(--red) }
.mid-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  margin-bottom: 10px;
  background: var(--bg-alt);
  display: block;
}
.mid-cat  { font-family: var(--sans); font-size: 9.5px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; color: var(--red); margin-bottom: 5px }
.mid-title {
  font-family: var(--serif);
  font-size: 15.5px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text);
  margin-bottom: 5px;
  transition: color .15s;
}
.mid-deck { font-family: var(--sans); font-size: 12.5px; color: var(--text-2); line-height: 1.55; margin-bottom: 5px }
.mid-meta { font-family: var(--sans); font-size: 11px; color: var(--text-3) }

/* ═══════════════════════════════════════════════════════════
   OPINION BAND  (dark, WaPo-style)
   ═══════════════════════════════════════════════════════════ */
.opinion-band { background: #111; padding: 28px 0 }
[data-theme="dark"] .opinion-band { background: #0a0a0a; border-top: 1px solid #222; border-bottom: 1px solid #222 }
.opinion-inner {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 24px;
  align-items: start;
}
.opinion-label-vert {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-family: var(--sans);
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 10px;
}
.opinion-label-vert::before { content: ''; flex: 1; height: 1px; background: rgba(255,255,255,.1) }
.opinion-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.opinion-card {
  border-right: 1px solid rgba(255,255,255,.07);
  padding-right: 20px;
  cursor: pointer;
  display: block;
  text-decoration: none;
}
.opinion-card:last-child { border-right: none; padding-right: 0 }
.opinion-card:hover .oc-title { color: var(--gold) }
.oc-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 17px; font-weight: 700;
  color: var(--gold);
  border: 2px solid rgba(201,168,76,.2);
  margin-bottom: 8px;
}
.oc-name  { font-family: var(--sans); font-size: 11px; font-weight: 700; color: var(--gold); margin-bottom: 2px }
.oc-role  { font-family: var(--sans); font-size: 10px; color: rgba(255,255,255,.28); margin-bottom: 7px }
.oc-title { font-family: var(--serif); font-size: 14px; font-weight: 600; line-height: 1.4; color: rgba(255,255,255,.82); transition: color .15s }
.oc-meta  { font-family: var(--sans); font-size: 11px; color: rgba(255,255,255,.28); margin-top: 5px }

/* ═══════════════════════════════════════════════════════════
   LOWER SECTION — latest list + sidebar
   ═══════════════════════════════════════════════════════════ */
.lower-grid {
  display: grid;
  grid-template-columns: 1fr 1px 260px;
  gap: 0;
  padding: 28px 0;
}
.lower-main    { padding-right: 28px }
.lower-divider { background: var(--border-lt) }
.lower-sidebar { padding-left: 28px }

/* Article list items */
.art-list-item {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border-lt);
  cursor: pointer;
  text-decoration: none;
  transition: background .12s;
}
.art-list-item:last-child  { border-bottom: none }
.art-list-item:hover .ali-title { color: var(--red) }
.ali-img {
  width: 110px;
  height: 72px;
  object-fit: cover;
  background: var(--bg-alt);
  flex-shrink: 0;
  display: block;
}
.ali-cat  { font-family: var(--sans); font-size: 9.5px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; color: var(--red); margin-bottom: 3px }
.ali-title {
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text);
  margin-bottom: 4px;
  transition: color .15s;
}
.ali-deck { font-family: var(--sans); font-size: 12.5px; color: var(--text-2); line-height: 1.5; margin-bottom: 4px }
.ali-meta { font-family: var(--sans); font-size: 11px; color: var(--text-3) }

/* ═══════════════════════════════════════════════════════════
   SIDEBAR WIDGETS
   ═══════════════════════════════════════════════════════════ */
.widget { margin-bottom: 28px }
.widget-title {
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--text);
  padding-bottom: 8px;
  border-bottom: 3px solid var(--text);
  margin-bottom: 12px;
}
.widget-art {
  display: block;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-lt);
  text-decoration: none;
  cursor: pointer;
}
.widget-art:last-child { border-bottom: none }
.widget-art:hover .wa-title { color: var(--red) }
.wa-num   { font-family: var(--serif); font-size: 22px; font-weight: 700; color: var(--border); line-height: 1; margin-bottom: 2px }
.wa-cat   { font-family: var(--sans); font-size: 9.5px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--red); margin-bottom: 3px }
.wa-title { font-family: var(--serif); font-size: 13.5px; font-weight: 700; line-height: 1.3; color: var(--text); transition: color .15s }
.wa-meta  { font-family: var(--sans); font-size: 11px; color: var(--text-3); margin-top: 2px }

/* Newsletter widget */
.newsletter-widget {
  background: #111;
  padding: 20px;
}
[data-theme="dark"] .newsletter-widget { background: #000; border: 1px solid #222 }
.nw-sub  { font-family: var(--sans); font-size: 12.5px; color: rgba(255,255,255,.44); line-height: 1.55; margin-bottom: 13px }
.nw-input {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color: #fff;
  font-family: var(--sans);
  font-size: 13px;
  margin-bottom: 8px;
  outline: none;
  border-radius: 1px;
  transition: border-color .15s;
}
.nw-input:focus { border-color: rgba(255,255,255,.35) }
.nw-input::placeholder { color: rgba(255,255,255,.3) }
.nw-btn {
  width: 100%;
  background: var(--red);
  color: #fff;
  border: none;
  padding: 11px;
  font-family: var(--sans);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .15s;
}
.nw-btn:hover { background: var(--red-dark) }

/* ═══════════════════════════════════════════════════════════
   ARTICLE PAGE  ← WaPo-style: constrained column, rich type
   ═══════════════════════════════════════════════════════════ */
.art-wrap { max-width: 1200px; margin: 0 auto; padding: 0 20px }

/* Reading progress */
.read-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  background: var(--red);
  width: 0;
  z-index: 9999;
  transition: width .1s linear;
}

/* Article grid layout */
.art-grid {
  display: grid;
  grid-template-columns: 1fr 1px 280px;
  gap: 0;
  padding-top: 6px;
}
.art-main        { padding-right: 40px; min-width: 0 }
.art-sidebar-div { background: var(--border-lt) }
.art-sidebar     { padding-left: 32px; min-width: 0 }

/* Article header */
.art-header { margin-bottom: 18px }
.art-eyebrow {
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.art-eyebrow a { color: var(--red) }
.art-eyebrow a:hover { color: var(--red-dark) }
.art-title {
  font-family: var(--serif);
  font-size: clamp(24px, 3.5vw, 44px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 12px;
  letter-spacing: -.01em;
}
.art-subtitle {
  font-family: var(--serif);
  font-size: clamp(16px, 1.6vw, 20px);
  font-weight: 300;
  line-height: 1.55;
  color: var(--text-2);
  margin-bottom: 14px;
  border-left: 3px solid var(--gold);
  padding-left: 14px;
}
.art-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  font-family: var(--sans);
  font-size: 12px;
  color: var(--text-3);
  padding: 12px 0;
  border-top: 1px solid var(--border-lt);
  border-bottom: 1px solid var(--border-lt);
  margin-bottom: 14px;
}
.art-author   { font-weight: 700; color: var(--text-2) }
.art-readtime { background: var(--bg-alt); padding: 2px 8px; border-radius: 10px; font-size: 11px }
.dot { opacity: .35 }

/* Share bar */
.art-share {
  display: flex;
  align-items: center;
  gap: 7px;
  flex-wrap: wrap;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-lt);
}
.art-share-label {
  font-family: var(--sans);
  font-size: 11.5px;
  font-weight: 700;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-right: 4px;
}
.share-btn {
  padding: 6px 13px;
  border: 1px solid var(--border);
  font-family: var(--sans);
  font-size: 11.5px;
  font-weight: 600;
  color: var(--text-2);
  background: var(--bg);
  cursor: pointer;
  transition: all .13s;
  border-radius: 1px;
  text-decoration: none;
  display: inline-block;
}
.share-btn:hover { border-color: var(--text); color: var(--text) }

/* Article hero image */
.art-hero-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
  margin-bottom: 6px;
  background: var(--bg-alt);
}
.art-img-caption {
  font-family: var(--sans);
  font-size: 11px;
  color: var(--text-3);
  margin-bottom: 22px;
  font-style: italic;
}

/* Key points box */
.kp-box {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-left: 3px solid var(--red);
  padding: 16px 18px;
  margin-bottom: 24px;
}
[data-theme="dark"] .kp-box { background: #1a1a1a }
.kp-box-title {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
}
.kp-box ul {
  padding-left: 18px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.kp-box li {
  font-family: var(--sans);
  font-size: 13.5px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--text-2);
}

/* ARTICLE BODY — the most important part */
.art-body {
  font-family: var(--serif);
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.82;
  color: var(--text);
  max-width: 680px;
}
.art-body p { margin-bottom: 1.5em }
.art-body p:first-child::first-letter {
  float: left;
  font-family: var(--serif);
  font-size: 4.2em;
  line-height: .78;
  padding-right: .08em;
  margin-top: .06em;
  color: var(--text);
  font-weight: 700;
}
.art-body h2 {
  font-family: var(--serif);
  font-size: 1.55em;
  font-weight: 700;
  line-height: 1.25;
  color: var(--text);
  margin: 1.8em 0 .7em;
  padding-top: .6em;
  border-top: 1px solid var(--border-lt);
}
.art-body h3 {
  font-family: var(--serif);
  font-size: 1.25em;
  font-weight: 700;
  color: var(--text);
  margin: 1.4em 0 .5em;
}
.art-body blockquote {
  border-left: 4px solid var(--gold);
  padding: 14px 22px;
  margin: 1.8em 0;
  background: var(--bg-alt);
  font-style: italic;
  font-size: 1.1em;
  color: var(--text-2);
}
[data-theme="dark"] .art-body blockquote { background: #1a1a1a }
.art-body strong { font-weight: 700; color: var(--text) }
.art-body a { color: var(--red); text-decoration: underline; text-underline-offset: 3px }
.art-body a:hover { color: var(--red-dark) }
.art-body ul, .art-body ol { margin: 1.2em 0 1.2em 1.6em }
.art-body li { margin-bottom: .5em }
.art-body img { width: 100%; margin: 1.6em 0; }
.art-body figure { margin: 1.6em 0 }
.art-body figcaption { font-family: var(--sans); font-size: 11.5px; color: var(--text-3); font-style: italic; margin-top: 5px }
.art-body hr { border: none; border-top: 1px solid var(--border); margin: 2em 0 }

/* Tags */
.art-tags {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid var(--border-lt);
}
.art-tag {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  padding: 5px 11px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  color: var(--text-2);
  transition: all .13s;
  text-decoration: none;
}
.art-tag:hover { background: var(--text); color: var(--bg); border-color: var(--text) }

/* Related articles */
.art-related { margin-top: 32px; padding-top: 20px; border-top: 3px solid var(--text) }
.art-related-title {
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 16px;
}
.art-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.arc {
  display: block;
  text-decoration: none;
  cursor: pointer;
}
.arc:hover .arc-title { color: var(--red) }
.arc-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
  margin-bottom: 8px;
  background: var(--bg-alt);
}
.arc-cat  { font-family: var(--sans); font-size: 9.5px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--red); margin-bottom: 4px }
.arc-title { font-family: var(--serif); font-size: 14px; font-weight: 700; line-height: 1.3; color: var(--text); margin-bottom: 4px; transition: color .15s }
.arc-meta  { font-family: var(--sans); font-size: 11px; color: var(--text-3) }

/* ═══════════════════════════════════════════════════════════
   CATEGORY PAGE
   ═══════════════════════════════════════════════════════════ */
.cat-hero {
  background: var(--text);
  padding: 28px 0 22px;
  margin-bottom: 28px;
}
[data-theme="dark"] .cat-hero { background: #0a0a0a; border-bottom: 1px solid var(--border) }
.cat-hero-inner { max-width: 1200px; margin: 0 auto; padding: 0 20px }
.cat-hero-label {
  font-family: var(--sans);
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 6px;
}
.cat-hero h1 {
  font-family: var(--fraktur);
  font-size: clamp(32px, 5vw, 56px);
  color: #fff;
  line-height: 1;
}
.cat-hero-count { color: rgba(255,255,255,.4); font-family: var(--sans); font-size: 13px; margin-top: 5px }
.cat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; padding-bottom: 28px }
.cat-card {
  border-top: 2px solid var(--border-lt);
  padding-top: 14px;
  cursor: pointer;
  display: block;
  text-decoration: none;
  transition: border-top-color .15s;
}
.cat-card:hover { border-top-color: var(--red) }
.cat-card:hover .cc-title { color: var(--red) }
.cc-img   { width: 100%; aspect-ratio: 16/10; object-fit: cover; display: block; margin-bottom: 11px; background: var(--bg-alt) }
.cc-cat   { font-family: var(--sans); font-size: 9.5px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--red); margin-bottom: 6px }
.cc-title { font-family: var(--serif); font-size: 17px; font-weight: 700; line-height: 1.28; color: var(--text); margin-bottom: 6px; transition: color .15s }
.cc-deck  { font-family: var(--sans); font-size: 13px; color: var(--text-2); line-height: 1.5; margin-bottom: 7px }
.cc-body  { font-family: var(--sans); font-size: 12.5px; color: var(--text-2); line-height: 1.55; margin-bottom: 6px }
.cc-meta  { font-family: var(--sans); font-size: 11px; color: var(--text-3) }

/* ═══════════════════════════════════════════════════════════
   SEARCH PAGE
   ═══════════════════════════════════════════════════════════ */
.search-header { padding: 24px 0 20px; border-bottom: 3px solid var(--text); margin-bottom: 24px }
.search-title  { font-family: var(--serif); font-size: clamp(22px, 3vw, 36px); font-weight: 700; color: var(--text); margin-bottom: 4px }
.search-count  { font-family: var(--sans); font-size: 13px; color: var(--text-3) }
.search-grid   { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px }

/* ═══════════════════════════════════════════════════════════
   ERROR / EMPTY
   ═══════════════════════════════════════════════════════════ */
.error-page { text-align: center; padding: 80px 20px }
.error-num  { font-family: var(--fraktur); font-size: 120px; color: var(--border); line-height: 1; margin-bottom: 8px }
.error-msg  { font-family: var(--serif); font-size: 28px; font-weight: 700; color: var(--text); margin-bottom: 10px }
.error-sub  { font-family: var(--sans); font-size: 16px; color: var(--text-3); margin-bottom: 26px }
.btn-home {
  display: inline-block;
  background: var(--red);
  color: #fff;
  padding: 12px 30px;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .05em;
  text-transform: uppercase;
  transition: background .15s;
  text-decoration: none;
}
.btn-home:hover { background: var(--red-dark); color: #fff }
.empty-state { text-align: center; padding: 80px 20px }
.empty-state h2 { font-family: var(--fraktur); font-size: 42px; color: var(--text); margin-bottom: 10px }
.empty-state p  { font-family: var(--sans); color: var(--text-3); font-size: 16px; margin-bottom: 22px }

/* ═══════════════════════════════════════════════════════════
   FOOTER  (WaPo-style: black, multi-column, clean)
   ═══════════════════════════════════════════════════════════ */
.footer {
  background: #0a0a0a;
  color: rgba(255,255,255,.45);
  border-top: 3px solid var(--red);
  margin-top: 0;
}
.footer-top { padding: 44px 0 30px }
.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr 1.4fr;
  gap: 32px;
}
.footer-logo {
  height: 42px;
  width: auto;
  max-width: 220px;
  display: block;
  margin-bottom: 12px;
}
.footer-desc { font-family: var(--sans); font-size: 13px; line-height: 1.7; color: rgba(255,255,255,.38); margin-bottom: 12px }
.footer-url  { font-family: var(--sans); font-size: 10px; color: rgba(255,255,255,.16); letter-spacing: .06em }
.fc-title { font-family: var(--sans); font-size: 9.5px; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px }
.fc-links { list-style: none }
.fc-links li { margin-bottom: 8px }
.fc-links a  { font-family: var(--sans); font-size: 13px; color: rgba(255,255,255,.42); transition: color .15s }
.fc-links a:hover { color: rgba(255,255,255,.9) }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.07); padding: 16px 0 }
.fb-inner { display: flex; justify-content: space-between; align-items: center; font-family: var(--sans); font-size: 11px; color: rgba(255,255,255,.3); flex-wrap: wrap; gap: 10px }
.fb-links { display: flex; gap: 18px }
.fb-links a { color: rgba(255,255,255,.3); transition: color .15s }
.fb-links a:hover { color: rgba(255,255,255,.8) }

/* ═══════════════════════════════════════════════════════════
   DARK MODE OVERRIDES
   ═══════════════════════════════════════════════════════════ */
[data-theme="dark"] .sec-head { border-bottom-color: var(--text) }
[data-theme="dark"] .hero-h1, [data-theme="dark"] .hs-title,
[data-theme="dark"] .mid-title, [data-theme="dark"] .ali-title,
[data-theme="dark"] .wa-title, [data-theme="dark"] .art-title,
[data-theme="dark"] .arc-title, [data-theme="dark"] .cc-title,
[data-theme="dark"] .art-related-title, [data-theme="dark"] .widget-title { color: var(--text) }
[data-theme="dark"] .hero-deck, [data-theme="dark"] .art-subtitle { color: var(--text-2) }
[data-theme="dark"] .art-body { color: var(--text) }
[data-theme="dark"] .art-body h2, [data-theme="dark"] .art-body h3 { color: var(--text) }
[data-theme="dark"] .art-body a { color: #78a9ff }
[data-theme="dark"] .share-btn { background: var(--bg-card); border-color: var(--border); color: var(--text-2) }
[data-theme="dark"] .share-btn:hover { border-color: var(--text); color: var(--text) }
[data-theme="dark"] .kp-box { background: #1e1e1e; border-color: var(--border) }
[data-theme="dark"] .art-tag { background: #222; border-color: var(--border); color: var(--text-2) }
[data-theme="dark"] .art-tag:hover { background: var(--text); color: var(--bg) }
[data-theme="dark"] .cat-card { border-top-color: var(--border) }
[data-theme="dark"] .ai-box { background: rgba(201,168,76,.05); border-color: rgba(201,168,76,.18) }
[data-theme="dark"] .mega-drop { background: #1a1a1a; border-color: var(--border) }
[data-theme="dark"] .mega-link { color: var(--text-2) }
[data-theme="dark"] .mega-link:hover { color: var(--gold) }
[data-theme="dark"] .ticker-bar { background: #1a1a1a; border-bottom-color: var(--border) }
[data-theme="dark"] .utility-bar { background: #000 }
[data-theme="dark"] .masthead { background: #111; border-bottom-color: var(--border) }
[data-theme="dark"] .nav-wrap { background: #141414; border-bottom-color: var(--border); border-top-color: var(--border) }
[data-theme="dark"] .nav-logo-text { color: var(--text) }
[data-theme="dark"] .nav-item > a, [data-theme="dark"] .nav-item > button { color: var(--text-2) }
[data-theme="dark"] .nav-item > a:hover, [data-theme="dark"] .nav-item > button:hover { color: var(--text); border-bottom-color: var(--text) }
[data-theme="dark"] .nav-search-btn { color: var(--text-3) }
[data-theme="dark"] .nav-search-input { color: var(--text) }
[data-theme="dark"] .art-hero-img { background: #222 }
[data-theme="dark"] .art-list-item:hover { background: var(--bg-alt) }
[data-theme="dark"] input, [data-theme="dark"] select, [data-theme="dark"] textarea {
  background: #1a1a1a; color: var(--text); border-color: var(--border)
}

/* ═══════════════════════════════════════════════════════════
   STATIC PAGES (about, contact, etc.)
   ═══════════════════════════════════════════════════════════ */
.page-h1, .page-h2 { font-family: var(--serif); color: var(--text) }
.page-body { color: var(--text-2); line-height: 1.8; font-family: var(--serif); font-size: 16px }
.section-adaptive { background: var(--bg-alt) }
.card-adaptive { background: var(--bg-card); border: 1px solid var(--border) }
.card-adaptive-title { font-family: var(--sans); font-weight: 700; color: var(--text) }
.card-adaptive-text  { color: var(--text-2); font-family: var(--sans) }
.divider-adaptive { height: 1px; background: var(--border) }
.stat-num   { font-family: var(--serif); font-size: 42px; font-weight: 700; color: var(--gold); line-height: 1 }
.stat-label { font-family: var(--sans); font-size: 12px; font-weight: 700; color: #fff; margin-top: 5px }
.stat-sub   { font-family: var(--sans); font-size: 11px; color: rgba(255,255,255,.3); margin-top: 3px }
.hero-dark  { background: #0a0a0a; border-bottom: 3px solid var(--red) }
.hero-dark * { color: inherit }
.section-label { font-family: var(--sans); font-size: 10px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; color: var(--gold) }
.txt-white   { color: #fff }
.txt-white-65{ color: rgba(255,255,255,.65) }
.txt-white-50{ color: rgba(255,255,255,.5) }
.txt-gold    { color: var(--gold) }
.cta-dark    { background: #0a0a0a; padding: 40px; text-align: center }
.cta-dark h2 { color: #fff }
.cta-dark p  { color: rgba(255,255,255,.5) }
.input-adaptive {
  background: var(--bg); color: var(--text); border: 1px solid var(--border);
  padding: 11px 13px; font-family: var(--sans); font-size: 14px; width: 100%; outline: none;
  transition: border-color .15s;
}
.input-adaptive:focus { border-color: var(--text) }
.btn-outline-adaptive { border: 1px solid var(--text); color: var(--text); padding: 10px 24px; font-family: var(--sans); font-weight: 700; font-size: 13px; background: none; cursor: pointer; text-decoration: none; display: inline-block; transition: all .15s }
.btn-outline-adaptive:hover { background: var(--text); color: var(--bg) }
.border-gold-left { border-left: 3px solid var(--gold); padding-left: 14px }
.pg-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 28px }
.pg-grid-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 20px }
.pg-stats, .pg-stats-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px }

/* ═══════════════════════════════════════════════════════════
   MOBILE NAV OVERLAY
   ═══════════════════════════════════════════════════════════ */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px; height: 44px;
  background: none; border: none;
  cursor: pointer; padding: 0;
  flex-shrink: 0;
  -webkit-tap-highlight-color: transparent;
}
.nav-hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 1px;
  transition: transform .2s ease, opacity .2s ease;
  pointer-events: none;
}
.nav-hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg) }
.nav-hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0 }
.nav-hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg) }
.mob-nav {
  display: none; position: fixed; inset: 0;
  z-index: 9990; background: rgba(0,0,0,.55);
}
.mob-nav.is-open { display: block }
.mob-nav-panel {
  position: absolute; top: 0; left: 0; bottom: 0;
  width: min(300px, 85vw);
  background: #0d0d0d;
  display: flex; flex-direction: column;
  overflow: hidden;
  transform: translateX(-100%);
  transition: transform .25s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}
.mob-nav.is-open .mob-nav-panel { transform: translateX(0) }
.mob-nav-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  flex-shrink: 0;
}
.mob-nav-brand { font-family: var(--fraktur); font-size: 22px; color: #fff; line-height: 1 }
.mob-nav-close {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.08); border: none;
  color: #fff; font-size: 18px; border-radius: 2px;
  cursor: pointer; flex-shrink: 0; line-height: 1;
}
.mob-nav-body { flex: 1; overflow-y: auto; -webkit-overflow-scrolling: touch; padding: 4px 0 }
.mob-nav-body a {
  display: block; padding: 13px 18px;
  font-family: var(--sans); font-size: 14px; font-weight: 600;
  color: rgba(255,255,255,.72); text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,.05);
  transition: color .12s, background .12s;
}
.mob-nav-body a:hover { color: #fff; background: rgba(255,255,255,.05) }
.mob-nav-hr { border: none; border-top: 1px solid rgba(255,255,255,.1); margin: 3px 0 }
.mob-nav-search { flex-shrink: 0; padding: 12px 14px; border-top: 1px solid rgba(255,255,255,.08); background: #0d0d0d }
.mob-nav-search form { display: flex }
.mob-search-input {
  flex: 1; padding: 10px 12px;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12);
  border-right: none; color: #fff; font-size: 13px;
  font-family: var(--sans); border-radius: 2px 0 0 2px; outline: none;
}
.mob-search-input::placeholder { color: rgba(255,255,255,.3) }
.mob-search-btn {
  padding: 10px 14px; background: var(--red); color: #fff;
  border: none; font-family: var(--sans); font-weight: 700; font-size: 12px;
  border-radius: 0 2px 2px 0; cursor: pointer;
}

/* ═══════════════════════════════════════════════════════════
   ACCESSIBILITY
   ═══════════════════════════════════════════════════════════ */
.skip-link {
  position: absolute; top: -50px; left: 0;
  background: var(--red); color: #fff;
  padding: 10px 18px; font-family: var(--sans); font-weight: 700;
  z-index: 9999; transition: top .2s; font-size: 13px;
}
.skip-link:focus { top: 0 }
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
  border-radius: 1px;
}
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0) }

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — TABLET ≤1024px
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr }
  .hero-main { padding-right: 0; border-right: none; border-bottom: 1px solid var(--border); padding-bottom: 18px; margin-bottom: 18px }
  .hero-divider { display: none }
  .hero-sidebar { padding-left: 0; flex-direction: row; flex-wrap: wrap; gap: 0 }
  .hero-side-story { flex: 1; min-width: 180px; padding: 0 14px 0 0; border-bottom: none; border-right: 1px solid var(--border-lt) }
  .hero-side-story:last-child { border-right: none; padding-right: 0 }
  .mid-band { grid-template-columns: 1fr 1px 1fr }
  .mid-col:last-child { display: none }
  .opinion-grid { grid-template-columns: 1fr 1fr }
  .lower-grid { grid-template-columns: 1fr }
  .lower-divider { display: none }
  .lower-sidebar { padding-left: 0; padding-top: 24px; border-top: 1px solid var(--border-lt) }
  .art-grid { grid-template-columns: 1fr 1px 240px }
  .art-main { padding-right: 28px }
  .art-sidebar { padding-left: 22px }
  .art-related-grid { grid-template-columns: 1fr 1fr }
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; gap: 24px }
  .cat-grid { grid-template-columns: 1fr 1fr }
  .search-grid { grid-template-columns: 1fr 1fr }
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — MOBILE ≤768px
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  /* Nav */
  .nav-hamburger   { display: flex !important }
  .nav-items       { display: none !important }
  .nav-right       { display: none !important }
  .utility-links   { display: none !important }
  .nav-inner       { height: 50px; padding: 0 14px }
  .nav-logo--desktop { display: none !important }
  .nav-logo        { padding: 0 !important; border-right: none !important }
  .mega-drop       { display: none !important }

  /* Masthead */
  .masthead { padding: 14px 0 12px }
  .masthead-tagline { font-size: 8px; letter-spacing: .15em }

  /* Ticker */
  .ticker-label { display: none }

  /* Hero */
  .hero { grid-template-columns: 1fr }
  .hero-main { padding-right: 0; border-right: none; border-bottom: 1px solid var(--border); padding-bottom: 16px; margin-bottom: 14px }
  .hero-divider { display: none }
  .hero-sidebar { padding-left: 0; flex-direction: column }
  .hero-side-story { border-right: none; border-bottom: 1px solid var(--border-lt); padding: 10px 0; min-width: unset; flex: unset }
  .hero-h1 { font-size: clamp(20px, 6vw, 30px) }

  /* Mid */
  .mid-band { grid-template-columns: 1fr }
  .mid-divider { display: none }
  .mid-col { padding: 0 0 18px; border-right: none }
  .mid-col:last-child { display: block }

  /* Opinion */
  .opinion-inner { grid-template-columns: 1fr }
  .opinion-label-vert { display: none }
  .opinion-grid { grid-template-columns: 1fr }
  .opinion-card { border-right: none; padding-right: 0; padding-bottom: 14px; border-bottom: 1px solid rgba(255,255,255,.07) }

  /* Lower */
  .lower-grid { grid-template-columns: 1fr }
  .lower-divider { display: none }
  .lower-main { padding-right: 0 }
  .lower-sidebar { padding-left: 0; padding-top: 24px; border-top: 1px solid var(--border-lt) }

  /* Article list */
  .art-list-item { grid-template-columns: 80px 1fr; gap: 10px }
  .ali-img { width: 80px; height: 56px }

  /* *** ARTICLE PAGE — KEY FIX *** */
  .art-wrap { padding: 0 16px }
  .art-grid {
    grid-template-columns: 1fr !important;
    display: block !important;
  }
  .art-sidebar-div { display: none }
  .art-sidebar {
    padding-left: 0;
    padding-top: 32px;
    margin-top: 24px;
    border-top: 1px solid var(--border-lt);
  }
  .art-main { padding-right: 0 }
  .art-title { font-size: clamp(22px, 5.5vw, 32px); line-height: 1.2 }
  .art-subtitle { font-size: 16px }
  .art-body { font-size: 16px; line-height: 1.75; max-width: 100% }
  .art-body p:first-child::first-letter { font-size: 3.5em }
  .art-share { gap: 5px }
  .share-btn { font-size: 11px; padding: 5px 10px }
  .art-hero-img { margin: 0 -16px; width: calc(100% + 32px) }
  .art-related-grid { grid-template-columns: 1fr }
  .kp-box { padding: 12px 14px }

  /* Category */
  .cat-grid { grid-template-columns: 1fr }
  .cat-hero { padding: 20px 0 16px }

  /* Search */
  .search-grid { grid-template-columns: 1fr }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 20px }
  .fb-inner { flex-direction: column; gap: 8px; text-align: center }
  .fb-links { flex-wrap: wrap; justify-content: center }

  /* Static pages */
  .pg-grid-2, .pg-grid-3 { grid-template-columns: 1fr !important }
  .pg-stats, .pg-stats-4 { grid-template-columns: 1fr 1fr !important }

  .util-admin-link { display: none }
}

/* ═══════════════════════════════════════════════════════════
   SMALL MOBILE ≤480px
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 480px) {
  .container, .container-wide { padding: 0 14px }
  .footer-grid { grid-template-columns: 1fr }
  .hero-h1     { font-size: clamp(19px, 6.5vw, 26px) }
  .art-title   { font-size: 20px }
  .art-body    { font-size: 15.5px }
  .masthead-logo { height: clamp(38px, 12vw, 64px) !important }
  .nav-hamburger { display: flex !important }
  .nav-logo--desktop { display: none !important }
  .pg-stats, .pg-stats-4 { grid-template-columns: 1fr 1fr !important }
}

@media print {
  .utility-bar,.nav-wrap,.ticker-bar,.footer,.art-sidebar,.art-share,.art-tags,.art-related { display: none }
  .art-grid { grid-template-columns: 1fr !important; display: block !important }
  .art-body { font-size: 11pt; line-height: 1.6 }
}
