:root {
  --ink: #16181d;
  --paper: #f3f5f7;
  --mute: #5c6570;
  --line: #16181d;
  --hair: #d5dbe2;
  --accent: #0c6b62;
  --max: 1120px;
  --gutter: clamp(16px, 3vw, 28px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Sora, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.45;
  letter-spacing: 0;
  word-spacing: normal;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 3px; }

.sr-only, .skip { position: absolute; left: 10px; top: -40px; }
.skip:focus { top: 10px; background: #fff; padding: 6px 10px; z-index: 5; }

.inner {
  width: min(var(--max), calc(100% - var(--gutter) * 2));
  margin-inline: auto;
}

.util {
  background: #fff;
  border-bottom: 1px solid var(--hair);
  font-size: 0.84rem;
}

.util-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 40px;
  padding-block: 8px;
}

.when { margin: 0; }

.langs {
  display: flex;
  align-items: center;
  margin-left: auto;
  flex-shrink: 0;
}

.langs a { padding: 4px 2px; }
.langs .sep { padding: 0 7px; color: #8a8a8a; }
.langs a[aria-current="true"] { font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }

.search {
  display: flex;
  align-items: center;
  gap: 8px;
  width: min(240px, 34vw);
  min-width: 0;
}

.search input {
  flex: 1;
  min-width: 0;
  width: 100%;
  border: 0;
  border-bottom: 1px solid #121212;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: 0.78rem;
  text-transform: none;
  letter-spacing: 0;
  padding: 4px 0;
}

.search button {
  border: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  flex-shrink: 0;
}

.mast { background: #fff; }
.mast-inner {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0 8px;
}

.wordmark {
  font-family: Newsreader, Georgia, "Times New Roman", serif;
  font-weight: 650;
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  letter-spacing: -0.03em;
  line-height: 0.9;
  color: var(--ink);
  text-decoration: none;
}

.wordmark:hover { text-decoration: none; }

.wm-tld {
  color: var(--accent);
  font-size: 0.42em;
  letter-spacing: 0;
}

.city-name {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  font-family: Newsreader, Georgia, serif;
  font-weight: 560;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1;
  color: var(--accent);
}

.live {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgb(12 107 98 / 0.45);
  animation: live 2.4s ease-out infinite;
  flex-shrink: 0;
}

@keyframes live {
  70% { box-shadow: 0 0 0 9px rgb(12 107 98 / 0); }
  100% { box-shadow: 0 0 0 0 rgb(12 107 98 / 0); }
}

.cities { background: #fff; border-bottom: 1px solid var(--hair); }

.cities-inner {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  padding: 10px 0 12px;
  scrollbar-width: none;
}

.cities a {
  flex: none;
  padding: 7px 12px;
  border-radius: 999px;
  background: #e7ebef;
  font-weight: 500;
}

.cities a[aria-current="page"] { background: var(--accent); color: #fff; }
.cities a:hover { text-decoration: none; background: #d5dee4; }
.cities a[aria-current="page"]:hover { background: var(--accent); }

.sitenav {
  background: #fff;
  border-bottom: 1px solid var(--hair);
}

.sitenav-inner {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2px 4px;
  padding: 8px 0;
}

.nav-link {
  font-size: 0.92rem;
  font-weight: 500;
  padding: 6px 10px;
  white-space: nowrap;
}

.nav-link[aria-current="page"] {
  box-shadow: inset 0 -2px 0 var(--accent);
  color: var(--accent);
}

.wrap {
  width: min(var(--max), calc(100% - var(--gutter) * 2));
  margin: 22px auto 48px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 230px;
  gap: 28px;
  align-items: start;
}

.sheet { min-width: 0; }

.sheet-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  border-bottom: 0;
  margin-bottom: 8px;
  padding-bottom: 0;
}

.sheet-head h1,
.story h1,
.quiet h1,
.legal-page h1 {
  margin: 0;
  font-family: Newsreader, Georgia, serif;
  font-weight: 650;
  font-size: clamp(1.6rem, 3vw, 2.15rem);
  letter-spacing: -0.02em;
}

.count { margin: 0; color: var(--mute); font-size: 0.78rem; white-space: nowrap; }

.feature {
  position: relative;
  margin-bottom: 28px;
  border-radius: 18px;
  overflow: hidden;
  min-height: 460px;
  background: #1c242b;
}

.feature::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 62%;
  background: linear-gradient(to top, rgb(10 14 18 / 0.88), rgb(10 14 18 / 0.15) 70%, transparent);
  pointer-events: none;
}

.hero { display: block; color: #fff; text-decoration: none; }
.hero:hover { text-decoration: none; }

.hero-image {
  display: block;
  width: 100%;
  height: 460px;
  object-fit: cover;
  animation: settle 1.15s ease both;
}

.hero-copy {
  position: absolute;
  left: 0;
  right: 300px;
  bottom: 0;
  z-index: 1;
  padding: 28px 24px 22px;
  color: #fff;
}

.hero-copy h2 {
  margin: 10px 0 8px;
  max-width: 18em;
  font-family: Newsreader, Georgia, serif;
  font-weight: 650;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.hero-copy .deck {
  margin: 0 0 8px;
  max-width: 42em;
  color: rgb(255 255 255 / 0.88);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.hero-copy time { color: rgb(255 255 255 / 0.75); font-size: 0.82rem; }

.chip--on {
  background: var(--accent);
  color: #fff;
}

.feature .runners {
  position: absolute;
  z-index: 1;
  top: 16px;
  right: 16px;
  bottom: 16px;
  width: 270px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 8px;
  overflow: auto;
}

.feature .runners-label { color: #fff; }

.feature .runner {
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 8px;
  padding: 8px;
  border: 0;
  border-radius: 10px;
  background: rgb(8 12 16 / 0.55);
  color: #fff;
}

.feature .runner strong { color: #fff; font-size: 0.86rem; }
.feature .runner time, .feature .kicker { color: rgb(255 255 255 / 0.75); }
.feature .runner img { width: 54px; height: 54px; border-radius: 6px; }

@keyframes settle {
  from { transform: scale(1.05); }
  to { transform: scale(1); }
}

.runners-label {
  margin: 0 0 8px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0;
  color: var(--accent);
}

.runner, .hit {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  padding: 10px 0;
  border-top: 1px solid var(--hair);
  color: inherit;
  text-decoration: none;
}

.runner:hover, .hit:hover { text-decoration: none; }
.runner:hover strong, .hit:hover strong { text-decoration: underline; text-underline-offset: 2px; }

.runner img, .hit img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  background: #e7e4dc;
  border-radius: 8px;
}

.runner strong, .hit strong {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-family: Newsreader, Georgia, serif;
  font-weight: 650;
  font-size: 0.98rem;
  line-height: 1.2;
}

.runner time, .hit time {
  display: block;
  margin-top: 4px;
  color: var(--mute);
  font-size: 0.72rem;
}

.hit {
  grid-template-columns: 120px minmax(0, 1fr);
  padding: 14px 0;
}

.hit img { width: 120px; height: 80px; }
.hit .deck {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-top: 4px;
}

.card--lead h2 {
  font-size: clamp(1.7rem, 3vw, 2.45rem);
  line-height: 1.08;
}

.day + .day { margin-top: 26px; }

.day-label {
  margin: 0 0 12px;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--hair);
  font-family: Newsreader, Georgia, serif;
  font-size: 1.35rem;
  font-weight: 560;
  letter-spacing: -0.02em;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px 18px;
}

.card { min-width: 0; }

.card-media { position: relative; display: block; }

.chip {
  position: absolute;
  left: 8px;
  top: 8px;
  max-width: calc(100% - 16px);
  padding: 3px 7px;
  background: #fff;
  color: var(--ink);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.3;
}

.hero-copy .chip {
  position: static;
  background: var(--accent);
  color: #fff;
}

.card-image, .story-image {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  background: #e7e4dc;
  border-radius: 10px;
}

.kicker, .box-kicker {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 8px 0 4px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0;
  color: var(--accent);
}

.rule {
  width: 18px;
  height: 2px;
  flex-shrink: 0;
}

.card h2 {
  margin: 0 0 6px;
  font-family: Newsreader, Georgia, serif;
  font-weight: 650;
  font-size: 1.12rem;
  line-height: 1.18;
  letter-spacing: -0.015em;
}

.card h2 a:hover { text-decoration: underline; }

.deck, .note, .empty, .wx {
  margin: 0 0 8px;
  color: var(--mute);
  font-size: 0.92rem;
}

.deck--story {
  margin-top: 16px;
  padding-left: 14px;
  border-left: 3px solid var(--ink);
  font-family: Newsreader, Georgia, serif;
  font-size: 1.2rem;
  line-height: 1.45;
  color: var(--ink);
}

.endmatter {
  width: min(var(--max), calc(100% - var(--gutter) * 2));
  margin: 8px auto 64px;
  padding-top: 8px;
  border-top: 4px solid var(--ink);
}

.endmatter h2 {
  margin: 12px 0 16px;
  font-family: Newsreader, Georgia, serif;
  font-size: 1.6rem;
  font-weight: 650;
}

.quiet {
  border: 1px solid var(--ink);
  background: #fff;
  padding: 28px 22px;
}

.byline {
  margin: 0;
  color: var(--mute);
  font-size: 0.75rem;
}

.rail { min-width: 0; }

.box {
  border: 1px solid var(--ink);
  background: #fff;
  padding: 12px 12px 14px;
  margin-bottom: 14px;
}

.box h2 {
  margin: 0 0 8px;
  font-family: Newsreader, Georgia, serif;
  font-size: 1.25rem;
  font-weight: 650;
}

.quote {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2px 10px;
  align-items: baseline;
  padding: 7px 0;
  border-top: 1px solid var(--hair);
  font-size: 0.82rem;
}

.quote strong { font-variant-numeric: tabular-nums; font-size: 1rem; }
.spark { width: 100%; height: 26px; grid-column: 1 / -1; }
.delta.is-up { color: #1d6b32; }
.delta.is-down { color: #9a1b1b; }
.temp {
  margin: 0;
  font-family: Newsreader, Georgia, serif;
  font-size: 2.6rem;
  line-height: 1;
}
.note, .empty, .wx { font-size: 0.75rem; }

.story, .legal-page, .quiet {
  width: min(720px, calc(100% - var(--gutter) * 2));
  margin: 28px auto 64px;
}

.back { display: inline-block; margin-bottom: 12px; font-size: 0.85rem; font-weight: 600; }

.go {
  display: inline-block;
  margin-top: 8px;
  padding: 10px 14px;
  background: var(--ink);
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
}

.go:hover { color: #fff; text-decoration: none; }

.legal {
  border-top: 4px solid var(--ink);
  background: #fff;
  font-size: 0.78rem;
}

.legal-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 16px 0 22px;
}

.legal a, .legal button {
  background: none;
  border: 0;
  color: inherit;
  font: inherit;
  margin-right: 14px;
  cursor: pointer;
  padding: 0;
}

.legal p { margin: 0; color: var(--mute); }

.cookie {
  position: sticky;
  bottom: 0;
  background: #fff;
  border-top: 1px solid var(--ink);
}

.cookie[hidden] { display: none; }

.cookie-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 12px 0;
}

.cookie p { margin: 0; font-size: 0.88rem; }
.cookie-actions { display: flex; gap: 8px; flex-shrink: 0; }

.cookie button {
  border: 1px solid var(--ink);
  background: #fff;
  padding: 8px 12px;
  font: inherit;
  cursor: pointer;
}

.cookie button[data-consent="all"] { background: var(--ink); color: #fff; }

.pager {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  margin-top: 28px;
  font-variant-numeric: tabular-nums;
}

@media (max-width: 980px) {
  .grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .wrap { grid-template-columns: minmax(0, 1fr) 210px; gap: 18px; }
}

@media (max-width: 820px) {
  .wrap { grid-template-columns: 1fr; }
  .feature { min-height: 0; }
  .hero-image { height: 340px; }
  .hero-copy { right: 0; }
  .feature .runners {
    position: static;
    width: auto;
    padding: 8px 12px 12px;
    background: #fff;
  }
  .feature .runners-label { color: var(--accent); }
  .feature .runner { background: transparent; color: var(--ink); border-top: 1px solid var(--hair); border-radius: 0; }
  .feature .runner strong { color: var(--ink); }
  .feature .runner time, .feature .kicker { color: var(--mute); }
  .sitenav-inner {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .legal-inner, .cookie-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 640px) {
  .grid { grid-template-columns: 1fr; }
  .util-inner { flex-wrap: wrap; }
  .langs { margin-left: 0; }
  .search { width: 100%; order: 3; }
  .card--lead h2, .card h2 { font-size: 1.35rem; }
  .mast-inner { align-items: flex-start; flex-direction: column; gap: 4px; }
  .wordmark { font-size: clamp(2.4rem, 12vw, 3.4rem); }
}

@media (prefers-reduced-motion: reduce) {
  .live, .hero-image { animation: none; }
}

a:focus-visible, button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

@media (max-width: 420px) {
  .cookie-actions { width: 100%; }
  .cookie-actions button { flex: 1; }
}
