:root {
  --ink: #1d1d1b;
  --muted: #66625d;
  --paper: #f7f4ed;
  --rule: #c9c2b6;
  --red: #e3120b;
  --max-width: 1030px;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.55;
}
a { color: inherit; text-decoration-color: var(--red); text-decoration-thickness: 1px; text-underline-offset: 3px; }
.masthead, main, footer { width: min(calc(100% - 40px), var(--max-width)); margin-inline: auto; }
.masthead {
  padding: 28px 0 19px;
  border-top: 6px solid var(--red);
  border-bottom: 1px solid var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 20px;
}
.brand { font-family: Arial, Helvetica, sans-serif; font-weight: 800; font-size: clamp(1.25rem, 3vw, 1.75rem); letter-spacing: -0.055em; text-decoration: none; }
.masthead p, .metadata, footer { font-family: Arial, Helvetica, sans-serif; letter-spacing: .025em; }
.masthead p { margin: 0; color: var(--muted); font-size: .73rem; text-transform: uppercase; }
.intro { width: min(100%, 720px); padding: 74px 0 52px; }
.eyebrow, .metadata { color: var(--muted); font-family: Arial, Helvetica, sans-serif; font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.intro h1, .article-page h1 { font-size: clamp(2.4rem, 7vw, 4.85rem); letter-spacing: -.045em; line-height: .98; margin: 14px 0 25px; font-weight: 500; }
.intro p { font-size: 1.25rem; max-width: 630px; margin: 0; }
.article-list { border-top: 4px solid var(--ink); }
.article-card { display: grid; grid-template-columns: 270px 1fr; gap: 28px; padding: 30px 0; border-bottom: 1px solid var(--rule); }
.article-card img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; background: #ddd; }
.article-card .metadata { margin: 2px 0 8px; }
.article-card h2 { font-size: clamp(1.55rem, 3vw, 2.35rem); line-height: 1.05; letter-spacing: -.03em; margin: 0 0 12px; font-weight: 500; }
.article-card h2 a { text-decoration: none; }
.excerpt { margin: 0 0 14px; color: #3f3c38; }
.read-link { color: var(--red); font-family: Arial, Helvetica, sans-serif; font-size: .82rem; font-weight: 700; text-decoration: none; }
.read-link span { font-size: 1.2rem; }
.empty-state { border-top: 4px solid var(--ink); padding: 48px 0 110px; }
.article-page { width: min(100%, 760px); padding: 42px 0 70px; }
.back-link, .source a { color: var(--red); font-family: Arial, Helvetica, sans-serif; font-size: .8rem; font-weight: 700; text-decoration: none; }
.article-page .metadata { margin: 56px 0 13px; }
.article-page h1 { font-size: clamp(2.35rem, 6vw, 4.2rem); margin-bottom: 22px; }
.source { margin: 0 0 34px; }
.description { border-left: 3px solid var(--red); font-size: 1.1rem; margin: 20px 0 34px; padding: 3px 0 3px 17px; white-space: pre-line; }
hr { border: 0; border-top: 1px solid var(--ink); margin: 0 0 33px; }
.transcript h2 { font-family: Arial, Helvetica, sans-serif; font-size: .85rem; letter-spacing: .07em; text-transform: uppercase; }
.transcript p { font-size: 1.15rem; line-height: 1.72; }
footer { border-top: 1px solid var(--rule); color: var(--muted); font-size: .7rem; padding: 20px 0 42px; }
footer p { margin: 3px 0; }
@media (max-width: 640px) {
  .masthead { align-items: flex-start; flex-direction: column; gap: 7px; }
  .intro { padding: 48px 0 36px; }
  .article-card { grid-template-columns: 1fr; gap: 17px; }
  .article-card img { max-width: 440px; }
  .article-page .metadata { margin-top: 38px; }
}
