/* ──────────────────────────────────────────────────────────────────────────
   The Alberta Advantage — full stylesheet
   Extracted from the original mockup, extended to cover article/category/archive.
   ────────────────────────────────────────────────────────────────────────── */

:root {
  --ink: #1a1a1a;
  --paper: #f4f0e4;
  --gold: #c8a84b;
  --gold-dark: #9e7e2e;
  --red: #b5291c;
  --muted: #6b6355;
  --rule: #2a2a2a;
  --col-gap: 24px;
}

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

body {
  background: var(--paper);
  color: var(--ink);
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 16px;
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
a:hover { color: var(--red); }

/* ── MASTHEAD ─────────────────────────────────────────────────────────── */
.masthead {
  border-bottom: 3px double var(--rule);
  padding: 0 2rem;
  background: var(--paper);
}
.masthead-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0 4px;
  border-bottom: 1px solid var(--rule);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--muted);
  text-transform: uppercase;
}
.masthead-top .edition {
  font-style: italic;
  font-family: 'Source Serif 4', serif;
  text-transform: none;
  letter-spacing: 0;
  font-size: 12px;
}
.masthead-title { text-align: center; padding: 16px 0 8px; }
.masthead-title a { display: block; }
.masthead-title h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(42px, 8vw, 96px);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.masthead-title h1 span { color: var(--gold); }
.masthead-tagline {
  font-family: 'Source Serif 4', serif;
  font-style: italic;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--muted);
  margin-top: 6px;
}
.masthead-rule { border: none; border-top: 1px solid var(--rule); margin: 8px 0 0; }

/* ── NAV ──────────────────────────────────────────────────────────────── */
nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  border-bottom: 3px double var(--rule);
  padding: 0 2rem;
  background: var(--ink);
}
nav a {
  color: var(--paper);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 8px 16px;
  transition: background 0.15s, color 0.15s;
  font-family: 'Source Serif 4', serif;
  font-weight: 600;
}
nav a:hover { background: var(--gold); color: var(--ink); }

/* ── TICKER ───────────────────────────────────────────────────────────── */
.ticker {
  background: var(--red);
  color: white;
  padding: 6px 0;
  overflow: hidden;
  font-size: 12px;
  letter-spacing: 0.06em;
  display: flex;
  align-items: center;
}
.ticker-label {
  background: var(--gold);
  color: var(--ink);
  padding: 4px 12px;
  font-weight: 600;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  white-space: nowrap;
  flex-shrink: 0;
}
.ticker-track {
  display: flex;
  animation: ticker 80s linear infinite;
  white-space: nowrap;
  padding-left: 2rem;
}
.ticker-track span { padding: 0 2rem; }
.ticker-track span::after { content: ' ✦ '; color: var(--gold); }
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ── LAYOUT ───────────────────────────────────────────────────────────── */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 2rem;
}
.main-grid {
  display: grid;
  grid-template-columns: 1fr 1px 340px;
  gap: var(--col-gap);
  padding: 2rem 0;
}
.col-divider { background: var(--rule); opacity: 0.2; width: 1px; }

/* ── LEAD STORY ───────────────────────────────────────────────────────── */
.lead-story { padding-right: var(--col-gap); border-right: 1px solid rgba(0,0,0,0.15); }
.kicker {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 600;
  font-family: 'Source Serif 4', serif;
  margin-bottom: 6px;
}
.lead-story h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.1;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.lead-story h2 em { font-style: italic; color: var(--gold-dark); }
.lead-story h2 a { color: inherit; }
.lead-story h2 a:hover { color: var(--gold-dark); }
.lead-dek {
  font-size: 18px;
  font-weight: 300;
  font-style: italic;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 16px;
  border-left: 3px solid var(--gold);
  padding-left: 14px;
}
.byline {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 16px;
}
.lead-image {
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
  display: flex;
  align-items: flex-end;
  margin-bottom: 8px;
  overflow: hidden;
  position: relative;
}
.lead-image-inner {
  width: 100%;
  padding: 12px 16px;
  background: linear-gradient(transparent, rgba(0,0,0,0.85));
  font-size: 11px;
  color: rgba(255,255,255,0.65);
  font-style: italic;
}
.oil-art {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.oil-art svg { opacity: 0.18; }
.article-body { font-size: 16px; line-height: 1.75; font-weight: 300; }
.article-body p { margin-bottom: 1em; }
.article-body strong { font-weight: 600; }
.article-body em { font-style: italic; }
.pull-quote {
  border-top: 3px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  padding: 16px 0 12px;
  margin: 24px 0;
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-style: italic;
  line-height: 1.3;
  color: var(--red);
}
.satire-notice {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  border-top: 1px solid rgba(0,0,0,0.15);
  padding-top: 8px;
  margin-top: 20px;
}
.tag-list {
  font-size: 11px;
  letter-spacing: 0.05em;
  color: var(--muted);
  margin-top: 1.5rem;
  font-style: italic;
}

/* ── SIDEBAR ──────────────────────────────────────────────────────────── */
.sidebar { padding-top: 4px; }
.sidebar-section {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(0,0,0,0.12);
}
.sidebar-section:last-child { border-bottom: none; }
.sidebar-label {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  font-family: 'Source Serif 4', serif;
  padding: 4px 10px;
  background: var(--ink);
  color: var(--paper);
  display: inline-block;
  margin-bottom: 14px;
}
.sidebar-item {
  padding: 10px 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  transition: padding-left 0.15s;
}
.sidebar-item:hover { padding-left: 6px; }
.sidebar-item:last-child { border-bottom: none; }
.sidebar-item h4 {
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 4px;
}
.sidebar-item .meta {
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.sidebar-item .meta .cat { color: var(--red); font-weight: 600; }

.opinion-box {
  background: var(--ink);
  color: var(--paper);
  padding: 16px;
  margin-top: 1rem;
}
.opinion-box .op-label {
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
  font-weight: 600;
}
.opinion-box h4 {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-style: italic;
  line-height: 1.35;
  color: var(--paper);
}
.opinion-box .op-author {
  font-size: 11px;
  color: rgba(244,240,228,0.5);
  margin-top: 10px;
  padding-top: 8px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

/* ── KO-FI / HOUSE AD ─────────────────────────────────────────────────── */
.house-ad {
  text-align: center;
  border: 1px solid rgba(0,0,0,0.2);
  padding: 16px;
  margin: 1.5rem 0;
  background: #fffef8;
}
.house-ad .ad-label {
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.house-ad p {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 0.06em;
  color: var(--red);
  line-height: 1.1;
}
.house-ad small {
  display: block;
  font-size: 11px;
  font-style: italic;
  color: var(--muted);
  margin-top: 4px;
}
.kofi-box {
  margin-top: 1.5rem;
  padding: 16px;
  border: 1px dashed rgba(0,0,0,0.2);
  text-align: center;
  background: #fffef8;
}
.kofi-label {
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
  font-weight: 600;
}
.kofi-pitch {
  font-family: 'Playfair Display', serif;
  font-size: 14px;
  font-style: italic;
  line-height: 1.4;
  color: var(--ink);
  margin-bottom: 12px;
}
.kofi-btn {
  display: inline-block;
  background: var(--ink);
  color: var(--paper);
  padding: 9px 20px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: 'Source Serif 4', serif;
  font-weight: 600;
  transition: background 0.15s, color 0.15s;
}
.kofi-btn:hover { background: var(--gold); color: var(--ink); }
.kofi-fine {
  font-size: 10px;
  color: var(--muted);
  margin-top: 8px;
  font-style: italic;
}
.kofi-link {
  display: inline-block;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 7px 18px;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: 'Source Serif 4', serif;
  transition: background 0.15s, color 0.15s;
}
.kofi-link:hover { background: var(--gold); color: var(--ink); }

/* ── BELOW FOLD ───────────────────────────────────────────────────────── */
.below-fold { border-top: 3px double var(--rule); padding: 1.5rem 0; }
.below-fold-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--col-gap);
}
.below-fold-item {
  padding-right: var(--col-gap);
  border-right: 1px solid rgba(0,0,0,0.12);
}
.below-fold-item:last-child { border-right: none; padding-right: 0; }
.below-fold-item h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 8px;
}
.below-fold-item h3 a:hover { color: var(--gold-dark); }
.below-fold-item p {
  font-size: 14px;
  font-weight: 300;
  color: #444;
  line-height: 1.6;
}

/* ── SINGLE ARTICLE PAGE ──────────────────────────────────────────────── */
.article-page { padding: 2rem 0; }
.single-article {
  max-width: 760px;
  margin: 0 auto;
}
.single-article h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.05;
  font-weight: 700;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.related { margin-top: 3rem; padding-top: 2rem; border-top: 3px double var(--rule); }
.section-heading {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  margin-bottom: 1rem;
  font-weight: 700;
}
.section-heading .kicker {
  display: inline-block;
  margin-right: 12px;
  vertical-align: middle;
}

/* ── CATEGORY / ARCHIVE PAGES ─────────────────────────────────────────── */
.category-page, .archive-page { padding: 2rem 0; }
.article-list { list-style: none; }
.article-list-item {
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.12);
}
.article-list-item:last-child { border-bottom: none; }
.article-list-item h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  line-height: 1.2;
  font-weight: 700;
  margin: 4px 0 8px;
}
.article-list-item .dek {
  font-style: italic;
  color: var(--muted);
  font-size: 15px;
}
.article-list-item .meta {
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--muted);
  text-transform: uppercase;
  margin-top: 8px;
}

.archive-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
}
.archive-table th {
  text-align: left;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  border-bottom: 2px solid var(--rule);
  padding: 8px 12px;
}
.archive-table td {
  padding: 12px;
  border-bottom: 1px solid rgba(0,0,0,0.1);
  vertical-align: top;
}
.archive-date { white-space: nowrap; font-size: 12px; color: var(--muted); }
.archive-cat {
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 600;
  white-space: nowrap;
}
.archive-table small { color: var(--muted); font-style: italic; }

.empty-state {
  padding: 3rem 1rem;
  text-align: center;
  font-style: italic;
  color: var(--muted);
  font-size: 18px;
  font-family: 'Playfair Display', serif;
}

/* ── ERROR PAGE ───────────────────────────────────────────────────────── */
.error-page { padding: 4rem 0; max-width: 700px; margin: 0 auto; }
.error-page h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 5vw, 48px);
  line-height: 1.1;
  font-weight: 700;
  margin-bottom: 1rem;
}

/* ── FOOTER ───────────────────────────────────────────────────────────── */
footer {
  background: var(--ink);
  color: rgba(244,240,228,0.6);
  padding: 2rem;
  font-size: 12px;
  text-align: center;
  border-top: 4px solid var(--gold);
}
footer strong {
  color: var(--gold);
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  display: block;
  margin-bottom: 6px;
}
footer .disclaimer {
  max-width: 600px;
  margin: 12px auto 0;
  font-style: italic;
  font-size: 11px;
  line-height: 1.7;
  opacity: 0.7;
}

/* ── ARCHIVE CONTROLS (search + filter + sort) ───────────────────────── */
.archive-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin: 1.5rem 0 0.5rem;
  padding: 12px;
  background: rgba(200, 168, 75, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.12);
}
.archive-controls input[type="search"] {
  flex: 1 1 220px;
  min-width: 0;
  padding: 8px 12px;
  font-family: 'Source Serif 4', serif;
  font-size: 14px;
  border: 1px solid rgba(0, 0, 0, 0.25);
  background: #fffef8;
  color: var(--ink);
}
.archive-controls input[type="search"]:focus {
  outline: 2px solid var(--gold);
  outline-offset: -1px;
}
.archive-controls select,
.archive-controls button {
  padding: 8px 14px;
  font-family: 'Source Serif 4', serif;
  font-size: 13px;
  letter-spacing: 0.04em;
  background: #fffef8;
  color: var(--ink);
  border: 1px solid rgba(0, 0, 0, 0.25);
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
}
.archive-controls select:hover,
.archive-controls button:hover {
  background: var(--gold);
  border-color: var(--gold-dark);
}
.archive-controls #archive-sort .sort-arrow { margin-left: 4px; }
.archive-controls #archive-reset {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}
.archive-count {
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0.5rem 0 1rem;
}
.archive-empty {
  padding: 2rem 1rem;
  text-align: center;
  font-style: italic;
  color: var(--muted);
}

/* ── FLOATING DONATE BUTTON ──────────────────────────────────────────── */
.floating-donate {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 50;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  background: var(--gold);
  color: var(--ink);
  font-family: 'Source Serif 4', serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid var(--gold-dark);
  border-radius: 999px;
  box-shadow: 0 4px 16px rgba(26, 26, 26, 0.25);
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
  animation: donate-pulse 14s ease-in-out infinite;
}
.floating-donate:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(26, 26, 26, 0.35);
  background: #d6b859;
  color: var(--ink);
  animation: none;
}
.floating-donate-icon {
  font-size: 16px;
  line-height: 1;
}
.floating-donate-text {
  line-height: 1;
}
@keyframes donate-pulse {
  /* Subtle pulse every 14s — draws the eye without being obnoxious */
  0%, 90%, 100% { box-shadow: 0 4px 16px rgba(26, 26, 26, 0.25); }
  93% { box-shadow: 0 4px 16px rgba(26, 26, 26, 0.25), 0 0 0 0 rgba(200, 168, 75, 0.6); }
  96% { box-shadow: 0 4px 16px rgba(26, 26, 26, 0.25), 0 0 0 14px rgba(200, 168, 75, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .floating-donate { animation: none; }
}

/* ── DONATE PAGE (1-screen layout) ────────────────────────────────────── */
.donate-page {
  padding: 1.25rem 0 1.5rem;
  max-width: 720px;
}
.donate-hero {
  margin-bottom: 1rem;
}
.donate-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4.2vw, 42px);
  line-height: 1.08;
  font-weight: 700;
  margin: 6px 0 10px;
  letter-spacing: -0.01em;
}
.donate-hero .lead-dek {
  font-size: 17px;
  line-height: 1.45;
  margin: 0;
}
.donate-section p {
  font-size: 15.5px;
  line-height: 1.55;
  margin-bottom: 0.6em;
}
.donate-cta-row {
  margin: 1.25rem 0;
  text-align: center;
  padding: 1.1rem 1rem;
  background: rgba(200, 168, 75, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.12);
}
.donate-cta-primary {
  display: inline-block;
  background: var(--ink);
  color: var(--paper);
  padding: 12px 28px;
  font-family: 'Source Serif 4', serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 2px solid var(--gold);
  transition: background 0.15s, color 0.15s, transform 0.1s;
}
.donate-cta-primary:hover {
  background: var(--gold);
  color: var(--ink);
  transform: translateY(-1px);
}
.donate-cta-note {
  margin-top: 10px !important;
  font-size: 12px !important;
  font-style: italic;
  color: var(--muted);
}
.donate-section {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
}
.donate-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.donate-fineprint {
  font-style: italic;
  color: var(--muted);
  font-size: 13.5px !important;
}
.donate-sign {
  font-style: italic;
  color: var(--gold);
  font-size: 15px !important;
  margin: 1rem 0 0 !important;
  text-align: right;
  background: var(--ink);
  padding: 10px 14px;
}

/* ── SIDEBAR PITCH BOX (Got News?) ────────────────────────────────────── */
.pitch-box {
  display: block;
  margin-bottom: 2rem;
  padding: 16px 14px 14px;
  background: var(--ink);
  color: var(--paper);
  border: 2px solid var(--red);
  text-align: center;
  position: relative;
  transition: transform 0.1s, box-shadow 0.15s;
}
.pitch-box:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 0 var(--red);
}
.pitch-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 13px;
  letter-spacing: 0.18em;
  color: var(--gold);
  margin-bottom: 4px;
}
.pitch-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px;
  letter-spacing: 0.04em;
  color: var(--paper);
  line-height: 1;
  margin-bottom: 10px;
}
.pitch-body {
  font-family: 'Source Serif 4', serif;
  font-size: 12.5px;
  font-style: italic;
  line-height: 1.45;
  color: rgba(244, 240, 228, 0.85);
  margin-bottom: 12px;
  text-align: left;
}
.pitch-cta {
  display: inline-block;
  background: var(--red);
  color: var(--paper);
  padding: 7px 16px;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: 'Source Serif 4', serif;
  font-weight: 600;
}
.pitch-box:hover .pitch-cta { background: var(--gold); color: var(--ink); }

/* ── RESPONSIVE ───────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .main-grid { grid-template-columns: 1fr 1px 280px; }
  nav a { padding: 8px 12px; font-size: 10px; }
}

@media (max-width: 760px) {
  .main-grid { grid-template-columns: 1fr; }
  .col-divider { display: none; }
  .lead-story { border-right: none; padding-right: 0; }
  .below-fold-grid { grid-template-columns: 1fr; }
  .below-fold-item { border-right: none; padding-right: 0; border-bottom: 1px solid rgba(0,0,0,0.12); padding-bottom: 1rem; margin-bottom: 1rem; }
  .below-fold-item:last-child { border-bottom: none; margin-bottom: 0; }
  nav { flex-wrap: wrap; padding: 0 0.5rem; }
  nav a { padding: 10px 12px; font-size: 11px; }
  .masthead { padding: 0 1rem; }
  .container { padding: 0 1rem; }
  .article-list-item h3 { font-size: 18px; }
  .archive-table { font-size: 14px; }
  .archive-table th, .archive-table td { padding: 8px 6px; }
  .single-article h1 { font-size: clamp(26px, 7vw, 38px); }
  .lead-dek { font-size: 16px; }
}

@media (max-width: 760px) {
  .floating-donate {
    right: 16px;
    bottom: 16px;
    padding: 10px 18px;
    font-size: 11px;
  }
  .archive-controls { padding: 10px; }
}

@media (max-width: 480px) {
  body { font-size: 15px; }
  .masthead-top { flex-wrap: wrap; gap: 4px; font-size: 10px; }
  .floating-donate-text { display: none; }
  .floating-donate { padding: 12px; }
  .floating-donate-icon { font-size: 20px; }
  .masthead-title h1 { font-size: clamp(36px, 12vw, 56px); }
  .masthead-tagline { font-size: 11px; }
  .ticker-label { font-size: 9px; padding: 3px 8px; }
  .ticker { font-size: 11px; }
  .lead-story h2 { font-size: clamp(24px, 7vw, 32px); }
  .pull-quote { font-size: 18px; }
  .archive-table { font-size: 13px; }
  .archive-date { font-size: 11px; }
  footer { padding: 1.5rem 1rem; }
  footer .disclaimer { font-size: 10.5px; }
}
