/* ═══════════════════════════════════════════════════════════════
   THE DAILY HOON — style.css (v3 · Complete)
   Includes all base styles + v3 feature styles (hero, sticky ads,
   affiliate units, pagination, newsletter widget, etc.)
   ═══════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Barlow+Condensed:wght@400;600;700&family=Barlow:ital,wght@0,400;0,500;1,400&display=swap');

/* ── RESET & ROOT ─────────────────────────────────────────────── */
:root {
  --red:          #D91A1A;
  --red-dark:     #A81414;
  --black:        #0F0F0F;
  --charcoal:     #1A1A1A;
  --dark:         #222;
  --mid:          #444;
  --muted:        #888;
  --border:       #2E2E2E;
  --light-border: #E8E4DC;
  --paper:        #F7F4EE;
  --paper2:       #EFEBE2;
  --white:        #FFFFFF;
  --ink:          #1A1A1A;
  --ink-mid:      #3D3D3D;
  --ink-muted:    #777;
  --gold:         #C8A855;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Barlow', sans-serif;
  background: var(--paper);
  color: var(--ink);
  font-size: 15px;
  line-height: 1.6;
}

/* ── UTILITY BAR ──────────────────────────────────────────────── */
.utility-bar {
  background: var(--black);
  color: #888;
  font-size: 11px;
  font-family: 'Barlow Condensed', sans-serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 0;
  border-bottom: 1px solid #333;
}
.utility-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.utility-bar a { color: #888; text-decoration: none; }
.utility-bar a:hover { color: var(--red); }
.utility-divider { color: #444; margin: 0 8px; }

/* ── MASTHEAD ─────────────────────────────────────────────────── */
.masthead {
  background: var(--black);
  padding: 0;
  position: relative;
  overflow: hidden;
}
.masthead::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--red);
}
.masthead-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 20px 22px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
}
.logo-wordmark {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 72px;
  color: var(--white);
  letter-spacing: 0.04em;
  line-height: 0.9;
  display: block;
}
.logo-wordmark span { color: var(--red); }
.logo-tagline {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #666;
  margin-top: 4px;
  display: block;
}
.masthead-meta { text-align: right; font-family: 'Barlow Condensed', sans-serif; }
.meta-date {
  font-size: 13px; color: #888;
  letter-spacing: 0.08em; text-transform: uppercase; display: block;
}
.meta-edition {
  font-size: 11px; color: #555;
  letter-spacing: 0.1em; text-transform: uppercase; display: block; margin-top: 3px;
}

/* ── NAV BAR ──────────────────────────────────────────────────── */
.nav-bar {
  background: var(--white);
  border-bottom: 1px solid var(--light-border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
}
.nav-bar a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-mid);
  text-decoration: none;
  padding: 12px 16px;
  display: block;
  border-bottom: 3px solid transparent;
  transition: all 0.15s ease;
}
.nav-bar a:hover { color: var(--red); border-bottom-color: var(--red); }
.nav-bar a.active { color: var(--red); border-bottom-color: var(--red); }
.nav-spacer { flex: 1; }

/* ── AD PLACEMENTS ────────────────────────────────────────────── */
.ad-leaderboard {
  background: var(--paper2);
  border-bottom: 1px solid var(--light-border);
  border-top: 1px solid var(--light-border);
  padding: 8px 0;
  text-align: center;
}
.ad-label {
  font-size: 9px;
  color: #BBB;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-family: 'Barlow Condensed', sans-serif;
  text-align: center;
  display: block;
  margin-bottom: 3px;
}
.in-feed-ad {
  padding: 12px 0;
  border-bottom: 1px solid var(--light-border);
  text-align: center;
}
.sidebar-ad-wrap { text-align: center; }

/* ── STICKY FOOTER AD ─────────────────────────────────────────── */
.sticky-footer-ad {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--white);
  border-top: 1px solid var(--light-border);
  padding: 8px 0 6px;
  text-align: center;
  z-index: 200;
  display: none;
  box-shadow: 0 -2px 12px rgba(0,0,0,0.08);
}
.sticky-footer-ad.visible { display: block; }
.sticky-close {
  position: absolute;
  top: 6px; right: 12px;
  background: none;
  border: 1px solid var(--light-border);
  border-radius: 3px;
  font-size: 11px;
  color: var(--ink-muted);
  cursor: pointer;
  padding: 2px 6px;
  line-height: 1;
}
.sticky-close:hover { background: var(--paper2); }

/* ── HERO BAND ────────────────────────────────────────────────── */
.hero-band {
  background-size: cover;
  background-position: center 50%;
  background-repeat: no-repeat;
  height: 320px;
  position: relative;
  transition: background-position 0.1s linear;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.72) 100%);
  display: flex;
  align-items: flex-end;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px 28px;
  width: 100%;
}
.hero-edition {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 6px;
}
.hero-kicker {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 8px;
}
.hero-lead {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 38px;
  color: white;
  line-height: 1.1;
  letter-spacing: 0.03em;
  max-width: 700px;
}

/* ── PAGE LAYOUT ──────────────────────────────────────────────── */
.page-layout {
  max-width: 1200px;
  margin: 0 auto;
  padding: 28px 20px;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 36px;
  align-items: start;
}

/* ── SECTION HEADERS ──────────────────────────────────────────── */
.section-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 3px solid var(--black);
  flex-wrap: wrap;
}
.section-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 0.05em;
  color: var(--ink);
  line-height: 1;
}
.section-label span { color: var(--red); }
.section-meta {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  color: var(--ink-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-left: auto;
}
.auto-badge {
  background: var(--red);
  color: white;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 3px 7px;
  border-radius: 2px;
}

/* ── DISCLAIMER BAR ───────────────────────────────────────────── */
.disclaimer-bar {
  background: #F0ECE3;
  border: 1px solid var(--light-border);
  border-radius: 4px;
  padding: 10px 14px;
  margin-bottom: 20px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.disclaimer-icon { font-size: 16px; flex-shrink: 0; padding-top: 1px; }
.disclaimer-text { font-size: 12px; color: var(--ink-muted); line-height: 1.5; }
.disclaimer-text strong { color: var(--ink-mid); }
.disclaimer-text a { color: var(--red); text-decoration: none; }
.disclaimer-text a:hover { text-decoration: underline; }

/* ── STORY CARDS ──────────────────────────────────────────────── */
.stories-grid { display: flex; flex-direction: column; gap: 0; }

.story-card {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 0;
  border-bottom: 1px solid var(--light-border);
  padding: 18px 0;
  text-decoration: none;
  color: inherit;
  transition: background 0.1s;
  cursor: pointer;
}
.story-card:first-child { border-top: 1px solid var(--light-border); }
.story-card:hover { background: rgba(0,0,0,0.015); }
.story-card:hover .story-headline { color: var(--red); }
.story-card:hover .story-number { color: #DDD; }

.story-card.has-image {
  grid-template-columns: 56px 1fr 160px;
  gap: 0 12px;
}

.story-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 42px;
  color: var(--light-border);
  line-height: 1;
  padding-top: 3px;
  padding-right: 4px;
  text-align: right;
  transition: color 0.15s;
  flex-shrink: 0;
}
.story-card.featured .story-number { font-size: 56px; color: #E8D8D8; }

.story-body { padding-left: 4px; min-width: 0; }

.story-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 5px;
  flex-wrap: wrap;
}
.story-source {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
}
.story-time {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  letter-spacing: 0.06em;
  color: var(--ink-muted);
  text-transform: uppercase;
}
.story-tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 2px 6px;
  border-radius: 2px;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid var(--light-border);
  transition: all 0.1s;
  white-space: nowrap;
}
.story-tag:hover { background: var(--ink); color: white !important; border-color: var(--ink); }
.tag-red    { background: #FDEAEA; color: var(--red); border-color: #F5C5C5; }
.tag-blue   { background: #E8F0FD; color: #1A4FA8; border-color: #C5D5F5; }
.tag-green  { background: #E8F5ED; color: #1A7A3C; border-color: #C5E5D0; }
.tag-amber  { background: #FDF5E8; color: #8A5A0A; border-color: #F0D8A0; }
.tag-purple { background: #F0E8FD; color: #5A1A9A; border-color: #D8C0F5; }
.tag-gray   { background: #F0EDE8; color: #555;    border-color: #DDD; }

.story-headline {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.25;
  color: var(--ink);
  margin-bottom: 5px;
  transition: color 0.15s;
}
.story-card.featured .story-headline { font-size: 24px; }

.story-summary {
  font-size: 13.5px;
  color: var(--ink-muted);
  line-height: 1.5;
  margin-bottom: 6px;
}
.story-footer {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.story-read-link {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  text-decoration: none;
  font-weight: 600;
}
.story-read-link::after { content: ' →'; }
.story-embed-badge {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--ink-muted);
  background: #F0EDE6;
  padding: 2px 6px;
  border-radius: 2px;
  border: 1px solid #DDD;
}

.story-image {
  width: 160px;
  height: 100px;
  object-fit: cover;
  border-radius: 3px;
  align-self: start;
  margin-top: 2px;
  flex-shrink: 0;
}

/* ── AFFILIATE UNITS ──────────────────────────────────────────── */
.affiliate-unit {
  padding: 14px 16px;
  background: var(--paper2);
  border: 1px solid var(--light-border);
  border-left: 3px solid var(--red);
  border-radius: 3px;
  margin: 4px 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.affiliate-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.affiliate-link {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--red);
  text-decoration: none;
  letter-spacing: 0.04em;
}
.affiliate-link:hover { text-decoration: underline; }
.affiliate-disclosure { font-size: 10px; color: var(--ink-muted); }
.affiliate-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  padding: 14px 0;
  border-top: 1px solid var(--light-border);
  margin-top: 16px;
  font-size: 12px;
  color: var(--ink-muted);
  font-family: 'Barlow Condensed', sans-serif;
  letter-spacing: 0.06em;
}
.affiliate-strip a {
  color: var(--red);
  text-decoration: none;
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.affiliate-strip a:hover { text-decoration: underline; }

/* ── SIDEBAR ──────────────────────────────────────────────────── */
.sidebar { display: flex; flex-direction: column; gap: 24px; }

.sidebar-widget {
  background: var(--white);
  border: 1px solid var(--light-border);
  border-radius: 4px;
  overflow: hidden;
}
.sidebar-widget-header {
  background: var(--black);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.sidebar-widget-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: white;
}
.sidebar-widget-title span { color: var(--red); }
.sidebar-widget-body { padding: 14px; }

/* Newsletter widget header override */
.newsletter-widget .sidebar-widget-header { background: var(--red); }

/* ── TAGS CLOUD ───────────────────────────────────────────────── */
.tags-cloud { display: flex; flex-wrap: wrap; gap: 6px; }
.tag-pill {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 3px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.1s ease;
  font-weight: 600;
  border: 1px solid transparent;
}

/* ── GEAR LINKS (sidebar affiliate) ──────────────────────────── */
.gear-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}
.gear-link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 10px;
  background: var(--paper);
  border: 1px solid var(--light-border);
  border-radius: 3px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--ink-mid);
  text-decoration: none;
  transition: all 0.1s;
}
.gear-link:hover { background: var(--ink); color: white; }
.gear-icon { font-size: 14px; }

/* ── ARCHIVE LIST ─────────────────────────────────────────────── */
.archive-list { list-style: none; }
.archive-item {
  padding: 9px 0;
  border-bottom: 1px solid #F0EDE8;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.archive-item:last-child { border-bottom: none; }
.archive-date {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--ink-mid);
  text-transform: uppercase;
}
.archive-count {
  font-size: 11px;
  color: var(--ink-muted);
  background: #F0EDE8;
  padding: 2px 7px;
  border-radius: 10px;
  font-family: 'Barlow Condensed', sans-serif;
}
.archive-item:hover .archive-date { color: var(--red); }
.view-all-link {
  display: block;
  text-align: center;
  margin-top: 10px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  text-decoration: none;
  font-weight: 700;
}

/* ── SOCIAL LINKS ─────────────────────────────────────────────── */
.social-links { display: flex; gap: 8px; }
.social-link {
  flex: 1;
  padding: 8px;
  background: #F7F4EE;
  border: 1px solid var(--light-border);
  border-radius: 3px;
  text-align: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-mid);
  cursor: pointer;
  text-decoration: none;
  transition: all 0.1s;
}
.social-link:hover { background: var(--ink); color: white; }

/* ── HISTORY PAGE ─────────────────────────────────────────────── */
.history-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.history-card {
  background: var(--white);
  border: 1px solid var(--light-border);
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.15s;
}
.history-card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  transform: translateY(-2px);
}
.history-card-header {
  background: var(--black);
  padding: 12px 14px;
}
.history-card-date {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  color: white;
  letter-spacing: 0.05em;
}
.history-card-body { padding: 12px 14px; }
.history-card-headlines { list-style: none; }
.history-card-headlines li {
  font-size: 12px;
  color: var(--ink-mid);
  padding: 4px 0;
  border-bottom: 1px solid #F0ECE8;
  line-height: 1.35;
  font-family: 'Barlow Condensed', sans-serif;
  letter-spacing: 0.02em;
}
.history-card-headlines li:last-child { border-bottom: none; }
.history-card-headlines li::before {
  content: attr(data-n) '.  ';
  color: var(--red);
  font-weight: 700;
  font-size: 10px;
}
.history-card-footer {
  padding: 10px 14px;
  border-top: 1px solid #F0ECE8;
  background: #FAFAF8;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}
.history-view-btn {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 700;
}
.history-tags { display: flex; gap: 4px; flex-wrap: wrap; }
.history-tag-mini {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: #EEE;
  color: #777;
  padding: 2px 5px;
  border-radius: 2px;
  font-family: 'Barlow Condensed', sans-serif;
  text-decoration: none;
}
.history-tag-mini:hover { background: var(--ink); color: white; }

/* ── TAGS PAGE ────────────────────────────────────────────────── */
.tags-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.tag-card {
  background: var(--white);
  border: 1px solid var(--light-border);
  border-radius: 4px;
  padding: 16px;
  cursor: pointer;
  transition: all 0.15s;
  display: block;
}
.tag-card:hover {
  box-shadow: 0 3px 12px rgba(0,0,0,0.08);
  border-color: #CCC;
}
.tag-card-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 0.06em;
  color: var(--ink);
  margin-bottom: 3px;
}
.tag-card-count {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 10px;
}
.tag-card-bar {
  height: 3px;
  background: var(--red);
  border-radius: 2px;
  margin-bottom: 10px;
}

/* ── PAGINATION ───────────────────────────────────────────────── */
.pagination {
  display: flex;
  gap: 6px;
  justify-content: center;
  padding: 24px 0;
  flex-wrap: wrap;
}
.page-btn {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  letter-spacing: 0.06em;
  padding: 6px 14px;
  border-radius: 3px;
  text-decoration: none;
  background: var(--white);
  color: var(--ink-mid);
  border: 1px solid var(--light-border);
  transition: all 0.1s;
}
.page-btn:hover { background: var(--ink); color: white; border-color: var(--ink); }
.page-btn.active { background: var(--red); color: white; border-color: var(--red); }

/* ── EMPTY STATE ──────────────────────────────────────────────── */
.empty-state { padding: 60px 0; text-align: center; }
.empty-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mid);
}
.empty-sub { font-size: 14px; color: var(--ink-muted); margin-top: 8px; }

/* ── SIDEBAR SKYSCRAPER ───────────────────────────────────────── */
.sidebar-skyscraper { display: none; }
@media (min-width: 1100px) { .sidebar-skyscraper { display: block; } }

/* ── FOOTER ───────────────────────────────────────────────────── */
footer {
  background: var(--black);
  color: #555;
  margin-top: 40px;
  padding: 36px 0 20px;
  border-top: 3px solid var(--red);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.footer-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  color: white;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}
.footer-logo span { color: var(--red); }
.footer-tagline {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #555;
  margin-bottom: 20px;
}
.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.footer-links a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #666;
  text-decoration: none;
}
.footer-links a:hover { color: var(--red); }
.footer-divider { height: 1px; background: #222; margin: 16px 0; }
.footer-api-credits {
  font-size: 11px;
  color: #555;
  margin-bottom: 8px;
  line-height: 1.7;
}
.footer-api-credits a { color: #777; text-decoration: none; }
.footer-api-credits a:hover { color: var(--red); }
.footer-fine { font-size: 11px; color: #444; line-height: 1.6; }
.footer-fine span { color: #444; }

/* ── READING PROGRESS BAR ─────────────────────────────────────── */
#reading-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  background: var(--red);
  z-index: 9999;
  width: 0;
  transition: width 0.1s;
  pointer-events: none;
}

/* ── RESPONSIVE ───────────────────────────────────────────────── */
@media (max-width: 960px) {
  .page-layout { grid-template-columns: 1fr; }
  .sidebar { display: none; }
  .history-grid { grid-template-columns: repeat(2, 1fr); }
  .tags-page-grid { grid-template-columns: repeat(2, 1fr); }
  .logo-wordmark { font-size: 52px; }
}
@media (max-width: 640px) {
  .history-grid { grid-template-columns: 1fr; }
  .tags-page-grid { grid-template-columns: 1fr; }
  .story-card.has-image { grid-template-columns: 44px 1fr; }
  .story-image { display: none; }
  .hero-band { height: 220px; }
  .hero-lead { font-size: 26px; }
  .sticky-footer-ad ins { width: 100% !important; }
  .footer-links { gap: 12px; }
  .masthead-inner { flex-direction: column; align-items: flex-start; gap: 8px; }
  .masthead-meta { text-align: left; }
}
@media (max-width: 400px) {
  .logo-wordmark { font-size: 42px; }
  .section-label { font-size: 22px; }
}
