/* ===================================================================
   USA News Nest — Theme v2
   Type-forward editorial magazine layout
   Playfair Display headlines · Source Sans 3 body
   Palette: off-white paper, ink-black, crimson, gold
=================================================================== */

/* ── TOKENS ──────────────────────────────────────────────────── */
:root {
  --red:      #C8102E;
  --red-dk:   #96001f;
  --navy:     #0c1e35;
  --gold:     #c9960c;
  --ink:      #0e0e0e;
  --ink2:     #2e2e2e;
  --ink3:     #595959;
  --ink4:     #8c8c8c;
  --paper:    #faf9f7;
  --paper2:   #f2f0ec;
  --white:    #ffffff;
  --rule:     #d6d2ca;
  --maxw:     1280px;
  --head:     "Playfair Display", Georgia, serif;
  --body:     "Source Sans 3", system-ui, -apple-system, sans-serif;
}

/* ── RESET ───────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; }
body { font-family: var(--body); background: var(--paper); color: var(--ink); line-height: 1.6; font-size: 16px; overflow-x: hidden; }
img  { display: block; max-width: 100%; }
a    { color: inherit; text-decoration: none; }

.w { max-width: var(--maxw); margin: 0 auto; padding: 0 40px; }
.site-main { min-height: 60vh; }

/* ── PROGRESS BAR ────────────────────────────────────────────── */
.progress-bar { position: fixed; top: 0; left: 0; height: 3px; width: 0; background: var(--red); z-index: 600; transition: width .1s linear; }

/* ── FLASH MESSAGES ──────────────────────────────────────────── */
.flash { font-size: .9rem; font-weight: 600; animation: fadein .35s ease-out; }
.flash .w { padding: 12px 40px; }
.flash--success { background: #e6f7ee; color: #1a5e35; }
.flash--error   { background: #fdeaea; color: #8b0000; }
@keyframes fadein { from { opacity:0; transform:translateY(-6px); } to { opacity:1; transform:none; } }

/* ── BREAKING TICKER ─────────────────────────────────────────── */
.ticker { background:var(--red); overflow:hidden; }
.ticker-inner { display:flex; align-items:center; height:34px; padding:0 40px; }
.ticker-tag { font-size:.62rem; font-weight:700; text-transform:uppercase; letter-spacing:.12em; padding:0 14px 0 0; border-right:1px solid rgba(255,255,255,.3); margin-right:16px; flex-shrink:0; color:#fff; display:flex; align-items:center; gap:7px; }
.ticker-tag::before { content:""; width:5px; height:5px; border-radius:50%; background:#fff; animation:blink 1.5s infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.2} }
.ticker-scroll { overflow:hidden; flex:1; }
.ticker-track { display:flex; animation:scroll-left 55s linear infinite; width:max-content; }
.ticker-track a { font-size:.77rem; font-weight:500; color:#fff; padding-right:56px; white-space:nowrap; align-items:center; display:flex; }
.ticker-track a:hover { text-decoration:underline; }
.ticker:hover .ticker-track { animation-play-state:paused; }
@keyframes scroll-left { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ── TOP BAR ─────────────────────────────────────────────────── */
.topbar {
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.topbar__inner {
  max-width: var(--maxw); margin: 0 auto; padding: 0 40px;
  height: 36px; display: flex; align-items: center;
  justify-content: space-between; gap: 16px;
}
.topbar__left { display:flex; align-items:center; gap:12px; font-size:.72rem; color:rgba(255,255,255,.45); }
.topbar__date { color:rgba(255,255,255,.5); }
.topbar__pipe { color:rgba(255,255,255,.15); }
.topbar__tagline { font-size:.67rem; font-weight:700; text-transform:uppercase; letter-spacing:.1em; color:var(--gold); }
.topbar__right { display:flex; align-items:center; gap:14px; }
.topbar__user { font-size:.72rem; color:rgba(255,255,255,.4); }
.topbar__link { font-size:.72rem; font-weight:600; color:rgba(255,255,255,.5); transition:color .15s; }
.topbar__link:hover { color:#fff; }
.topbar__sub {
  font-size:.68rem; font-weight:800; text-transform:uppercase; letter-spacing:.07em;
  background:var(--red); color:#fff; padding:5px 13px; border-radius:2px; transition:background .15s;
}
.topbar__sub:hover { background:var(--red-dk); color:#fff; }

/* ── MASTHEAD ────────────────────────────────────────────────── */
.masthead {
  background: var(--white);
  border-bottom: 2px solid var(--ink);
}
.masthead__inner {
  max-width: var(--maxw); margin: 0 auto; padding: 0 40px;
  height: 80px; display: flex; align-items: center; gap: 28px;
}

/* Logo */
.masthead__logo { flex-shrink: 0; display:flex; align-items:center; }
.masthead__logo img { max-height: 60px; width:auto; }

.logo-block { display:flex; align-items:center; gap:8px; }
.logo-block__boxes { display:flex; gap:2px; }
.logo-block__boxes span {
  width: 40px; height: 40px; border-radius: 4px;
  background: var(--navy); color: #fff;
  font-family: var(--head); font-weight: 900; font-size: 1.35rem;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.masthead__logo:hover .logo-block__boxes span { background: var(--red); }
.logo-block__name {
  display: flex; flex-direction: column; gap: 0;
  padding-left: 9px; border-left: 2px solid var(--rule);
  line-height: 1.1;
}
.logo-block__name b {
  font-family: var(--head); font-weight: 900; font-size: .95rem;
  letter-spacing: .15em; color: var(--red); text-transform: uppercase; font-style:normal;
}
.logo-block__name i {
  font-style: normal; font-family: var(--body); font-weight: 700;
  font-size: .6rem; letter-spacing: .28em; color: var(--ink4);
  text-transform: uppercase; margin-top:2px;
}

/* Search */
.masthead__search {
  flex: 1; max-width: 400px; margin: 0 auto;
  display: flex; align-items: center;
  background: var(--paper); border: 1.5px solid var(--rule);
  border-radius: 3px; overflow: hidden; transition: border-color .2s, box-shadow .2s;
}
.masthead__search:focus-within {
  border-color: var(--red); box-shadow: 0 0 0 3px rgba(200,16,46,.1);
}
.masthead__search input {
  flex: 1; border: 0; padding: 9px 16px;
  font-family: var(--body); font-size: .88rem;
  background: transparent; outline: none; color: var(--ink);
}
.masthead__search input::placeholder { color: var(--ink4); }
.masthead__search button {
  border: 0; background: none; color: var(--ink4); cursor: pointer;
  padding: 0 14px; height: 100%; display: flex; align-items: center;
  transition: color .15s; flex-shrink: 0;
}
.masthead__search button:hover { color: var(--red); }

/* Burger */
.burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: 1.5px solid var(--rule);
  cursor: pointer; padding: 8px 9px; border-radius: 3px;
  margin-left: auto; transition: border-color .15s; flex-shrink: 0;
}
.burger:hover { border-color: var(--red); }
.burger span { width: 20px; height: 2px; background: var(--ink); border-radius: 2px; display:block; transition: all .25s; }
.burger.is-open span:nth-child(1) { transform:rotate(45deg) translate(5px,5px); }
.burger.is-open span:nth-child(2) { opacity:0; }
.burger.is-open span:nth-child(3) { transform:rotate(-45deg) translate(5px,-5px); }

/* ── SITE NAV ────────────────────────────────────────────────── */
.sitenav {
  background: var(--navy);
  border-bottom: 3px solid var(--red);
}
.sitenav__inner {
  max-width: var(--maxw); margin: 0 auto; padding: 0 40px;
  display: flex; align-items: center;
  overflow-x: auto; scrollbar-width: none;
}
.sitenav__inner::-webkit-scrollbar { display:none; }
.sitenav__link {
  font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .07em;
  color: rgba(255,255,255,.5); padding: 0 14px; height: 42px;
  display: flex; align-items: center; white-space: nowrap; flex-shrink: 0;
  border-bottom: 3px solid transparent; margin-bottom: -3px;
  transition: color .15s, border-color .15s;
  position: relative;
}
.sitenav__link:hover { color: rgba(255,255,255,.9); }
.sitenav__link.is-active { color: #fff; border-bottom-color: var(--red); }
/* Thin dividers between links */
.sitenav__link + .sitenav__link::before {
  content: "";
  position: absolute; left: 0; top: 30%; height: 40%;
  width: 1px; background: rgba(255,255,255,.1);
}

/* ── MOBILE DRAWER ───────────────────────────────────────────── */
.drawer {
  position: fixed; top: 0; right: 0; bottom: 0; width: 280px;
  background: var(--navy); z-index: 400;
  transform: translateX(100%); transition: transform .26s cubic-bezier(.4,0,.2,1);
  display: flex; flex-direction: column; overflow-y: auto;
}
.drawer.is-open { transform: translateX(0); }
.drawer-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,.55); z-index: 399;
}
.drawer-overlay.is-open { display: block; }
.drawer__head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px; border-bottom: 1px solid rgba(255,255,255,.08);
}
.drawer__brand { font-family:var(--head); font-weight:900; font-size:1rem; color:#fff; }
.drawer__close {
  background: none; border: 0; color: rgba(255,255,255,.4);
  cursor: pointer; padding: 4px; transition: color .15s;
  display: flex; align-items: center;
}
.drawer__close:hover { color: #fff; }
.drawer__body { flex: 1; padding: 10px 0; }
.drawer__link {
  display: block; padding: 11px 20px;
  font-size: .82rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em;
  color: rgba(255,255,255,.5); border-left: 3px solid transparent;
  transition: color .15s, background .15s, border-color .15s;
}
.drawer__link:hover, .drawer__link.is-active { color: #fff; border-left-color: var(--red); background: rgba(255,255,255,.04); }
.drawer__foot {
  padding: 14px 20px 20px; border-top: 1px solid rgba(255,255,255,.08);
}
.drawer__foot form { display:flex; gap:0; }
.drawer__foot input { flex:1; padding:8px 12px; border:0; font-family:var(--body); font-size:.84rem; background:rgba(255,255,255,.08); color:#fff; outline:none; }
.drawer__foot input::placeholder { color:rgba(255,255,255,.25); }
.drawer__foot button { padding:8px 14px; background:var(--red); color:#fff; border:0; font-weight:700; font-family:var(--body); font-size:.78rem; cursor:pointer; transition:background .15s; }
.drawer__foot button:hover { background:var(--red-dk); }

/* ── LABEL / CAT ─────────────────────────────────────────────── */
.label {
  font-family: var(--body); font-size: .65rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em; color: var(--red);
}
.label--white { color: rgba(255,255,255,.8); }
.label--gold  { color: var(--gold); }

.cat {
  display: inline-block; font-size: .64rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em; color: var(--cat, var(--red));
  margin-bottom: 8px; cursor: pointer;
}
.cat--line::after { content:""; display:inline-block; width:18px; height:1px; background:var(--cat, var(--red)); vertical-align:middle; margin-left:8px; }

/* ── STORY META ──────────────────────────────────────────────── */
.story-meta { font-size: .72rem; color: var(--ink4); display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.story-meta .who { color: var(--ink2); font-weight: 600; }
.story-meta-dot { opacity: .4; }

/* ── FRONT LEAD ──────────────────────────────────────────────── */
.front-lead { border-bottom: 1px solid var(--rule); background: var(--white); }
.front-lead-inner {
  display: grid; grid-template-columns: 1fr 1fr; min-height: 520px;
  max-width: var(--maxw); margin: 0 auto;
}
.front-lead-text {
  padding: 48px 48px 48px 40px; display: flex; flex-direction: column; justify-content: center;
  border-right: 1px solid var(--rule);
}
.front-lead-eyebrow { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.eyebrow-line { height: 2px; width: 36px; background: var(--red); flex-shrink: 0; }
.front-lead-headline {
  font-family: var(--head); font-size: 3.4rem; font-weight: 900; line-height: 1.05;
  letter-spacing: -.022em; color: var(--ink); margin-bottom: 20px;
}
.front-lead-headline a { color: var(--ink); }
.front-lead-headline a:hover { color: var(--red); }
.front-lead-deck { font-size: 1.08rem; color: var(--ink2); line-height: 1.65; margin-bottom: 22px; }
.front-lead-byline { font-size: .78rem; color: var(--ink4); display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.front-lead-byline .who { color: var(--ink2); font-weight: 600; }
.front-lead-image { position: relative; overflow: hidden; }
.front-lead-image img { width: 100%; height: 100%; min-height: 520px; object-fit: cover; transition: transform .5s; }
.front-lead:hover .front-lead-image img { transform: scale(1.02); }

/* ── STORY STRIP (4-headline bar) ────────────────────────────── */
.story-strip { border-bottom: 1px solid var(--rule); background: var(--white); }
.story-strip-inner {
  display: grid; grid-template-columns: repeat(4, 1fr);
  max-width: var(--maxw); margin: 0 auto; padding: 0 40px;
}
.strip-item { padding: 24px 22px; border-right: 1px solid var(--rule); }
.strip-item:first-child { padding-left: 0; }
.strip-item:last-child  { border-right: 0; padding-right: 0; padding-left: 22px; }
.strip-item:not(:first-child):not(:last-child) { padding-left: 22px; }
.strip-item-cat { margin-bottom: 9px; }
.strip-item-title { font-family: var(--head); font-size: 1.2rem; font-weight: 700; line-height: 1.28; letter-spacing: -.01em; margin-bottom: 9px; }
.strip-item-title a:hover { color: var(--red); }
.strip-item-meta { font-size: .71rem; color: var(--ink4); }

/* ── MOST READ BAND ──────────────────────────────────────────── */
.most-read-band { background: var(--navy); padding: 32px 0; border-bottom: 4px solid var(--red); }
.most-read-inner {
  max-width: var(--maxw); margin: 0 auto; padding: 0 40px;
  display: grid; grid-template-columns: auto 1fr; gap: 50px; align-items: start;
}
.most-read-label {
  writing-mode: vertical-rl; text-orientation: mixed; transform: rotate(180deg);
  font-size: .63rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--gold); padding-right: 20px; border-right: 2px solid rgba(255,255,255,.1);
}
.most-read-list { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; }
.mr-item { padding: 0 24px 0 0; border-right: 1px solid rgba(255,255,255,.1); margin-right: 24px; }
.mr-item:last-child { border-right: 0; margin-right: 0; padding-right: 0; }
.mr-num { font-family: var(--head); font-size: 2.8rem; font-weight: 900; color: rgba(255,255,255,.07); line-height: 1; margin-bottom: 8px; }
.mr-title { font-size: .87rem; font-weight: 600; line-height: 1.4; color: #c8d6e8; }
.mr-title a { color: inherit; }
.mr-title a:hover { color: #fff; }
.mr-meta { font-size: .68rem; color: #3d5c7a; margin-top: 7px; }

/* ── SECTION BLOCK ───────────────────────────────────────────── */
.section-block { padding: 44px 0; border-bottom: 1px solid var(--rule); }
.section-header {
  max-width: var(--maxw); margin: 0 auto 28px; padding: 0 40px;
  display: flex; align-items: baseline; justify-content: space-between; gap: 20px;
}
.section-title-group { display: flex; align-items: baseline; gap: 20px; }
.section-name { font-family: var(--head); font-size: 1.8rem; font-weight: 900; letter-spacing: -.02em; line-height: 1; color: var(--ink); }
.section-tagline { font-size: .77rem; color: var(--ink4); border-left: 1px solid var(--rule); padding-left: 18px; line-height: 1.5; max-width: 200px; }
.section-more {
  font-size: .71rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em;
  color: var(--ink3); border-bottom: 1px solid var(--ink3); padding-bottom: 1px;
  flex-shrink: 0; white-space: nowrap; transition: color .15s, border-color .15s;
}
.section-more:hover { color: var(--red); border-color: var(--red); }

/* Asymmetric grid: big left + stacked right */
.stories-asym {
  max-width: var(--maxw); margin: 0 auto; padding: 0 40px;
  display: grid; grid-template-columns: 1.15fr 1px 1fr; gap: 0;
}
.asym-main { padding-right: 36px; }
.asym-divider { background: var(--rule); }
.asym-stack { padding-left: 36px; display: flex; flex-direction: column; }

/* Story: big */
.story-big .story-img { width: 100%; aspect-ratio: 3/2; object-fit: cover; margin-bottom: 16px; transition: opacity .3s; }
.story-big:hover .story-img { opacity: .92; }
.story-title--big { font-family: var(--head); font-size: 2rem; font-weight: 800; line-height: 1.14; letter-spacing: -.02em; margin-bottom: 11px; }
.story-title--big a { color: var(--ink); }
.story-title--big a:hover { color: var(--red); }
.story-deck { font-size: .94rem; color: var(--ink2); line-height: 1.6; margin-bottom: 12px; }

/* Story: small (right stack) */
.story-small {
  padding: 18px 0; border-bottom: 1px solid var(--rule);
  display: grid; grid-template-columns: 1fr 118px; gap: 16px; align-items: start;
}
.story-small:first-child { padding-top: 0; }
.story-small:last-child  { border-bottom: 0; padding-bottom: 0; }
.story-small .story-title { font-family: var(--head); font-size: 1.12rem; font-weight: 700; line-height: 1.28; letter-spacing: -.01em; margin-bottom: 7px; }
.story-small .story-title a { color: var(--ink); }
.story-small .story-title a:hover { color: var(--red); }
.story-small .story-img { width: 118px; height: 88px; object-fit: cover; flex-shrink: 0; }
.story-small .story-deck { font-size: .82rem; color: var(--ink3); line-height: 1.5; margin-bottom: 8px; }

/* ── FULL-WIDTH FEATURE ──────────────────────────────────────── */
.full-feature { position: relative; height: 460px; overflow: hidden; border-top: 3px solid var(--red); }
.full-feature img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.5); }
.full-feature-text {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  justify-content: flex-end; padding: 48px 80px; max-width: 880px;
}
.full-feature-title { font-family: var(--head); font-size: 3rem; font-weight: 900; color: #fff; line-height: 1.08; letter-spacing: -.025em; margin-bottom: 15px; }
.full-feature-deck  { font-size: 1.04rem; color: rgba(255,255,255,.75); line-height: 1.6; max-width: 620px; margin-bottom: 20px; }
.read-more-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--red); color: #fff; font-size: .74rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em; padding: 10px 20px; border-radius: 2px;
  width: fit-content; transition: background .15s;
}
.read-more-btn:hover { background: var(--red-dk); color: #fff; }
.read-more-btn::after { content:"→"; font-size: 1rem; }

/* ── 4-COLUMN GRID ───────────────────────────────────────────── */
.grid-4 {
  max-width: var(--maxw); margin: 0 auto; padding: 0 40px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
}
.g4-item { padding: 0 24px 0 0; border-right: 1px solid var(--rule); margin-right: 24px; }
.g4-item:last-child { border-right: 0; margin-right: 0; padding-right: 0; }
.g4-img { width: 100%; aspect-ratio: 16/10; object-fit: cover; margin-bottom: 13px; transition: opacity .25s; }
.g4-item:hover .g4-img { opacity: .88; }
.g4-title { font-family: var(--head); font-size: 1.12rem; font-weight: 700; line-height: 1.28; letter-spacing: -.01em; margin-bottom: 8px; }
.g4-title a { color: var(--ink); }
.g4-title a:hover { color: var(--red); }
.g4-deck { font-size: .82rem; color: var(--ink3); line-height: 1.5; margin-bottom: 9px; }

/* ── STORY DEFAULT (generic grid use) ────────────────────────── */
.story-default { }
.story-default__img { width: 100%; aspect-ratio: 16/10; object-fit: cover; margin-bottom: 13px; }
.story-default__title { font-family: var(--head); font-size: 1.1rem; font-weight: 700; line-height: 1.3; margin-bottom: 8px; }
.story-default__title a { color: var(--ink); }
.story-default__title a:hover { color: var(--red); }
.story-default__deck { font-size: .83rem; color: var(--ink3); line-height: 1.5; margin-bottom: 9px; }

/* ── STORY MINIMAL ───────────────────────────────────────────── */
.story-minimal { padding: 14px 0; border-bottom: 1px solid var(--rule); }
.story-minimal:last-child { border-bottom: 0; }
.story-minimal__title { font-family: var(--head); font-size: .95rem; font-weight: 700; line-height: 1.3; margin-bottom: 6px; }
.story-minimal__title a { color: var(--ink); }
.story-minimal__title a:hover { color: var(--red); }

/* ── PAGE HEAD (category / listing header) ───────────────────── */
.page-head {
  background: var(--navy); color: #fff; padding: 0;
  border-bottom: 4px solid var(--cat, var(--red));
}
.page-head-inner { max-width: var(--maxw); margin: 0 auto; padding: 38px 40px; }
.page-head-title { font-family: var(--head); font-size: 2.6rem; font-weight: 900; letter-spacing: -.025em; margin-top: 6px; }
.page-head-desc  { color: #7a90ae; margin-top: 8px; font-size: .95rem; max-width: 600px; }

/* ── ARTICLE / POST PAGE ─────────────────────────────────────── */
.post-hero { position: relative; background: var(--ink); }
.post-hero-img img { width: 100%; max-height: 540px; object-fit: cover; opacity: .68; }
.post-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(14,14,14,.95) 0%, rgba(14,14,14,.5) 55%, transparent 100%);
  display: flex; flex-direction: column; justify-content: flex-end; padding-bottom: 36px;
}
.post-cat {
  display: inline-flex; align-items: center; background: var(--cat, var(--red)); color: #fff;
  font-size: .64rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em;
  padding: 4px 11px; border-radius: 2px; margin-bottom: 12px; width: fit-content;
}
.post-title { font-family: var(--head); font-size: 2.8rem; font-weight: 900; line-height: 1.12; color: #fff; letter-spacing: -.025em; max-width: 860px; margin-bottom: 12px; }
.post-standfirst { font-size: 1.05rem; color: rgba(255,255,255,.7); max-width: 680px; margin-bottom: 14px; line-height: 1.6; }
.post-byline { font-size: .78rem; color: rgba(255,255,255,.5); display: flex; align-items: center; flex-wrap: wrap; gap: 8px; }
.post-byline .who { color: var(--gold); font-weight: 700; }

.post-layout { padding: 36px 40px 52px; display: grid; grid-template-columns: 1fr; max-width: 840px; }
.post-main {  }

.post-share { display:flex; align-items:center; gap:8px; flex-wrap:wrap; padding-bottom:18px; border-bottom:1px solid var(--rule); margin-bottom:24px; }
.post-share-label { font-weight:700; font-size:.7rem; text-transform:uppercase; letter-spacing:.08em; color:var(--ink4); }
.post-share a, .post-copy { font-size:.73rem; font-weight:600; padding:6px 13px; border:1px solid var(--rule); background:transparent; cursor:pointer; font-family:var(--body); color:var(--ink2); border-radius:2px; transition:all .15s; }
.post-share a:hover, .post-copy:hover { background:var(--ink); color:#fff; border-color:var(--ink); }

.post-body.article-body { font-size: 1.06rem; line-height: 1.84; color: var(--ink2); }
.article-body p  { margin-bottom: 1.2rem; }
.article-body h2 { font-family:var(--head); font-weight:800; font-size:1.6rem; margin:1.9rem 0 .8rem; letter-spacing:-.02em; color:var(--ink); }
.article-body h3 { font-family:var(--head); font-weight:700; font-size:1.25rem; margin:1.5rem 0 .6rem; }
.article-body a  { color:var(--red); text-decoration:underline; text-underline-offset:2px; }
.article-body a.kw-link { text-decoration:none; border-bottom:1px dotted var(--red); }
.article-body ul, .article-body ol { margin:0 0 1.2rem 1.5rem; }
.article-body li { margin-bottom:.45rem; }
.article-body blockquote { border-left:4px solid var(--red); padding:.4rem 0 .4rem 1.4rem; margin:1.5rem 0; font-style:italic; color:var(--ink3); font-size:1.14rem; font-family:var(--head); line-height:1.65; }
.article-body img { margin:1.5rem 0; width:100%; }
.article-body video { width:100%; margin:1.5rem 0; }

.post-tags { display:flex; flex-wrap:wrap; gap:8px; margin:28px 0; }
.tag-pill { font-size:.73rem; font-weight:600; padding:5px 13px; border:1px solid var(--rule); border-radius:2px; color:var(--ink2); transition:all .15s; }
.tag-pill:hover { background:var(--red); color:#fff; border-color:var(--red); }

.post-resources { background:var(--paper2); border-left:4px solid var(--red); padding:16px 20px; margin:24px 0; }
.post-resources h3 { font-weight:700; font-size:.86rem; text-transform:uppercase; letter-spacing:.06em; margin-bottom:10px; color:var(--ink2); }
.post-resources ul { list-style:none; }
.post-resources li { padding:5px 0; border-bottom:1px solid var(--rule); font-size:.9rem; }
.post-resources li:last-child { border-bottom:0; }
.post-resources a { color:var(--red); font-weight:600; }

.post-reporter { background:var(--navy); color:#fff; padding:20px 24px; border-radius:2px; margin:24px 0; }
.post-reporter-label { font-size:.65rem; font-weight:700; text-transform:uppercase; letter-spacing:.1em; color:var(--gold); display:block; margin-bottom:4px; }
.post-reporter strong { font-size:1.1rem; display:block; margin-bottom:5px; }
.post-reporter p { font-size:.86rem; color:#4e677e; }

.post-nav { display:grid; grid-template-columns:1fr 1fr; gap:16px; margin:24px 0; }
.post-nav-link { border:1px solid var(--rule); padding:14px 16px; transition:border-color .15s; }
.post-nav-link:hover { border-color:var(--red); }
.post-nav-link span { font-size:.68rem; color:var(--red); font-weight:700; text-transform:uppercase; letter-spacing:.06em; display:block; }
.post-nav-link strong { display:block; font-size:.9rem; margin-top:4px; color:var(--ink2); font-weight:600; line-height:1.35; }
.post-nav-link--next { text-align:right; }

.post-video { position:relative; padding-bottom:56.25%; margin-bottom:24px; }
.post-video iframe { position:absolute; inset:0; width:100%; height:100%; border:0; }

/* Comments */
.comments { margin-top:32px; padding-top:24px; border-top:2px solid var(--ink); }
.comments-title { font-family:var(--head); font-size:1.4rem; font-weight:800; margin-bottom:18px; }
.comments-title span { color:var(--ink4); font-weight:500; font-size:1.1rem; }
.comments-note { background:var(--paper2); padding:13px 16px; font-size:.9rem; color:var(--ink3); }
.comments-note a { color:var(--red); font-weight:600; }
.comment-form textarea { width:100%; border:1.5px solid var(--rule); padding:12px 14px; font-family:var(--body); font-size:.95rem; margin-bottom:11px; resize:vertical; outline:none; transition:border-color .15s; }
.comment-form textarea:focus { border-color:var(--red); }
.comment-list { list-style:none; }
.comment { display:flex; gap:14px; padding:16px 0; border-bottom:1px solid var(--rule); }
.comment:last-child { border-bottom:0; }
.comment-avatar { width:40px; height:40px; border-radius:50%; background:var(--red); color:#fff; display:flex; align-items:center; justify-content:center; font-weight:700; font-size:1rem; flex-shrink:0; }
.comment-head { display:flex; gap:10px; align-items:baseline; margin-bottom:4px; }
.comment-head strong { font-size:.88rem; }
.comment-head span { font-size:.72rem; color:var(--ink4); }
.comment p { font-size:.9rem; color:var(--ink3); }

/* ── BUTTONS ─────────────────────────────────────────────────── */
.btn-primary { display:inline-flex; align-items:center; justify-content:center; padding:11px 22px; background:var(--red); color:#fff; font-weight:700; font-size:.85rem; font-family:var(--body); text-transform:uppercase; letter-spacing:.06em; border:0; border-radius:2px; cursor:pointer; transition:background .15s; }
.btn-primary:hover { background:var(--red-dk); color:#fff; }
.btn-outline { display:inline-flex; align-items:center; justify-content:center; padding:11px 22px; background:transparent; border:1.5px solid var(--rule); color:var(--ink2); font-weight:700; font-size:.85rem; font-family:var(--body); text-transform:uppercase; letter-spacing:.06em; border-radius:2px; cursor:pointer; transition:all .15s; }
.btn-outline:hover { border-color:var(--red); color:var(--red); }

/* ── FORMS ───────────────────────────────────────────────────── */
.form label { display:block; font-weight:600; font-size:.84rem; margin-bottom:14px; color:var(--ink2); }
.form input, .form textarea { width:100%; border:1.5px solid var(--rule); padding:11px 13px; font-family:var(--body); font-size:.95rem; margin-top:5px; outline:none; transition:border-color .15s; background:var(--white); }
.form input:focus, .form textarea:focus { border-color:var(--red); }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.hp-field { position:absolute; left:-9999px; }

.search-page-form { display:flex; gap:0; max-width:540px; margin-bottom:22px; }
.search-page-form input { flex:1; border:1.5px solid var(--rule); padding:11px 14px; font-family:var(--body); font-size:.95rem; outline:none; }
.search-page-form input:focus { border-color:var(--red); }
.search-page-form button { padding:11px 20px; background:var(--red); color:#fff; border:0; font-weight:700; font-family:var(--body); font-size:.85rem; cursor:pointer; transition:background .15s; }
.search-page-form button:hover { background:var(--red-dk); }
.search-count { font-size:.88rem; color:var(--ink4); font-weight:600; margin-bottom:20px; }

/* Auth */
.auth-wrap { padding:56px 20px; display:flex; justify-content:center; background:var(--paper); }
.auth-card { background:var(--white); border:1px solid var(--rule); padding:36px 38px; max-width:400px; width:100%; }
.auth-title { font-family:var(--head); font-size:2rem; font-weight:900; letter-spacing:-.02em; margin-bottom:4px; }
.auth-sub { color:var(--ink4); margin-bottom:24px; font-size:.92rem; }
.auth-foot { text-align:center; margin-top:16px; font-size:.88rem; color:var(--ink4); }
.auth-foot a { color:var(--red); font-weight:600; }

/* Contact */
.contact-grid { display:grid; grid-template-columns:1.6fr 1fr; gap:36px; }
.contact-form-wrap { background:var(--white); border:1px solid var(--rule); padding:28px 30px; }
.contact-info { background:var(--white); border:1px solid var(--rule); padding:24px; height:fit-content; }
.contact-info h3 { font-family:var(--head); font-weight:800; font-size:1.2rem; margin-bottom:16px; padding-bottom:10px; border-bottom:2px solid var(--ink); }
.contact-info p { font-size:.88rem; margin-bottom:14px; color:var(--ink3); }
.contact-info strong { display:block; font-size:.68rem; text-transform:uppercase; letter-spacing:.08em; color:var(--red); margin-bottom:3px; }
.contact-success { background:#e6f7ee; color:#1a5e35; padding:13px 16px; font-weight:600; }

/* Static page */
.static-page { padding:40px 40px 60px; }
.static-body { max-width:720px; font-size:1.03rem; line-height:1.82; color:var(--ink2); }

/* Media */
.media-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:32px; }
.media-card { border:1px solid var(--rule); background:var(--white); }
.media-thumb { aspect-ratio:16/9; overflow:hidden; background:var(--ink); }
.media-thumb img { width:100%; height:100%; object-fit:cover; opacity:.8; }
.media-thumb--audio { background:linear-gradient(135deg,#3b0764,#7c3aed); display:flex; align-items:center; justify-content:center; font-size:2rem; color:rgba(255,255,255,.3); }
.media-embed { position:relative; padding-bottom:56.25%; }
.media-embed iframe { position:absolute; inset:0; width:100%; height:100%; border:0; }
.media-body { padding:16px; }
.media-body h3 { font-family:var(--head); font-size:1.05rem; font-weight:700; margin:6px 0 8px; line-height:1.3; }
.media-body h3 a { color:var(--ink); }
.media-body h3 a:hover { color:var(--red); }
.media-body p { font-size:.83rem; color:var(--ink3); line-height:1.5; margin-bottom:10px; }
.media-body audio { width:100%; }

/* Pagination */
.pager { display:flex; justify-content:center; gap:4px; flex-wrap:wrap; padding:36px 0; }
.pager-link { font-size:.83rem; font-weight:700; padding:8px 15px; border:1.5px solid var(--rule); color:var(--ink2); background:var(--white); transition:all .15s; }
.pager-link:hover { background:var(--ink); color:#fff; border-color:var(--ink); }
.pager-link.is-active { background:var(--red); color:#fff; border-color:var(--red); }
.pager-gap { padding:8px 5px; color:var(--ink4); }

/* Error */
.error-page { text-align:center; padding:90px 20px; }
.error-code  { font-family:var(--head); font-size:7rem; font-weight:900; color:var(--red); line-height:1; }
.error-title { font-family:var(--head); font-size:2rem; font-weight:800; margin:10px 0 12px; }
.error-text  { color:var(--ink3); margin-bottom:26px; font-size:1rem; }
.error-actions { display:flex; gap:12px; justify-content:center; }

/* Empty */
.empty-note { color:var(--ink4); padding:40px 0; font-size:.95rem; }

/* Footer */
.site-footer { background: var(--ink); color: #666; }
.footer-top {
  display: grid; grid-template-columns: 1.8fr 1px repeat(3, 1fr); gap: 0;
  max-width: var(--maxw); margin: 0 auto; padding: 52px 40px 44px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.footer-brand { padding-right: 48px; }
.footer-wm { font-family:var(--head); font-size:1.6rem; font-weight:900; color:#fff; margin-bottom:14px; }
.footer-wm span { color:var(--red); }
.footer-about { font-size:.84rem; line-height:1.7; color:#444; margin-bottom:20px; max-width:300px; }
.footer-socials { display:flex; gap:6px; }
.footer-socials a { width:34px; height:34px; background:rgba(255,255,255,.06); display:flex; align-items:center; justify-content:center; font-size:.78rem; font-weight:700; color:#555; border-radius:2px; transition:all .15s; }
.footer-socials a:hover { background:var(--red); color:#fff; }
.footer-col-div { background:rgba(255,255,255,.07); }
.footer-col { padding:0 32px; }
.footer-col h4 { font-size:.7rem; font-weight:700; text-transform:uppercase; letter-spacing:.12em; color:#fff; margin-bottom:16px; padding-bottom:10px; border-bottom:1px solid rgba(255,255,255,.07); }
.footer-col ul { list-style:none; }
.footer-col li { margin-bottom:9px; }
.footer-col a { font-size:.84rem; color:#444; transition:color .15s; }
.footer-col a:hover { color:#ccc; }
.footer-stats { display:grid; grid-template-columns:1fr 1fr; gap:10px; }
.footer-stat { background:rgba(255,255,255,.04); padding:12px; text-align:center; }
.footer-stat strong { display:block; font-size:1.35rem; color:#fff; font-weight:800; }
.footer-stat span { font-size:.7rem; color:#444; }
.footer-bottom { max-width:var(--maxw); margin:0 auto; padding:14px 40px; display:flex; justify-content:space-between; align-items:center; font-size:.74rem; color:#2e2e2e; }
.footer-bottom nav { display:flex; gap:20px; }
.footer-bottom a { color:#2e2e2e; transition:color .15s; }
.footer-bottom a:hover { color:#888; }

/* ── NEWSLETTER SECTION ──────────────────────────────────────── */
.nl-section {
  background: var(--navy); padding: 52px 0;
  position: relative; overflow: hidden;
}
.nl-section::before {
  content:""; position:absolute; top:-100px; right:-100px;
  width:500px; height:500px; border-radius:50%;
  background: radial-gradient(circle, rgba(200,16,46,.15) 0%, transparent 65%);
  pointer-events:none;
}
.nl-section::after {
  content:""; position:absolute; top:0; left:0;
  width:4px; height:100%; background:var(--red);
}
.nl-section__inner {
  max-width:var(--maxw); margin:0 auto; padding:0 40px;
  display:grid; grid-template-columns:1fr 1fr; gap:64px; align-items:center;
  position:relative; z-index:1;
}
.nl-section__kicker {
  font-size:.65rem; font-weight:700; text-transform:uppercase;
  letter-spacing:.16em; color:var(--gold); margin-bottom:14px;
  display:flex; align-items:center; gap:10px;
}
.nl-section__kicker::after { content:""; flex:0 0 40px; height:1px; background:rgba(255,255,255,.12); }
.nl-section__title { font-family:var(--head); font-size:2.4rem; font-weight:900; color:#fff; line-height:1.08; letter-spacing:-.025em; margin-bottom:10px; }
.nl-section__desc { font-size:.92rem; color:#7a90ae; line-height:1.65; }
.nl-section__input-row {
  display:flex; border-radius:3px; overflow:hidden; margin-bottom:10px;
  box-shadow:0 8px 32px rgba(0,0,0,.35);
}
.nl-section__input-row input { flex:1; padding:14px 18px; border:0; font-family:var(--body); font-size:.9rem; outline:none; color:var(--ink); }
.nl-section__input-row input::placeholder { color:var(--ink4); }
.nl-section__input-row button {
  display:flex; align-items:center; gap:7px;
  padding:0 22px; background:var(--red); color:#fff; border:0;
  font-weight:800; font-size:.8rem; text-transform:uppercase; letter-spacing:.06em;
  cursor:pointer; font-family:var(--body); white-space:nowrap; transition:background .15s;
}
.nl-section__input-row button:hover { background:var(--red-dk); }
.nl-section__fine { font-size:.7rem; color:rgba(255,255,255,.22); }

/* ── FOOTER ──────────────────────────────────────────────────── */
.site-footer { background:#070d18; }

/* Brand stripe */
.footer-stripe {
  background:#0a1220; border-bottom:1px solid rgba(255,255,255,.06);
  padding:26px 0;
}
.footer-stripe__inner {
  max-width:var(--maxw); margin:0 auto; padding:0 40px;
  display:flex; align-items:center; gap:28px;
}
.footer-stripe__logo { max-height:38px; }
.footer-stripe__wordmark { display:flex; align-items:center; gap:8px; }
.footer-stripe__boxes { display:flex; gap:2px; }
.footer-stripe__boxes span {
  width:32px; height:32px; background:rgba(255,255,255,.08); color:#fff;
  font-family:var(--head); font-weight:900; font-size:1rem;
  display:flex; align-items:center; justify-content:center; border-radius:3px;
}
.footer-stripe__nameblock { display:flex; flex-direction:column; line-height:1; padding-left:8px; border-left:1px solid rgba(255,255,255,.1); }
.footer-stripe__nameblock b { font-family:var(--head); font-weight:900; font-size:.82rem; letter-spacing:.18em; color:#fff; text-transform:uppercase; }
.footer-stripe__nameblock i { font-style:normal; font-weight:700; font-size:.54rem; letter-spacing:.28em; color:rgba(255,255,255,.28); text-transform:uppercase; margin-top:2px; }
.footer-stripe__tagline { flex:1; font-size:.8rem; color:rgba(255,255,255,.28); line-height:1.55; max-width:340px; }
.footer-stripe__socials { display:flex; gap:7px; margin-left:auto; }
.footer-social-btn {
  width:34px; height:34px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  color:rgba(255,255,255,.5); transition:all .2s;
  background:rgba(255,255,255,.06);
}
.footer-social-btn:hover { transform:translateY(-2px); color:#fff; background:var(--red); }

/* Main cols */
.footer-main { padding:44px 0 32px; border-bottom:1px solid rgba(255,255,255,.05); }
.footer-main__inner {
  max-width:var(--maxw); margin:0 auto; padding:0 40px;
  display:grid; grid-template-columns:repeat(3,1fr); gap:44px;
}
.footer-col__head {
  display:flex; align-items:center; gap:10px; margin-bottom:18px;
}
.footer-col__head span {
  font-size:.66rem; font-weight:700; text-transform:uppercase;
  letter-spacing:.12em; color:rgba(255,255,255,.55); white-space:nowrap;
}
.footer-col__rule { flex:1; height:1px; background:rgba(255,255,255,.07); }
.footer-col__list { list-style:none; }
.footer-col__list li { margin-bottom:9px; }
.footer-col__list a {
  font-size:.83rem; color:rgba(255,255,255,.32);
  transition:color .15s; display:flex; align-items:center; gap:7px;
}
.footer-col__list a::before {
  content:""; width:3px; height:3px; border-radius:50%;
  background:var(--red); opacity:0; flex-shrink:0; transition:opacity .15s;
}
.footer-col__list a:hover { color:rgba(255,255,255,.8); }
.footer-col__list a:hover::before { opacity:1; }

/* Stats */
.footer-stats { display:grid; grid-template-columns:1fr 1fr; gap:10px; margin-bottom:18px; }
.footer-stat {
  background:rgba(255,255,255,.04); border:1px solid rgba(255,255,255,.06);
  border-top:2px solid var(--red); padding:14px; text-align:center;
}
.footer-stat strong { display:block; font-family:var(--head); font-size:1.5rem; font-weight:900; color:#fff; line-height:1; margin-bottom:4px; }
.footer-stat span { font-size:.63rem; font-weight:700; text-transform:uppercase; letter-spacing:.1em; color:rgba(255,255,255,.22); }

.footer-email {
  display:flex; align-items:center; gap:8px; font-size:.8rem;
  color:rgba(255,255,255,.3); border:1px solid rgba(255,255,255,.07);
  padding:9px 12px; border-radius:2px; transition:all .15s;
}
.footer-email:hover { color:#fff; border-color:rgba(255,255,255,.18); }
.footer-email svg { opacity:.5; flex-shrink:0; }

/* Bottom bar */
.footer-bottom { padding:14px 0; }
.footer-bottom__inner {
  max-width:var(--maxw); margin:0 auto; padding:0 40px;
  display:flex; justify-content:space-between; align-items:center; gap:14px;
}
.footer-bottom__copy { font-size:.72rem; color:rgba(255,255,255,.16); }
.footer-bottom__nav { display:flex; gap:18px; }
.footer-bottom__nav a { font-size:.72rem; color:rgba(255,255,255,.16); transition:color .15s; }
.footer-bottom__nav a:hover { color:rgba(255,255,255,.5); }

/* ── AUTH EXTRAS (notice, icon) ──────────────────────────────── */
.auth-icon { font-size:2.4rem; margin-bottom:14px; color:var(--gold); }
.auth-notice { padding:11px 14px; font-size:.88rem; font-weight:600; margin-bottom:18px; border-left:3px solid; }
.auth-notice--err { background:#fdeaea; color:#8b0000; border-color:var(--red); }
.auth-notice--ok  { background:#e6f7ee; color:#1a5e35; border-color:#1a5e35; }

/* ── HOME EMPTY STATE ────────────────────────────────────────── */
.home-empty {
  background: var(--white);
  border-bottom: 1px solid var(--rule);
  padding: 80px 40px;
  text-align: center;
}
.home-empty__inner { max-width: 480px; margin: 0 auto; }
.home-empty__icon  { font-size: 3rem; margin-bottom: 20px; }
.home-empty__title { font-family: var(--head); font-size: 2rem; font-weight: 900; margin-bottom: 12px; letter-spacing: -.02em; }
.home-empty__text  { font-size: 1rem; color: var(--ink3); line-height: 1.7; margin-bottom: 28px; }

/* ── RESPONSIVE ──────────────────────────────────────────────── */
/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════ */

/* ── 1100px: tablet landscape ──────────────────────────── */
@media (max-width:1100px) {
  .footer-main__inner { grid-template-columns:repeat(2,1fr); }
  .most-read-list { grid-template-columns:repeat(3,1fr); }
  .most-read-list .mr-item:nth-child(4),
  .most-read-list .mr-item:nth-child(5) { display:none; }
  .grid-4 { grid-template-columns:repeat(2,1fr); }
  .g4-item:nth-child(2) { border-right:0; margin-right:0; padding-right:0; }
  .g4-item:nth-child(3) { border-right:1px solid var(--rule); margin-right:24px; padding-right:24px; padding-top:24px; }
  .g4-item:nth-child(4) { padding-top:24px; }
}

/* ── 900px: tablet portrait ────────────────────────────── */
@media (max-width:900px) {
  /* Header */
  .topbar { display:none; }
  .masthead__inner { padding:0 20px; height:64px; }
  .masthead__search { max-width:none; flex:1; }
  .burger { display:flex; }
  .sitenav__inner { padding:0 12px; }
  .sitenav__link { padding:0 9px; font-size:.66rem; height:38px; }

  /* Footer newsletter */
  .nl-section__inner { grid-template-columns:1fr; gap:24px; padding:0 20px; }
  .nl-section__title { font-size:1.8rem; }

  /* Footer */
  .footer-stripe__inner { padding:0 20px; flex-wrap:wrap; gap:14px; }
  .footer-stripe__tagline { display:none; }
  .footer-stripe__socials { margin-left:0; }
  .footer-main__inner { padding:0 20px; gap:28px; }
  .footer-bottom__inner { padding:0 20px; }
  .ticker-inner { padding:0 20px; }

  /* Homepage hero */
  .front-lead-inner { grid-template-columns:1fr; min-height:auto; }
  .front-lead-text { padding:28px 20px; border-right:0; border-bottom:1px solid var(--rule); }
  .front-lead-headline { font-size:2rem; }
  .front-lead-image { height:280px; }
  .front-lead-image img { min-height:280px; }

  /* Story strip */
  .story-strip-inner { grid-template-columns:1fr 1fr; padding:0 20px; }
  .strip-item:nth-child(3),
  .strip-item:nth-child(4) { display:none; }
  .strip-item:nth-child(2) { border-right:0; }

  /* Most read */
  .most-read-inner { grid-template-columns:1fr; padding:0 20px; }
  .most-read-label { writing-mode:initial; transform:none; border-right:0; padding-right:0; padding-bottom:8px; border-bottom:1px solid rgba(255,255,255,.1); margin-bottom:14px; }

  /* Section blocks */
  .section-block { padding:28px 0; }
  .section-header { padding:0 20px; margin-bottom:20px; }
  .stories-asym { grid-template-columns:1fr; padding:0 20px; }
  .asym-divider { display:none; }
  .asym-main { padding-right:0; padding-bottom:22px; border-bottom:1px solid var(--rule); }
  .asym-stack { padding-left:0; padding-top:22px; }

  /* Full feature */
  .full-feature { height:320px; }
  .full-feature-text { padding:24px 20px; }
  .full-feature-title { font-size:1.6rem; }
  .full-feature-deck { display:none; }

  /* 4-col grid */
  .grid-4 { padding:0 20px; }

  /* Page head */
  .page-head-inner { padding:28px 20px; }
  .page-head-title { font-size:1.8rem; }

  /* Post */
  .post-layout { padding:24px 20px 40px; }
  .post-title { font-size:1.9rem; }
  .post-nav { grid-template-columns:1fr; }

  /* Static */
  .static-page, .w { padding-left:20px; padding-right:20px; }

  /* Misc */
  .contact-grid { grid-template-columns:1fr; }
  .form-row { grid-template-columns:1fr; }
}

/* ── 640px: mobile ──────────────────────────────────────── */
@media (max-width:640px) {
  /* Header */
  .masthead__search { display:none; }
  .masthead__inner { height:58px; }
  .logo-block__boxes span { width:32px; height:32px; font-size:1.1rem; }
  .logo-block__name b { font-size:.82rem; }
  .logo-block__name i { font-size:.52rem; }

  /* Ticker */
  .ticker-inner { padding:0 14px; }
  .ticker-tag { padding-right:10px; margin-right:10px; font-size:.58rem; }

  /* Nav — horizontal scroll on mobile */
  .sitenav { overflow-x:auto; }
  .sitenav__inner { justify-content:flex-start; padding:0 10px; gap:0; width:max-content; min-width:100%; }
  .sitenav__link { padding:0 10px; font-size:.64rem; height:36px; }

  /* Hero */
  .front-lead-text { padding:20px 16px; }
  .front-lead-headline { font-size:1.55rem; }
  .front-lead-deck { font-size:.9rem; }
  .front-lead-image { height:220px; }
  .front-lead-image img { min-height:220px; }

  /* Strip: show only 1 on very small screens */
  .story-strip-inner { grid-template-columns:1fr; padding:0 16px; }
  .strip-item:nth-child(2) { display:none; }
  .strip-item { padding:16px 0; border-right:0; border-bottom:1px solid var(--rule); }
  .strip-item:last-child { border-bottom:0; }

  /* Most read: 1 col */
  .most-read-inner { padding:0 16px; }
  .most-read-list { grid-template-columns:1fr; }
  .mr-item { border-right:0; border-bottom:1px solid rgba(255,255,255,.07); padding-bottom:14px; margin-bottom:14px; }
  .mr-item:last-child { border-bottom:0; margin-bottom:0; padding-bottom:0; }
  .most-read-list .mr-item:nth-child(4),
  .most-read-list .mr-item:nth-child(5) { display:flex; }

  /* Section blocks */
  .section-header { padding:0 16px; }
  .section-name { font-size:1.4rem; }
  .section-title-group { flex-direction:column; gap:4px; }
  .stories-asym { padding:0 16px; }
  .story-small { grid-template-columns:1fr; }
  .story-small .story-img { width:100%; height:180px; order:-1; }

  /* Full feature */
  .full-feature { height:260px; }
  .full-feature-text { padding:18px 16px; }
  .full-feature-title { font-size:1.3rem; }
  .read-more-btn { font-size:.7rem; padding:8px 14px; }

  /* Grid: 1 col */
  .grid-4 { grid-template-columns:1fr; padding:0 16px; gap:20px; }
  .g4-item { border-right:0; margin-right:0; padding-right:0; padding-top:0 !important; border-bottom:1px solid var(--rule); padding-bottom:20px; }
  .g4-item:last-child { border-bottom:0; padding-bottom:0; }

  /* Page head */
  .page-head-inner { padding:24px 16px; }
  .page-head-title { font-size:1.5rem; }

  /* Post */
  .post-layout { padding:20px 16px 36px; }
  .post-title { font-size:1.5rem; }
  .post-hero-img img { max-height:220px; }

  /* Article body */
  .article-body { font-size:.98rem; }
  .article-body h2 { font-size:1.3rem; }

  /* Newsletter */
  .nl-section { padding:32px 0; }
  .nl-section__inner { padding:0 16px; }
  .nl-section__title { font-size:1.5rem; }
  .nl-section__input-row { flex-direction:column; }
  .nl-section__input-row input { border-radius:3px 3px 0 0; }
  .nl-section__input-row button { border-radius:0 0 3px 3px; padding:13px; justify-content:center; }

  /* Footer */
  .footer-stripe__inner { flex-direction:column; align-items:flex-start; padding:20px 16px; gap:14px; }
  .footer-main__inner { grid-template-columns:1fr; padding:0 16px; }
  .footer-bottom__inner { flex-direction:column; gap:8px; text-align:center; padding:12px 16px; }

  /* Auth */
  .auth-card { padding:28px 20px; }

  /* Misc */
  .w { padding-left:16px; padding-right:16px; }
  .section-block { padding:22px 0; }
  .error-page { padding:60px 16px; }
  .error-code { font-size:5rem; }
  .error-title { font-size:1.5rem; }
  .pager { padding:24px 0; gap:3px; }
  .pager-link { padding:7px 12px; font-size:.8rem; }
}
