:root {
  --paper: #f3b4bd;
  --paper-light: #ffd3d8;
  --ink: #211313;
  --muted: #6a4545;
  --rule: #2a1717;
  --cream: #fff2d9;
  --shadow: rgba(45, 19, 19, 0.22);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 15% 10%, rgba(255,255,255,.22), transparent 28%),
    repeating-linear-gradient(0deg, rgba(0,0,0,.025), rgba(0,0,0,.025) 1px, transparent 1px, transparent 5px),
    var(--paper);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.25;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .16;
  background-image: repeating-radial-gradient(circle at 0 0, #000 0, #000 1px, transparent 1px, transparent 8px);
  mix-blend-mode: multiply;
}

.masthead, .nav, .paper, footer {
  width: min(1220px, calc(100vw - 24px));
  margin: 0 auto;
}

.masthead {
  padding: 22px 0 10px;
  text-align: center;
  border-bottom: 7px double var(--rule);
}

.strapline {
  display: inline-block;
  padding: 4px 10px;
  border-top: 2px solid var(--rule);
  border-bottom: 2px solid var(--rule);
  font: 900 .82rem Arial, sans-serif;
  letter-spacing: .08em;
  text-transform: uppercase;
}

h1 {
  margin: 6px 0 0;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(4rem, 13vw, 10rem);
  line-height: .86;
  letter-spacing: -.06em;
  text-transform: uppercase;
  text-shadow: 2px 2px 0 rgba(255,255,255,.28);
}

.subtitle {
  margin: 10px auto 0;
  max-width: 860px;
  font-size: 1.08rem;
  font-weight: 700;
}

.nav {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  padding: 12px 0;
  border-bottom: 3px solid var(--rule);
}

.nav a, .cta {
  display: inline-block;
  border: 2px solid var(--rule);
  background: var(--ink);
  color: var(--cream);
  padding: 8px 11px;
  font: 900 .78rem Arial, sans-serif;
  letter-spacing: .05em;
  text-decoration: none;
  text-transform: uppercase;
}

.stop-press {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 10px;
  margin: 18px 0;
}

.stop-press > div, .lead-story, .card, .two-col article {
  border: 3px solid var(--rule);
  background: rgba(255, 242, 217, .48);
  box-shadow: 5px 5px 0 var(--shadow);
}

.stop-press > div {
  min-height: 110px;
  padding: 10px 12px;
}

.label, .kicker {
  display: inline-block;
  margin-bottom: 6px;
  padding: 2px 6px;
  color: var(--cream);
  background: var(--ink);
  font: 900 .72rem Arial, sans-serif;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.stop-press strong {
  display: block;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  line-height: .95;
}

.stop-press p, .card p, .lead-story p, .two-col p {
  margin: 6px 0 0;
  font-weight: 700;
}

.lead-story {
  padding: 16px;
  margin-bottom: 18px;
}

.lead-story h2, .two-col h2 {
  margin: 0;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(2.4rem, 6vw, 5.3rem);
  line-height: .88;
  text-transform: uppercase;
  letter-spacing: -.04em;
}

.lead-story .cta { margin-top: 12px; }

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.card {
  min-height: 180px;
  padding: 14px;
  color: var(--ink);
  text-decoration: none;
  transition: transform .12s ease, box-shadow .12s ease;
}

.card:hover {
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0 var(--shadow);
}

.card.live {
  background: rgba(255, 242, 217, .72);
}

.card h3 {
  margin: 8px 0 0;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: .9;
  text-transform: uppercase;
  letter-spacing: -.04em;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 18px;
}

.two-col article { padding: 14px; }

footer {
  padding: 22px 0 36px;
  text-align: center;
  color: var(--muted);
  font-weight: 700;
}

@media (max-width: 860px) {
  .stop-press, .grid, .two-col { grid-template-columns: 1fr; }
}
