/* ============================================================
   TC Sentinel — Newspaper CSS
   NYT-inspired clean white layout
   ============================================================ */

/* ── Google Fonts ─────────────────────────────────────────── */
/* Cookbook rec: editorial serif (Fraunces) for headlines — distinctive, not generic */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400;1,700&family=Libre+Franklin:wght@300;400;600;700;900&family=EB+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,500;1,600&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400;1,600;1,700&display=swap');

/* ── CSS Custom Properties ────────────────────────────────── */
:root {
  --serif:         'Playfair Display', Georgia, serif;
  --serif-display: 'Cormorant Garamond', Georgia, serif;
  --body-serif:    'EB Garamond', Georgia, 'Times New Roman', serif;
  --sans:          'Libre Franklin', 'Franklin Gothic Medium', Arial, sans-serif;

  --ink:        #0f0f0f;
  --ink-mid:    #2e2e2e;
  --ink-light:  #666666;
  --rule:       #0f0f0f;
  --rule-light: #d8d4cc;
  --accent:     #8B1A1A;   /* TC Sentinel dark red — New Yorker crimson */
  --bg:         #FAF9F5;   /* warm cream — magazine paper, never pure white */
  --white:      #FAF9F5;

  --page-max:   1120px;
  --page-pad:   28px;
  --col-gap:    24px;
}

/* ── Reset ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; }
img  { display: block; max-width: 100%; }
a    { color: inherit; text-decoration: none; }

/* Headline links — inherit ink color, accent on hover */
.hero-headline a,
.stack-headline a,
.feat-headline a,
.small-headline a,
.lower-headline a,
.strip-headline a,
.strip-text-headline a,
.strip-feat-headline a,
.mn-headline a,
.mn-feat-headline a,
.mn-compact-headline a,
.article-headline a { color: var(--ink); }

.hero-headline a:hover,
.stack-headline a:hover,
.feat-headline a:hover,
.small-headline a:hover,
.lower-headline a:hover,
.strip-headline a:hover,
.strip-text-headline a:hover,
.strip-feat-headline a:hover,
.mn-headline a:hover,
.mn-feat-headline a:hover,
.mn-compact-headline a:hover,
.article-headline a:hover { color: var(--accent); }

body {
  background: #F0EDE6;   /* warm linen behind page — magazine shelf feel */
  color: var(--ink);
  font-family: var(--body-serif);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 17px;
}

/* ── Page Wrapper ─────────────────────────────────────────── */
.page {
  width: 100%;
  max-width: var(--page-max);
  margin: 0 auto;
  background: var(--bg);
  padding: 0 var(--page-pad) var(--page-pad);
}

/* ── Sticky Nav wrapper ───────────────────────────────────── */
#site-nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--bg);
  border-bottom: 1px solid var(--rule-light);
  transition: box-shadow 0.25s ease;
}
#site-nav.nav--scrolled {
  box-shadow: 0 2px 12px rgba(0,0,0,0.10);
}

/* ── Web Nav Bar — single horizontal bar ─────────────────── */
.web-nav-bar {
  display: flex;
  align-items: center;
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 0 var(--page-pad);
  height: 58px;
  gap: 16px;
}

/* Brand: owl circle + TC / SENTINEL stacked */
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

/* Double-border owl ring — nav size */
.owl-nav-frame {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--ink);
  padding: 3px;
  flex-shrink: 0;
}
.owl-nav-circle {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1px solid var(--ink);
  overflow: hidden;
  background: #fff;
}
.owl-nav-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 12%;
}

/* Stacked TC / SENTINEL name */
.nav-pub-name {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 2px;
}
.nav-pub-tc {
  font-family: var(--serif-display);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--ink);
  text-transform: uppercase;
}
.nav-pub-sentinel {
  font-family: var(--sans);
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  color: var(--ink-light);
  text-transform: uppercase;
}

/* Section links — flex centered */
.web-nav-sections {
  display: flex;
  align-items: center;
  flex: 1;
  justify-content: center;
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 600;
}
.web-nav-sections a {
  color: var(--ink);
  padding: 8px 11px;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  transition: color 0.15s, border-color 0.15s;
}
.web-nav-sections a:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

/* Utility actions: Archive / Search / PDF */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}
.nav-archive {
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--ink-mid);
  text-transform: uppercase;
  padding: 4px 8px;
  transition: color 0.15s;
}
.nav-archive:hover { color: var(--accent); }
.nav-search {
  display: inline-flex;
  align-items: center;
  color: var(--ink);
  padding: 4px 6px;
  transition: color 0.15s;
}
.nav-search:hover { color: var(--accent); }
.nav-pdf {
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 4px 10px;
  transition: background 0.15s, color 0.15s;
}
.nav-pdf:hover {
  background: var(--accent);
  color: var(--white);
}

/* ── Masthead ─────────────────────────────────────────────── */
.masthead {
  border-top: 3px solid var(--accent);
  border-bottom: 2px solid var(--rule);
  margin-bottom: 0;
  padding: 0;
  overflow: hidden;
}
.masthead-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 24px var(--page-pad);
}

/* Owl image — slightly taller than the wordmark */
.masthead-owl {
  height: 275px;
  width: auto;
  display: block;
  flex-shrink: 0;
  mix-blend-mode: multiply;
  position: relative;
  top: 25px;
}

/* Text block: wordmark + tagline + meta stacked */
.masthead-text-block {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

/* TC SENTINEL wordmark */
.masthead-wordmark {
  line-height: 1;
  white-space: nowrap;
}
.masthead-tc {
  font-family: var(--serif-display);
  font-size: clamp(2.8rem, 6.5vw, 5rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
  text-transform: uppercase;
  margin-right: 0.18em;
}
.masthead-sentinel {
  font-family: var(--serif-display);
  font-size: clamp(2.8rem, 6.5vw, 5rem);
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--ink);
  text-transform: uppercase;
}

/* Tagline */
.masthead-tagline {
  font-family: var(--sans);
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-light);
  font-weight: 400;
  margin-top: 2px;
}

/* Date / vol / city meta */
.masthead-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--sans);
  font-size: 0.65rem;
  color: var(--ink-light);
}
.masthead-meta-sep { opacity: 0.4; }

/* ── Masthead Slim (section pages) ───────────────────────── */
.masthead-slim {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid var(--rule-light);
  margin-bottom: 0;
  font-family: var(--sans);
  font-size: 0.7rem;
  color: var(--ink-light);
}
.masthead-slim .slim-name {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--ink);
  text-decoration: none;
}
.masthead-slim .slim-section {
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.65rem;
}
.masthead-slim .slim-date { margin-left: auto; }

/* ── Read More (front page teasers) ──────────────────────── */
.read-more {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 8px;
}
.read-more:hover { text-decoration: underline; }

/* ── Utility Strip (tides / weather / alerts) ─────────────── */
.utility-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 2px solid var(--rule);
  border-bottom: 1px solid var(--rule-light);
  margin-bottom: 18px;
  font-family: var(--sans);
  font-size: 0.72rem;
}
.utility-box {
  padding: 7px 14px 8px;
  border-right: 1px solid var(--rule-light);
}
.utility-box:last-child { border-right: none; }
.utility-label {
  font-weight: 700;
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-light);
  margin-bottom: 4px;
}
.utility-row {
  color: var(--ink-mid);
  line-height: 1.5;
}
.util-tide-type {
  font-weight: 600;
  display: inline-block;
  width: 30px;
}
.utility-more-stations {
  margin-top: 3px;
  font-size: 0.65rem;
}
.utility-more-stations a { color: var(--accent); }
.utility-alert-active .utility-label { color: #8B1A1A; }
.utility-alert-text {
  color: #8B1A1A;
  font-weight: 600;
}

/* ── Markets Ticker Strip (TradingView live widget) ─────── */
.markets-ticker-strip {
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule-light);
  background: var(--paper);
}
.markets-ticker-strip .tradingview-widget-container {
  margin: 0;
}
/* Hide TradingView copyright link that appears below the ticker */
.markets-ticker-strip .tradingview-widget-copyright {
  display: none;
}

/* ── Audio Briefing Strip ─────────────────────────────────── */
.audio-briefing-strip {
  display: flex; align-items: center; flex-wrap: wrap;
  gap: 8px 16px; border-bottom: 1px solid var(--rule-light);
  padding: 7px 14px; background: #fafaf8;
  font-family: var(--sans); font-size: 0.72rem;
}
.audio-briefing-label {
  font-weight: 700; font-size: 0.65rem; text-transform: uppercase;
  letter-spacing: 0.12em; color: var(--accent);
}
.audio-briefing-byline { color: var(--ink-mid); }
.audio-briefing-player { height: 40px; flex: 1; min-width: 200px; max-width: 400px; }
.audio-briefing-transcript {
  font-size: 0.62rem; color: var(--ink-light); text-decoration: underline;
  white-space: nowrap;
}
@media (max-width: 480px) {
  .audio-briefing-player { min-width: 100%; height: 44px; }
}

/* ── Section Header ───────────────────────────────────────── */
.section-header {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 3px solid var(--accent);
  padding-top: 10px;
  margin: 32px 0 16px;
}

.section-header h2 {
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent);
  white-space: nowrap;
}

.section-header::after {
  content: '';
  flex: 1;
  border-top: 1px solid var(--rule-light);
}

/* ── Section Label (inline, on articles) ─────────────────── */
.section-label {
  font-family: var(--sans);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}
.section-label::before {
  content: '— ';
  opacity: 0.5;
}

/* ── Hero Article ─────────────────────────────────────────── */
.hero {
  margin-top: 20px;
  border-bottom: 1px solid var(--rule);
  padding-bottom: 28px;
  margin-bottom: 8px;
}

.hero-image {
  width: 100%;
  max-height: 460px;
  object-fit: cover;
  margin-bottom: 14px;
}

/* Cookbook: extreme weights (900 not 700), distinctive editorial serif for headlines */
.hero-headline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  font-weight: 700;
  line-height: 1.08;
  color: var(--ink);
  margin-bottom: 10px;
  font-style: italic;
  letter-spacing: -0.01em;
}

.hero-deck {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 1.05rem;
  line-height: 1.5;
  color: var(--ink-mid);
  margin-bottom: 10px;
  font-weight: 400;
  font-style: italic;
}

.hero-excerpt {
  font-family: var(--body-serif);
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--ink);
  margin-top: 10px;
  margin-bottom: 8px;
}

.hero-read-more {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent, #1a4a8a);
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
}

.hero-body {
  columns: 2;
  column-gap: var(--col-gap);
  font-family: var(--body-serif);
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--ink);
  text-align: justify;
  hyphens: auto;
  margin-top: 12px;
}

.hero-body p { margin-bottom: 0.7em; break-inside: avoid; }

/* ── Article Grid ─────────────────────────────────────────── */
.article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.article-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.article-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }

/* ── Article Card ─────────────────────────────────────────── */
/* Cookbook: micro-interaction — subtle lift on hover, CSS-only */
.article-card {
  padding: 0 var(--col-gap) 20px 0;
  transition: transform 0.18s ease;
}

.article-card:hover {
  transform: translateY(-3px);
}

.article-card:last-child {
  padding-right: 0;
}

.article-card + .article-card {
  padding-left: var(--col-gap);
}

.article-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  margin-bottom: 10px;
}

/* Cookbook: Fraunces w/ optical sizing — extreme weight contrast vs body text */
.article-headline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 6px;
  font-style: italic;
}

.article-headline a:hover { color: var(--accent); }

.article-deck {
  font-family: var(--body-serif);
  font-size: 0.82rem;
  line-height: 1.4;
  color: var(--ink-mid);
  margin-bottom: 6px;
}

.article-byline {
  font-family: var(--sans);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-light);
  border-bottom: 1px solid var(--rule-light);
  padding-bottom: 6px;
  margin-bottom: 8px;
}

.article-body {
  font-family: var(--body-serif);
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--ink);
  text-align: justify;
  hyphens: auto;
}

.article-body p { margin-bottom: 0.6em; }

.image-credit {
  font-family: var(--sans);
  font-size: 0.58rem;
  color: var(--ink-light);
  text-align: right;
  margin-top: 2px;
  font-style: italic;
}

/* ── Drop Cap ─────────────────────────────────────────────── */
.drop-cap::first-letter {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 4.2em;
  font-weight: 700;
  float: left;
  line-height: 0.75;
  margin-right: 6px;
  margin-top: 4px;
  color: var(--accent);
  font-style: italic;
}

/* ── Horizontal Rules ─────────────────────────────────────── */
.rule       { border: none; border-top: 1px solid var(--rule-light); margin: 16px 0; }
.rule-thick { border: none; border-top: 2px solid var(--rule); margin: 16px 0; }

/* ── AI Disclosure ────────────────────────────────────────── */
.ai-disclosure {
  font-family: var(--sans);
  font-size: 0.62rem;
  color: #999;
  border-top: 1px solid var(--rule-light);
  padding-top: 4px;
  margin-top: 10px;
  font-style: italic;
}

/* ── Pull Quote (New Yorker style) ───────────────────────── */
.pull-quote {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.4rem;
  font-weight: 400;
  font-style: italic;
  line-height: 1.4;
  color: var(--ink-mid);
  border-top: 2px solid var(--rule);
  border-bottom: 2px solid var(--rule);
  padding: 18px 0;
  margin: 28px 0;
  text-align: center;
  letter-spacing: -0.01em;
}

/* ── Ornamental rule (center dot) ────────────────────────── */
.ornament-rule {
  text-align: center;
  margin: 24px 0;
  color: var(--rule-light);
  font-size: 0.8rem;
  letter-spacing: 0.4em;
  user-select: none;
}

/* ── Section header ornament ─────────────────────────────── */
.section-header-ornament {
  display: flex;
  align-items: center;
  gap: 10px;
  border-top: 2px solid var(--rule);
  padding-top: 10px;
  margin: 28px 0 16px;
}
.section-header-ornament::before,
.section-header-ornament::after {
  content: '·';
  color: var(--accent);
  font-size: 1.2rem;
}
.section-header-ornament span {
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  white-space: nowrap;
}

/* ── Corrections ──────────────────────────────────────────── */
.correction-box {
  background: #f0f6fc;
  border-left: 4px solid var(--accent);
  padding: 10px 14px;
  margin-bottom: 16px;
  font-family: var(--body-serif);
  font-size: 0.82rem;
}

.correction-label {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 4px;
}

/* ── Page Footer ──────────────────────────────────────────── */
.page-footer {
  border-top: 1px solid var(--rule-light);
  padding-top: 8px;
  margin-top: 32px;
  display: flex;
  justify-content: space-between;
  font-family: var(--sans);
  font-size: 0.62rem;
  color: var(--ink-light);
}

/* ── Advertisements ───────────────────────────────────────── */
.ad-unit { border: 1px dashed var(--rule-light); overflow: hidden; }
.ad-placeholder {
  background: #f8f8f8;
  padding: 24px;
  text-align: center;
  font-family: var(--sans);
  font-size: 0.7rem;
  color: #bbb;
}

/* ── Individual Article Page ─────────────────────────────── */
.article-breadcrumb {
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--ink-light);
  padding: 16px 0 14px;
  border-bottom: 1px solid var(--rule-light);
  margin-bottom: 28px;
}

.article-breadcrumb a {
  color: var(--accent);
}

.article-breadcrumb a:hover { text-decoration: underline; }

.article-section-label {
  font-family: var(--sans);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.article-section-label::before { content: '— '; opacity: 0.5; }

.article-page {
  max-width: 660px;
  margin: 0 auto;
  padding: 12px 0 60px;
}

.article-page-headline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 700;
  line-height: 1.06;
  color: var(--ink);
  margin-bottom: 14px;
  font-style: italic;
  letter-spacing: -0.01em;
}

.article-page-deck {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 1.15rem;
  line-height: 1.55;
  color: var(--ink-mid);
  margin-bottom: 20px;
  border-bottom: 1px solid var(--rule-light);
  padding-bottom: 18px;
  font-style: italic;
}

.article-page-byline {
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-light);
  margin-bottom: 28px;
}

.article-page-image {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  margin-bottom: 6px;
}

.article-page-body {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 1.15rem;
  line-height: 1.82;
  color: var(--ink);
  text-align: left;
}

.article-page-body p { margin-bottom: 1.1em; }

.article-back-nav {
  margin-top: 40px;
  padding-top: 16px;
  border-top: 1px solid var(--rule-light);
  font-family: var(--sans);
  font-size: 0.72rem;
  display: flex;
  gap: 28px;
}

.article-back-nav a {
  color: var(--accent);
  font-weight: 700;
}

.article-back-nav a:hover { text-decoration: underline; }

/* ── Utilities ────────────────────────────────────────────── */
.no-print { }
.text-center { text-align: center; }

/* ============================================================
   Front Page: NYT-Style 3-Column + Lower Grid Layout
   ============================================================ */

/* ── 3-Column Main Grid ───────────────────────────────────── */
.main-grid {
  display: grid;
  grid-template-columns: 22fr 44fr 27fr;
  margin: 20px 0 0;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--rule-light);
}

.col-left {
  padding-right: 20px;
  border-right: 1px solid var(--rule-light);
}

.col-center {
  padding: 0 24px;
  border-right: 1px solid var(--rule-light);
}

.col-right {
  padding-left: 20px;
}

/* Hero body: single column inside center col (not 2-col) */
.col-center .hero-body {
  columns: 1;
  font-size: 0.88rem;
}

/* Hero container resets inside col-center */
.col-center .hero {
  margin-top: 0;
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
  box-shadow: none;
}

/* ── Left column: text-only article stack ─────────────────── */
.stack-article {
  padding-bottom: 16px;
}

.stack-article + .stack-article {
  border-top: 1px solid var(--rule-light);
  padding-top: 16px;
}

.stack-section {
  font-family: var(--sans);
  font-size: 0.58rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent);
  margin-bottom: 5px;
}

.stack-headline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.22;
  color: var(--ink);
  margin-bottom: 6px;
}

.stack-deck {
  font-family: var(--body-serif);
  font-size: 0.8rem;
  line-height: 1.4;
  color: var(--ink-mid);
}

/* ── Right column: feature article ───────────────────────── */
.right-feature img {
  width: 100%;
  max-height: 200px;
  object-fit: cover;
  margin-bottom: 10px;
}

.feat-headline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 6px;
  font-style: italic;
}

.feat-deck {
  font-family: var(--body-serif);
  font-size: 0.8rem;
  line-height: 1.4;
  color: var(--ink-mid);
}

/* ── Right column: 2-up small article grid ────────────────── */
.right-small-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  border-top: 1px solid var(--rule-light);
  padding-top: 14px;
  margin-top: 14px;
}

.right-small-card img {
  width: 100%;
  height: 72px;
  object-fit: cover;
  margin-bottom: 6px;
}

/* ── Right column: extra text articles below small grid ──── */
.right-extra {
  border-top: 1px solid var(--rule-light);
  margin-top: 14px;
  padding-top: 4px;
}

.small-headline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.22;
  color: var(--ink);
}

/* ── Section Strips ── */
.section-strips { margin-top: 28px; }

.section-strip {
  border-top: 3px solid var(--rule);
  padding: 0 0 24px;
}
.section-strip + .section-strip {
  border-top: 1px solid var(--rule-light);
  margin-top: 4px;
}

/* Section bar */
.section-strip-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 12px;
  border-bottom: 1px solid var(--rule-light);
  margin-bottom: 16px;
  gap: 12px;
}
.section-strip-name {
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  flex-shrink: 0;
}
.section-strip-bar::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--rule-light);
}
.section-strip-all {
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  transition: text-decoration 0.1s;
}
.section-strip-all:hover { text-decoration: underline; }

/* 2-col body */
.strip-body {
  display: grid;
  grid-template-columns: 38fr 62fr;
  gap: 0 24px;
}

/* Left: text stack */
.strip-left {
  border-right: 1px solid var(--rule-light);
  padding-right: 24px;
}
.strip-text-item { padding-bottom: 14px; }
.strip-text-item--ruled {
  border-top: 1px solid var(--rule-light);
  padding-top: 14px;
}

/* Right: feature */
.strip-feature img {
  width: 100%;
  max-height: 220px;
  object-fit: cover;
  margin-bottom: 10px;
}

/* Read time */
.read-time {
  font-family: var(--sans);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-light);
  margin-bottom: 5px;
}

/* Headlines / decks */
.strip-text-headline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.22;
  color: var(--ink);
  margin-bottom: 4px;
}

.strip-text-deck {
  font-family: var(--body-serif);
  font-size: 0.75rem;
  line-height: 1.4;
  color: var(--ink-mid);
}

.strip-feat-headline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 6px;
  font-style: italic;
}

.strip-feat-deck {
  font-family: var(--body-serif);
  font-size: 0.82rem;
  line-height: 1.45;
  color: var(--ink-mid);
}

/* Reversed strip — feature left, text stack right */
.strip-body--reversed {
  grid-template-columns: 62fr 38fr;
}
.strip-body--reversed .strip-feature {
  order: -1;
}
.strip-body--reversed .strip-left {
  border-right: none;
  padding-right: 0;
  border-left: 1px solid var(--rule-light);
  padding-left: 24px;
}

/* ── More News Block (3-col: text | center image | compact) ── */
.more-news-block {
  border-top: 3px solid var(--rule);
  padding: 0 0 28px;
  margin-top: 28px;
}

.more-news-header {
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  padding: 10px 0 12px;
  border-bottom: 1px solid var(--rule-light);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.more-news-header::before,
.more-news-header::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--rule-light);
}

.more-news-grid {
  display: grid;
  grid-template-columns: 25fr 48fr 25fr;
  gap: 0 24px;
}

/* Left col */
.more-news-col-left {
  border-right: 1px solid var(--rule-light);
  padding-right: 24px;
}

.mn-full-item { padding-bottom: 16px; }
.mn-full-item--ruled {
  border-top: 1px solid var(--rule-light);
  padding-top: 16px;
}

.mn-headline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.08rem;
  font-weight: 600;
  line-height: 1.22;
  color: var(--ink);
  margin-bottom: 5px;
  font-style: italic;
}

.mn-deck {
  font-family: var(--body-serif);
  font-size: 0.8rem;
  line-height: 1.4;
  color: var(--ink-mid);
  margin-bottom: 5px;
}

/* Center col */
.mn-center img {
  width: 100%;
  max-height: 280px;
  object-fit: cover;
  margin-bottom: 10px;
}

.mn-feat-headline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 8px;
  font-style: italic;
}

/* Right col */
.more-news-col-right {
  border-left: 1px solid var(--rule-light);
  padding-left: 24px;
}

.mn-compact-item { padding-bottom: 12px; }
.mn-compact-item--ruled {
  border-top: 1px solid var(--rule-light);
  padding-top: 12px;
}

.mn-compact-headline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.22;
  color: var(--ink);
  margin-bottom: 3px;
}

/* Keep lower-grid/lower-card for any legacy usage */
.lower-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 28px;
}

.lower-card {
  padding: 12px 20px 20px;
  border-top: 3px solid var(--rule);
}

.lower-card:first-child { padding-left: 0; }
.lower-card:last-child  { padding-right: 0; }

.lower-card + .lower-card {
  border-left: 1px solid var(--rule-light);
}

.lower-section-label {
  font-family: var(--sans);
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 6px;
}

.lower-headline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.22;
  color: var(--ink);
  margin-bottom: 6px;
  font-style: italic;
}

.lower-deck {
  font-family: var(--body-serif);
  font-size: 0.78rem;
  line-height: 1.4;
  color: var(--ink-mid);
}

/* ── Archive page ──────────────────────────────────────────── */
.archive-page {
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 28px var(--page-pad) 60px;
}
.archive-header {
  border-bottom: 2px solid var(--rule);
  padding-bottom: 12px;
  margin-bottom: 28px;
}
.archive-title {
  font-family: var(--serif-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--ink);
}
.archive-sub {
  font-family: var(--sans);
  font-size: 0.75rem;
  color: var(--ink-light);
  margin-top: 4px;
}
.archive-month { margin-bottom: 32px; }
.archive-month-label {
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-light);
  border-bottom: 1px solid var(--rule-light);
  padding-bottom: 6px;
  margin-bottom: 2px;
}
.archive-list { display: flex; flex-direction: column; }
.archive-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 11px 0;
  border-bottom: 1px solid var(--rule-light);
}
.archive-row:last-child { border-bottom: none; }
.archive-row-current { background: #f9f7f3; margin: 0 -8px; padding: 11px 8px; }

.archive-date-col {
  display: flex;
  align-items: center;
  gap: 6px;
  min-width: 110px;
}
.archive-weekday {
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--ink-light);
  width: 26px;
}
.archive-day {
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--ink);
}
.archive-today-badge {
  font-family: var(--sans);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #fff;
  background: var(--accent);
  padding: 2px 6px;
  border-radius: 2px;
}

.archive-meta-col {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 14px;
}
.archive-vol {
  font-family: var(--sans);
  font-size: 0.72rem;
  color: var(--ink-mid);
}
.archive-count {
  font-family: var(--sans);
  font-size: 0.68rem;
  color: var(--ink-light);
}

.archive-actions-col { display: flex; gap: 8px; }
.archive-btn {
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  padding: 5px 12px;
  border: 1px solid var(--rule-light);
  transition: background 0.1s, color 0.1s, border-color 0.1s;
}
.archive-btn-read {
  color: var(--accent);
  border-color: var(--accent);
}
.archive-btn-read:hover { background: var(--accent); color: #fff; }
.archive-btn-pdf {
  color: var(--ink-mid);
  border-color: var(--rule-light);
}
.archive-btn-pdf:hover { background: var(--ink); color: #fff; border-color: var(--ink); }

.archive-empty {
  font-family: var(--sans);
  font-size: 0.85rem;
  color: var(--ink-light);
  padding: 40px 0;
}

@media (max-width: 480px) {
  .archive-row  { flex-wrap: wrap; gap: 8px; }
  .archive-meta-col { flex: none; width: 100%; }
  .archive-vol, .archive-count { font-size: 0.65rem; }
}

/* ── Video Strip ───────────────────────────────────────────── */
.video-strip {
  border-top: 3px solid var(--rule);
  padding: 0 0 20px;
  margin-bottom: 20px;
}
.video-strip-bar {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 10px 0 12px;
  border-bottom: 1px solid var(--rule-light);
  margin-bottom: 14px;
}
.video-strip-name {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
}
.video-strip-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 8px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}
.video-card {
  flex: 0 0 220px;
  cursor: pointer;
}
.video-thumb {
  position: relative;
  aspect-ratio: 16/9;
  background: #111;
  overflow: hidden;
  margin-bottom: 8px;
}
.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-thumb-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1a1a2e, #0d0d1a);
}
.video-play-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #fff;
  background: rgba(0, 0, 0, 0.35);
  transition: background 0.15s;
}
.video-card:hover .video-play-icon {
  background: rgba(0, 0, 0, 0.6);
}
.video-reel-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  font-family: var(--sans);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--accent);
  color: #fff;
  padding: 2px 6px;
}
.video-card-headline {
  font-family: var(--serif-display);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--ink);
}
.video-modal {
  border: none;
  padding: 0;
  background: #000;
  max-width: 900px;
  width: 90vw;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.video-modal::backdrop {
  background: rgba(0, 0, 0, 0.85);
}
.video-modal video {
  width: 100%;
  display: block;
}
.video-modal-close {
  position: absolute;
  top: 8px;
  right: 8px;
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  padding: 4px 10px;
  z-index: 10;
}

/* ── Staff Byline Block ────────────────────────────────── */
.byline-block {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 10px 0 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--rule-light);
}

.byline-headshot {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--rule-light);
}

.byline-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.byline-name {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.byline-name-link {
  text-decoration: none;
  color: inherit;
}
.byline-name-link:hover .byline-name { color: var(--accent); }

.byline-date {
  font-family: var(--sans);
  font-size: 0.75rem;
  color: var(--ink-light);
  letter-spacing: 0.01em;
}

/* ── Newsroom / Staff Page ────────────────────────────────── */
.newsroom-header {
  text-align: center;
  padding: 32px 0 24px;
  border-bottom: 2px solid var(--rule);
  margin-bottom: 32px;
}
.newsroom-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--ink);
  letter-spacing: 0.02em;
  margin-bottom: 12px;
}
.newsroom-tagline {
  font-family: var(--body-serif);
  font-size: 1rem;
  color: var(--ink-mid);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.6;
}
.newsroom-rule { display: none; }

/* 6-col grid desktop → 3 tablet → 2 mobile */
.staff-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 28px 20px;
  margin-bottom: 60px;
}

/* Each card */
.staff-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  cursor: pointer;
  gap: 10px;
  padding: 16px 8px;
  border: 1px solid transparent;
  transition: border-color 0.15s, background 0.15s;
  border-radius: 4px;
}
.staff-card:hover {
  border-color: var(--rule-light);
  background: #f5f3ee;
}
.staff-avatar-wrap {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--rule-light);
  flex-shrink: 0;
}
.staff-avatar {
  width: 100%;
  height: 100%;
  display: block;
}
.staff-card-name {
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.25;
}
.staff-card-role {
  font-family: var(--sans);
  font-size: 0.68rem;
  color: var(--ink-light);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

/* Overlay + slide-in panel */
.staff-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 900;
}
.staff-overlay.active { display: block; }

.staff-panel {
  position: fixed;
  top: 0;
  right: -600px;
  width: 100%;
  max-width: 600px;
  height: 100%;
  overflow-y: auto;
  background: var(--bg);
  z-index: 901;
  transition: right 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  padding: 48px 40px 80px;
  box-shadow: -12px 0 60px rgba(0,0,0,0.40), -2px 0 12px rgba(0,0,0,0.18);
}
.staff-panel.active { right: 0; }

.staff-panel-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.2rem;
  color: var(--ink-light);
  cursor: pointer;
  padding: 6px 10px;
  transition: color 0.15s;
}
.staff-panel-close:hover { color: var(--ink); }

.panel-top {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 2px solid var(--rule);
}
.panel-avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid var(--rule-light);
}
.panel-header-text { flex: 1; }
.panel-name {
  font-family: var(--serif);
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--ink);
  line-height: 1.05;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.panel-role {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
}
.panel-rule {
  border: none;
  border-top: 1px solid var(--rule-light);
  margin: 0 0 24px;
}
.panel-bio {
  font-family: var(--body-serif);
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--ink-mid);
  margin-bottom: 24px;
}
.panel-voice {
  font-family: var(--body-serif);
  font-size: 0.88rem;
  color: var(--ink-light);
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 20px;
  padding: 12px 16px;
  border-left: 3px solid var(--rule-light);
  background: rgba(0,0,0,0.02);
}
.panel-voice-label {
  font-family: var(--sans);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-light);
  font-style: normal;
  margin-right: 6px;
}
.panel-dept-badge {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.55rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-light);
  background: var(--rule-light);
  padding: 2px 6px;
  border-radius: 2px;
  margin-left: 8px;
  vertical-align: middle;
}
.panel-beats { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 8px; }
.beat-tag {
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 3px 8px;
  border-radius: 2px;
}

@media (max-width: 960px) {
  .staff-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 560px) {
  .staff-grid { grid-template-columns: repeat(2, 1fr); }
  .staff-panel { max-width: 100%; }
}

/* ── National Briefing Strip (front page wire-brief) ─────── */
.national-briefing-strip {
  border-top: 3px solid var(--ink);
  padding: 0 0 24px;
  margin-top: 28px;
}
.national-briefing-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 12px;
  border-bottom: 1px solid var(--rule-light);
  margin-bottom: 14px;
}
.national-briefing-name {
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
}
.national-briefing-all {
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
}
.national-briefing-all:hover { text-decoration: underline; }
.national-briefing-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0 20px;
}
.national-brief-item { padding-bottom: 0; }
.national-brief-item--ruled {
  border-left: 1px solid var(--rule-light);
  padding-left: 20px;
}
.national-brief-headline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.25;
  color: var(--ink);
  margin-bottom: 4px;
}
.national-brief-headline a { color: inherit; }
.national-brief-headline a:hover { color: var(--accent); }
.national-brief-byline {
  font-family: var(--sans);
  font-size: 0.62rem;
  color: var(--ink-light);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
@media (max-width: 700px) {
  .national-briefing-list { grid-template-columns: 1fr 1fr; }
  .national-brief-item--ruled:nth-child(odd) { border-left: none; padding-left: 0; }
  .national-brief-item--ruled:nth-child(even) { border-left: 1px solid var(--rule-light); padding-left: 14px; }
}

/* ── Section Page Layout (NYT-style) ──────────────────────── */

/* Top strip: hero left (~62%) + sidebar right (~38%) */
.sec-top {
  display: grid;
  grid-template-columns: 62fr 38fr;
  gap: 0 2rem;
  margin-top: 1.25rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--rule);
}

/* HERO — left column */
.sec-hero {}

.sec-hero-img {
  width: 100%;
  margin-bottom: 0.75rem;
  overflow: hidden;
}

.sec-hero-img img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
}

.sec-hero-headline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.6rem, 2.6vw, 2.4rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--ink);
  margin: 0.4rem 0 0.5rem;
  font-style: italic;
}

.sec-hero-headline a {
  color: inherit;
  text-decoration: none;
}

.sec-hero-headline a:hover {
  color: var(--accent);
}

.sec-hero-deck {
  font-family: var(--body-serif);
  font-size: 1rem;
  line-height: 1.5;
  color: var(--ink-mid);
  margin: 0 0 0.6rem;
}

/* SIDEBAR — right column */
.sec-sidebar {
  border-left: 1px solid var(--rule);
  padding-left: 1.5rem;
}

.sec-sidebar-card {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 0.1rem 0;
}

.sec-sidebar-text {
  flex: 1;
}

.sec-sidebar-headline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--ink);
  margin: 0.25rem 0 0.3rem;
}

.sec-sidebar-headline a {
  color: inherit;
  text-decoration: none;
}

.sec-sidebar-headline a:hover {
  color: var(--accent);
}

.sec-sidebar-deck {
  font-family: var(--body-serif);
  font-size: 0.82rem;
  line-height: 1.4;
  color: var(--ink-mid);
  margin: 0 0 0.3rem;
}

.sec-sidebar-thumb {
  flex-shrink: 0;
  width: 80px;
}

.sec-sidebar-thumb img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  display: block;
}

.sidebar-rule {
  border: none;
  border-top: 1px solid var(--rule-light, #e0dbd3);
  margin: 0.75rem 0;
}

/* LIST — articles below the fold */
.sec-list {
  margin-top: 0.5rem;
}

.sec-list-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 0.75rem 0;
}

.sec-list-text {
  flex: 1;
}

.sec-list-headline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--ink);
  margin: 0.25rem 0 0.35rem;
}

.sec-list-headline a {
  color: inherit;
  text-decoration: none;
}

.sec-list-headline a:hover {
  color: var(--accent);
}

.sec-list-deck {
  font-family: var(--body-serif);
  font-size: 0.88rem;
  line-height: 1.45;
  color: var(--ink-mid);
  margin: 0 0 0.3rem;
}

.sec-list-thumb {
  flex-shrink: 0;
  width: 120px;
}

.sec-list-thumb img {
  width: 120px;
  height: 90px;
  object-fit: cover;
  display: block;
}

/* Mobile: stack to single column */
@media (max-width: 700px) {
  .sec-top {
    grid-template-columns: 1fr;
  }
  .sec-sidebar {
    border-left: none;
    border-top: 1px solid var(--rule);
    padding-left: 0;
    padding-top: 1rem;
  }
  .sec-sidebar-thumb { width: 72px; }
  .sec-sidebar-thumb img { width: 72px; height: 72px; }
  .sec-list-thumb { width: 90px; }
  .sec-list-thumb img { width: 90px; height: 68px; }
  .sec-hero-img img { height: 220px; }
}

/* ── Data & Maps Page ─────────────────────────────────────── */
.data-stat-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}
.data-stat-card {
  background: var(--bg);
  border: 1px solid var(--rule-light);
  border-top: 3px solid var(--accent);
  padding: 14px 16px;
  font-family: var(--sans);
}
.data-stat-county {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 10px;
}
.data-stat-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 0.72rem;
  padding: 3px 0;
  border-bottom: 1px solid var(--rule-light);
}
.data-stat-label { color: var(--ink-light); }
.data-stat-value { font-weight: 700; color: var(--ink); }
.stat-high { color: #b81c1c; }
.stat-mid  { color: #ca8a04; }
.stat-low  { color: #15803d; }
.data-stat-period {
  font-size: 0.6rem;
  color: var(--ink-light);
  margin-top: 8px;
  font-style: italic;
}
.data-maps-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 8px;
}
.data-map-block {
  border: 1px solid var(--rule-light);
  background: var(--bg);
}
.data-map-title {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  padding: 12px 14px 2px;
}
.data-map-source {
  font-family: var(--sans);
  font-size: 0.58rem;
  color: var(--ink-light);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0 14px 8px;
}
.data-map-frame {
  width: 100%;
  height: 340px;
  border: none;
  border-top: 1px solid var(--rule-light);
  display: block;
}
@media (max-width: 700px) {
  .data-stat-strip { grid-template-columns: 1fr; }
  .data-maps-grid  { grid-template-columns: 1fr; }
  .data-map-frame  { height: 280px; }
}

/* ── Site Footer ─────────────────────────────────────────── */
.site-footer {
  background: #0f0f0f;
  color: #888;
  font-family: var(--sans);
  font-size: 0.72rem;
  margin-top: 0;
  border-top: 3px solid var(--accent);
}

.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 2fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px var(--page-pad) 36px;
}

/* Brand column */
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.footer-owl-ring {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.2);
  overflow: hidden;
  flex-shrink: 0;
}
.footer-owl-ring img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 12%;
}
.footer-pub-name {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.footer-pub-tc {
  font-family: var(--serif);
  font-size: 0.85rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.04em;
}
.footer-pub-sentinel {
  font-family: var(--serif);
  font-size: 0.7rem;
  font-weight: 400;
  color: #aaa;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.footer-tagline {
  font-size: 0.65rem;
  color: #666;
  line-height: 1.5;
  margin: 0 0 6px;
  font-style: italic;
}
.footer-city { color: #555; margin: 0 0 4px; font-size: 0.65rem; }
.footer-brand-col .footer-email {
  color: #888;
  text-decoration: none;
  font-size: 0.65rem;
}
.footer-brand-col .footer-email:hover { color: #ccc; }

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 14px;
}
.footer-social-link {
  color: #555;
  transition: color 0.15s;
  display: flex;
  align-items: center;
}
.footer-social-link:hover { color: var(--accent); }

/* Column heads */
.footer-col-head {
  font-family: var(--sans);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 10px;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* Link lists */
.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-links li { margin-bottom: 7px; }
.footer-links a {
  color: #777;
  text-decoration: none;
  font-size: 0.7rem;
  transition: color 0.15s;
}
.footer-links a:hover { color: #e0e0e0; }

/* Subscribe column */
.footer-subscribe-text {
  color: #666;
  font-size: 0.68rem;
  line-height: 1.55;
  margin: 0 0 12px;
}
.footer-subscribe-form {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-email-input {
  width: 100%;
  padding: 9px 12px;
  background: #1a1a1a;
  border: 1px solid #333;
  border-radius: 3px;
  color: #ddd;
  font-family: var(--sans);
  font-size: 0.7rem;
  box-sizing: border-box;
}
.footer-email-input::placeholder { color: #555; }
.footer-email-input:focus { outline: none; border-color: var(--accent); }
.footer-subscribe-btn {
  padding: 9px 16px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 3px;
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  cursor: pointer;
  text-transform: uppercase;
  transition: background 0.15s;
}
.footer-subscribe-btn:hover { background: #a52020; }
.footer-coverage {
  font-size: 0.6rem;
  color: #444;
  margin: 10px 0 0;
  line-height: 1.5;
}

/* Bottom bar */
.footer-bottom {
  border-top: 1px solid #1e1e1e;
  padding: 14px var(--page-pad);
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 14px;
  font-size: 0.62rem;
  color: #444;
}
.footer-bottom-sep { color: #333; }
.footer-ai-disclosure { color: #3a3a3a; }

/* ── Footer responsive ───────────────────────────────────── */
@media (max-width: 900px) {
  .footer-main { grid-template-columns: 1fr 1fr; gap: 28px; }
}
@media (max-width: 560px) {
  .footer-main { grid-template-columns: 1fr; gap: 24px; padding: 32px var(--page-pad) 24px; }
  .footer-bottom { flex-direction: column; gap: 4px; }
  .footer-bottom-sep { display: none; }
}

/* ── Section Pagination ──────────────────────────────────── */
.section-pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 32px 0 8px;
  padding: 16px 0;
  border-top: 1px solid var(--rule-light);
  border-bottom: 1px solid var(--rule-light);
  font-family: var(--sans);
}
.sec-page-btn {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  text-decoration: none;
  padding: 6px 12px;
  border: 1px solid var(--accent);
  border-radius: 2px;
  white-space: nowrap;
  transition: background 0.12s, color 0.12s;
}
.sec-page-btn:hover { background: var(--accent); color: #fff; }
.sec-page-disabled {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--rule);
  padding: 6px 12px;
  border: 1px solid var(--rule-light);
  border-radius: 2px;
  white-space: nowrap;
  cursor: default;
}
.sec-page-numbers {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  justify-content: center;
}
.sec-page-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  font-size: 0.72rem;
  font-family: var(--sans);
  font-weight: 600;
  color: var(--ink-mid);
  text-decoration: none;
  border: 1px solid var(--rule-light);
  border-radius: 2px;
  transition: background 0.12s;
}
.sec-page-num:hover { background: var(--rule-light); }
.sec-page-current {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  font-weight: 700;
}

/* ── Staff Byline Pages ───────────────────────────────────────────────── */

.staff-profile {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 40px;
  margin: 32px 0 48px;
  padding-bottom: 32px;
  border-bottom: 2px solid var(--rule);
}

.staff-profile-photo-col {
  text-align: center;
}

.staff-profile-photo {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--rule-light);
  margin: 0 auto 12px;
  display: block;
}

.staff-profile-name {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
}

.staff-profile-role {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 10px;
}

.staff-profile-beats {
  font-family: var(--sans);
  font-size: 0.68rem;
  color: var(--ink-light);
  line-height: 1.6;
}

.staff-profile-bio {
  font-family: var(--body-serif);
  font-size: 1rem;
  line-height: 1.75;
  color: var(--ink);
  margin: 0 0 20px;
}

.staff-profile-voice {
  font-family: var(--serif-display);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--ink-mid);
  border-left: 3px solid var(--accent);
  padding-left: 18px;
  margin: 0;
}

@media (max-width: 600px) {
  .staff-profile {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
