/* ============================================================
   THE DUNCAN DISPATCH — Main Stylesheet
   Newspaper broadsheet aesthetic, WSJ-inspired
   ============================================================ */

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

/* ── Reset & Base ─────────────────────────────────────────── */

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

:root {
  /* Near-white, barely warm — WSJ crispness */
  --paper:      #FDFCF8;
  --paper-dark: #F3F0EA;
  --paper-mid:  #F8F5F0;

  /* Ink */
  --ink:        #111111;
  --ink-light:  #2E2E2E;
  --ink-muted:  #6B6459;

  /* Rules */
  --rule:       #CCBFB0;
  --rule-light: #E2DBD0;

  /* WSJ blue — the signature accent */
  --accent:     #0C5DA8;
  --accent-mid: #1A6DC0;
  --accent-pale:#E8F0F9;

  /* Fonts */
  --font-head:  'Libre Baskerville', 'Playfair Display', Georgia, serif;
  --font-body:  'Source Serif 4', 'Libre Baskerville', Georgia, serif;
  --font-sans:  'Arial Narrow', Arial, Helvetica, sans-serif;

  --max-width: 1200px;
  --col-gap:   1.75rem;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-feature-settings: "kern" 1, "liga" 1;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.18s;
}
a:hover { color: var(--accent-mid); }

img { display: block; max-width: 100%; }

/* ── Utilities ────────────────────────────────────────────── */

.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  overflow: hidden; clip: rect(0 0 0 0);
}

.rule-thick  { border: none; border-top: 4px double var(--ink); }
.rule-thin   { border: none; border-top: 1px solid var(--rule); }
.rule-accent { border: none; border-top: 2px solid var(--accent); }

/* ── Section Labels (WSJ style: thin rule above + uppercase text) ── */

.section-label {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  border-top: 1.5px solid var(--accent);
  padding-top: 0.3rem;
  margin-bottom: 0.55rem;
}

/* ── Page Wrapper ─────────────────────────────────────────── */

.page-wrapper {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── Masthead ─────────────────────────────────────────────── */

.masthead {
  background: var(--paper);
  border-top: 4px solid var(--ink);
}

.masthead__top-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-sans);
  font-size: 0.67rem;
  letter-spacing: 0.07em;
  color: var(--ink-muted);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--rule);
  gap: 1rem;
}

.masthead__top-strip a {
  color: var(--ink-muted);
  transition: color 0.18s;
}
.masthead__top-strip a:hover { color: var(--accent); }

.masthead__edition-info {
  display: flex;
  align-items: center;
}
.masthead__edition-info span,
.masthead__edition-info a {
  padding: 0 0.7rem;
  border-right: 1px solid var(--rule);
}
.masthead__edition-info span:first-child,
.masthead__edition-info a:first-child { padding-left: 0; }
.masthead__edition-info span:last-child,
.masthead__edition-info a:last-child  { border-right: none; }

/* ─── Paper Name — CUSTOMIZE HERE ────────────────────────── */

.masthead__title-wrap {
  text-align: center;
  padding: 1rem 0 0.75rem;
  position: relative;
}
/* WSJ-style: thin rule bookending the title */
.masthead__title-wrap::before,
.masthead__title-wrap::after {
  content: '';
  display: block;
  height: 1px;
  background: var(--ink);
  max-width: 98%;
  margin: 0 auto;
}
.masthead__title-wrap::before { margin-bottom: 0.9rem; }
.masthead__title-wrap::after  { margin-top: 0.75rem; }

.masthead__title {
  font-family: var(--font-head);
  font-size: clamp(2.6rem, 6vw, 5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--ink);
}

.masthead__tagline {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-top: 0.65rem;
}

/* Blue stripe below masthead — WSJ's signature color bar */
.masthead__rule-bar {
  height: 3px;
  background: var(--accent);
}

/* ── Top Navigation ───────────────────────────────────────── */

/* WSJ-style section tabs: light background, accent text, thin rules */
.top-nav {
  background: var(--paper);
  border-bottom: 2px solid var(--accent);
}

.top-nav__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
}

.top-nav__link {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  padding: 0.45rem 1rem;
  border-right: 1px solid var(--rule-light);
  transition: color 0.18s, background 0.18s;
  position: relative;
}
.top-nav__link:first-child { border-left: 1px solid var(--rule-light); }
.top-nav__link:hover {
  color: var(--accent);
  text-decoration: none;
}
.top-nav__link.active {
  color: var(--accent);
  font-weight: 700;
}
/* Blue underline on active — WSJ's active section indicator */
.top-nav__link.active::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 2px;
  background: var(--accent);
}

/* ── Front Page ───────────────────────────────────────────── */

.front-page { padding: 1.1rem 0 2.5rem; }

/* Hero: featured article + sidebar */
.front-hero {
  display: grid;
  grid-template-columns: 1fr 290px;
  gap: 0;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--rule);
  margin-bottom: 1.5rem;
}

/* Vertical hairline between hero article and sidebar */
.front-hero .front-sidebar {
  border-left: 1px solid var(--rule);
  padding-left: var(--col-gap);
}

.hero-article {
  padding-right: var(--col-gap);
}

.hero-article__label { margin-bottom: 0.6rem; }

.hero-article__headline {
  font-family: var(--font-head);
  font-size: clamp(1.9rem, 3.5vw, 2.85rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
  color: var(--ink);
}
.hero-article__headline a { color: inherit; }
.hero-article__headline a:hover { color: var(--accent); text-decoration: none; }

.hero-article__subtitle {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--ink-light);
  line-height: 1.45;
  margin-bottom: 0.8rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--rule-light);
}

/* ── Author photos ────────────────────────────────────────── */

/* Sidebar: casual/outdoor photo above the bio blurb */
.author-sidebar-photo {
  width: 60%;
  display: block;
  margin: 0 auto 0.85rem;
  border-radius: 4px;
  filter: grayscale(12%);
}

/* Article byline: small circular portrait next to byline text */
.byline-photo-wrap {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.2rem;
}
.byline-photo {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 10%;
  flex-shrink: 0;
  border: 2px solid var(--rule);
  filter: grayscale(10%);
}
.byline-text { flex: 1; }

/* ── Hero byline ──────────────────────────────────────────── */

.hero-article__byline {
  font-family: var(--font-sans);
  font-size: 0.66rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 0.15rem;
}

.hero-article__dateline-date {
  font-family: var(--font-sans);
  font-size: 0.63rem;
  letter-spacing: 0.05em;
  color: var(--ink-muted);
  margin-bottom: 0.9rem;
}

.hero-article__excerpt {
  font-size: 0.975rem;
  line-height: 1.72;
  color: var(--ink-light);
  margin-bottom: 1.1rem;
}

.hero-article__read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--font-sans);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  transition: gap 0.18s, color 0.18s;
}
.hero-article__read-more::after { content: '→'; }
.hero-article__read-more:hover {
  color: var(--accent-mid);
  gap: 0.6rem;
  text-decoration: none;
}

/* ── Sidebar ──────────────────────────────────────────────── */

.front-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.sidebar-widget {
  padding-bottom: 1.1rem;
  border-bottom: 1px solid var(--rule-light);
}
.sidebar-widget:last-child { border-bottom: none; padding-bottom: 0; }

/* WSJ-style widget title: thin rule above + uppercase label */
.sidebar-widget__title {
  font-family: var(--font-sans);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  border-top: 1.5px solid var(--accent);
  padding-top: 0.3rem;
  margin-bottom: 0.75rem;
  display: block;
}

.about-blurb p {
  font-size: 0.8rem;
  line-height: 1.62;
  color: var(--ink-light);
  margin-bottom: 0.5rem;
}
.about-blurb p:last-of-type { margin-bottom: 0; }

.contact-link {
  display: inline-block;
  margin-top: 0.7rem;
  font-family: var(--font-sans);
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1.5px solid var(--accent);
  padding: 0.28rem 0.75rem;
  transition: background 0.18s, color 0.18s;
}
.contact-link:hover {
  background: var(--accent);
  color: #fff;
  text-decoration: none;
}

/* Sidebar index */
.sidebar-index { list-style: none; }
.sidebar-index li {
  padding: 0.45rem 0;
  border-bottom: 1px solid var(--rule-light);
  line-height: 1.3;
}
.sidebar-index li:last-child { border-bottom: none; }
.sidebar-index a {
  font-family: var(--font-head);
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--ink);
  display: block;
  margin-bottom: 0.1rem;
  transition: color 0.18s;
}
.sidebar-index a:hover { color: var(--accent); text-decoration: none; }
.sidebar-index .index-date {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.58rem;
  color: var(--ink-muted);
  letter-spacing: 0.05em;
}

/* ── Secondary Articles Grid ──────────────────────────────── */

/* WSJ-style section header: rule + label inset */
.section-header {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.1rem;
  border-top: 2px solid var(--accent);
  padding-top: 0.35rem;
}

.section-header__label {
  font-family: var(--font-sans);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  white-space: nowrap;
  background: none;
  padding: 0;
}

.section-header__rule { display: none; } /* rule is now the border-top on .section-header */

.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-bottom: 2rem;
}

.article-card {
  padding-right: var(--col-gap);
  padding-bottom: 1.25rem;
  border-right: 1px solid var(--rule);  /* WSJ hairline column dividers */
  padding-top: 0;
}
.article-card:last-child {
  border-right: none;
  padding-right: 0;
}
.article-card:not(:first-child) {
  padding-left: var(--col-gap);
  padding-right: 0;
}
.article-card:not(:first-child):not(:last-child) {
  padding-right: var(--col-gap);
}

.article-card__label { margin-bottom: 0.4rem; }

.article-card__headline {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.4rem;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.article-card__headline a { color: inherit; }
.article-card__headline a:hover { color: var(--accent); text-decoration: none; }

.article-card__dateline-date {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  color: var(--ink-muted);
  letter-spacing: 0.04em;
  margin-bottom: 0.5rem;
}

.article-card__excerpt {
  font-size: 0.86rem;
  line-height: 1.65;
  color: var(--ink-light);
  margin-bottom: 0.7rem;
}

.article-card__read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  transition: gap 0.18s, color 0.18s;
}
.article-card__read-more::after { content: '→'; }
.article-card__read-more:hover {
  color: var(--accent-mid);
  gap: 0.55rem;
  text-decoration: none;
}

/* ── Single Article Page ──────────────────────────────────── */

.article-page {
  max-width: 740px;
  margin: 0 auto;
  padding: 1.4rem 0 3rem;
}

.article-back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--font-sans);
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 1.1rem;
  transition: color 0.18s, gap 0.18s;
}
.article-back-link::before { content: '←'; }
.article-back-link:hover { color: var(--accent); gap: 0.55rem; text-decoration: none; }

.article-header {
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 3px double var(--ink);
}

.article-header .section-label { margin-bottom: 0.65rem; }

.article-title {
  font-family: var(--font-head);
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin-bottom: 0.6rem;
  color: var(--ink);
}

.article-subtitle {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--ink-light);
  line-height: 1.45;
  margin-bottom: 0.9rem;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid var(--rule-light);
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  font-family: var(--font-sans);
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.article-meta span {
  padding-right: 0.7rem;
  margin-right: 0.7rem;
  border-right: 1px solid var(--rule);
}
.article-meta span:last-child { border-right: none; margin-right: 0; padding-right: 0; }

/* Article body */
.article-body {
  font-size: 1.025rem;
  line-height: 1.8;
  color: var(--ink);
  hyphens: auto;
}

.article-body p { margin-bottom: 0; }
.article-body p + p { text-indent: 1.5em; }

/* Drop cap */
.article-body > p:first-child::first-letter {
  float: left;
  font-family: var(--font-head);
  font-size: 4.2em;
  line-height: 0.76;
  font-weight: 700;
  color: var(--accent);
  margin-right: 0.07em;
  margin-top: 0.08em;
  padding: 0;
}

/* WSJ-style pull quote: left border + no top/bottom rules */
.pull-quote {
  border-left: 3px solid var(--accent);
  padding-left: 1.1rem;
  margin: 2rem 0 2rem 0.5rem;
  clear: both;
}
.pull-quote p {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 1.2rem;
  line-height: 1.5;
  color: var(--ink-light);
  text-indent: 0 !important;
  margin-bottom: 0 !important;
}
.pull-quote p::before { content: '\201C'; color: var(--accent); }
.pull-quote p::after  { content: '\201D'; color: var(--accent); }

/* ── Archive Page ─────────────────────────────────────────── */

.archive-page { padding: 1.4rem 0 3rem; }

.archive-intro {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.07em;
  color: var(--ink-muted);
  margin-bottom: 1.25rem;
}

.archive-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }

.archive-table thead th {
  font-family: var(--font-sans);
  font-size: 0.57rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--paper);
  border-top: 1.5px solid var(--accent);
  border-bottom: 1px solid var(--rule);
  padding: 0.4rem 0.75rem;
  text-align: left;
}

.archive-table tbody tr {
  border-bottom: 1px solid var(--rule-light);
  transition: background 0.15s;
}
.archive-table tbody tr:hover { background: var(--paper-dark); }

.archive-table td { padding: 0.75rem; vertical-align: top; }

.archive-table .col-date {
  font-family: var(--font-sans);
  font-size: 0.66rem;
  letter-spacing: 0.04em;
  color: var(--ink-muted);
  white-space: nowrap;
  width: 120px;
}

.archive-table .col-title a {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--ink);
  line-height: 1.3;
  display: block;
  margin-bottom: 0.2rem;
  transition: color 0.18s;
}
.archive-table .col-title a:hover { color: var(--accent); text-decoration: none; }

.archive-table .col-subtitle {
  display: block;
  font-family: var(--font-body);
  font-style: italic;
  font-size: 0.78rem;
  color: var(--ink-muted);
  margin-top: 0.15rem;
}

.archive-table .col-excerpt {
  font-size: 0.8rem;
  color: var(--ink-muted);
  line-height: 1.55;
}

/* ── Ornament ─────────────────────────────────────────────── */

.ornament {
  text-align: center;
  color: var(--rule);
  font-size: 0.9rem;
  letter-spacing: 0.5em;
  margin: 1.5rem 0;
  user-select: none;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.ornament::before,
.ornament::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--rule);
}

/* ── Footer ───────────────────────────────────────────────── */

.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.65);
  padding: 1.25rem 0;
  margin-top: 2rem;
}

.site-footer__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.site-footer__name {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
}

.site-footer__copy {
  font-family: var(--font-sans);
  font-size: 0.63rem;
  letter-spacing: 0.05em;
  text-align: center;
}

.site-footer__nav {
  display: flex;
  font-family: var(--font-sans);
  font-size: 0.63rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.site-footer__nav a {
  color: rgba(255,255,255,0.65);
  padding: 0 0.75rem;
  border-right: 1px solid rgba(255,255,255,0.2);
  transition: color 0.18s;
}
.site-footer__nav a:first-child { padding-left: 0; }
.site-footer__nav a:last-child  { border-right: none; }
.site-footer__nav a:hover { color: #fff; text-decoration: none; }

/* ── Responsive ───────────────────────────────────────────── */

@media (max-width: 960px) {
  .front-hero { grid-template-columns: 1fr; }

  .front-hero .front-sidebar {
    border-left: none;
    border-top: 1.5px solid var(--accent);
    padding-left: 0;
    padding-top: 1.1rem;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .front-hero .hero-article { padding-right: 0; }
  .front-sidebar .sidebar-widget {
    flex: 1 1 240px;
    border-bottom: none;
    border-right: 1px solid var(--rule-light);
    padding-right: 1rem;
  }
  .front-sidebar .sidebar-widget:last-child { border-right: none; padding-right: 0; }

  .articles-grid { grid-template-columns: repeat(2, 1fr); }
  .article-card:nth-child(2) { border-right: none; }
  .article-card:nth-child(3) {
    grid-column: 1 / -1;
    border-right: none;
    border-top: 1px solid var(--rule);
    padding-top: 1rem;
    margin-top: 0.25rem;
    padding-left: 0;
  }
}

@media (max-width: 600px) {
  :root { --col-gap: 0.85rem; }

  /* Tighter page padding on phones */
  .page-wrapper { padding: 0 1rem; }

  /* Compact masthead */
  .masthead__top-strip {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2rem;
    font-size: 0.6rem;
  }
  .masthead__edition-info { gap: 0; flex-wrap: wrap; }
  /* Hide date on very small screens — too much clutter */
  .masthead__edition-info span:first-child { display: none; }
  .masthead__title-wrap { padding: 0.7rem 0 0.5rem; }
  .masthead__title { font-size: clamp(2rem, 10vw, 3rem); }
  .masthead__tagline { font-size: 0.58rem; letter-spacing: 0.1em; }

  /* Navigation: larger touch targets */
  .top-nav__inner { flex-wrap: wrap; }
  .top-nav__link {
    font-size: 0.62rem;
    padding: 0.6rem 0.75rem;
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  /* Hero article on mobile */
  .hero-article__headline { font-size: clamp(1.7rem, 7.5vw, 2.4rem); }
  .hero-article__excerpt { font-size: 0.93rem; line-height: 1.65; }

  /* Sidebar stacks on mobile */
  .front-sidebar { flex-direction: column; }
  .front-sidebar .sidebar-widget {
    border-right: none;
    padding-right: 0;
    border-bottom: 1px solid var(--rule-light);
    padding-bottom: 1rem;
  }
  /* Smaller author photo on mobile */
  .author-sidebar-photo { width: 50%; }

  /* Article grid single column */
  .articles-grid { grid-template-columns: 1fr; }
  .article-card,
  .article-card:not(:first-child),
  .article-card:not(:first-child):not(:last-child) {
    border-right: none;
    padding-right: 0;
    padding-left: 0;
    border-top: 1.5px solid var(--accent);
    padding-top: 0.75rem;
    padding-bottom: 1rem;
  }
  .article-card:nth-child(3) {
    grid-column: auto;
    border-top: 1.5px solid var(--accent) !important;
    padding-top: 0.75rem !important;
    margin-top: 0 !important;
    padding-left: 0 !important;
  }

  /* Article page */
  .article-page { padding: 1rem 0 2.5rem; }
  .article-title { font-size: clamp(1.65rem, 7vw, 2.4rem); }
  .article-body { font-size: 1rem; }
  .article-body > p:first-child::first-letter { font-size: 3.5em; }
  .pull-quote { margin-left: 0; font-size: 1rem; }

  /* Byline photo smaller on mobile */
  .byline-photo { width: 44px; height: 44px; }

  /* Archive: hide excerpt column on mobile */
  .archive-table .col-excerpt { display: none; }

  /* Footer */
  .site-footer__inner { flex-direction: column; text-align: center; gap: 0.5rem; }
  .site-footer__nav { justify-content: center; }
  .site-footer__nav a:first-child { padding-left: 0.75rem; }
}

/* ── Print ────────────────────────────────────────────────── */

@media print {
  body { background: #fff; }
  .top-nav, .site-footer { display: none; }
  .article-body { font-size: 11pt; line-height: 1.65; }
  a { color: inherit; }
}
