:root {
  --ink: #14110f;
  --ink-soft: #2a2520;
  --paper: #f6f1e8;
  --paper-card: #fdfaf3;
  --paper-warm: #ece4d3;
  --rule: #1a1714;
  --accent: #d6361b;
  --accent-soft: #f0a48a;
  --muted: #6b5f50;
  --gold: #c6953a;
  --sage: #6b8e6a;
  --teal: #2f5d62;
}

* { box-sizing: border-box; }

[hidden] {
  display: none !important;
}

html {
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  -webkit-font-smoothing: antialiased;
}

button, a { -webkit-tap-highlight-color: transparent; }

button {
  font: inherit;
}

.masthead {
  position: sticky;
  top: 0;
  z-index: 80;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 clamp(16px, 3vw, 32px);
  border-bottom: 1px solid var(--rule);
  background: var(--paper);
}

.nameplate {
  color: var(--ink);
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
  text-decoration: none;
}

.nameplate span,
footer span {
  color: var(--accent);
}

.masthead__meta {
  display: flex;
  align-items: center;
  gap: clamp(10px, 1.6vw, 18px);
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent);
  letter-spacing: .08em;
  text-transform: none;
}

.live i {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(214, 54, 27, .55); }
  70% { box-shadow: 0 0 0 10px rgba(214, 54, 27, 0); }
  100% { box-shadow: 0 0 0 0 rgba(214, 54, 27, 0); }
}

.hero {
  position: relative;
  min-height: 600px;
  height: calc(100svh - 136px);
  overflow: visible;
  border-bottom: 1px solid var(--rule);
  background: #0c0a08;
}

.hero__map,
.hero__flow,
.vignette {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero__flow {
  inset: 78px 0 40px;
}

.hero svg {
  display: block;
  width: 100%;
  height: 100%;
}

.vignette {
  pointer-events: none;
  background: radial-gradient(ellipse at center, transparent 50%, rgba(0, 0, 0, .42) 100%);
}

.view-toggle {
  position: absolute;
  top: 20px;
  left: clamp(16px, 3.4vw, 48px);
  z-index: 8;
  display: inline-flex;
  gap: 4px;
  padding: 5px;
  border: 1px solid rgba(246, 241, 232, .10);
  border-radius: 24px;
  background: rgba(20, 17, 15, .66);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .45);
  backdrop-filter: blur(24px) saturate(140%);
}

.view-toggle button {
  min-width: 78px;
  border: 0;
  border-radius: 20px;
  padding: 8px 18px;
  background: transparent;
  color: rgba(246, 241, 232, .72);
  cursor: pointer;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.view-toggle button.active {
  background: var(--accent);
  color: var(--paper);
}

.hero-card,
.controls {
  position: absolute;
  z-index: 6;
  border: 1px solid rgba(246, 241, 232, .10);
  border-radius: 8px;
  background: rgba(20, 17, 15, .66);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .45);
  color: var(--paper);
  backdrop-filter: blur(24px) saturate(140%);
}

.hero-card {
  top: auto;
  bottom: clamp(88px, 10svh, 122px);
  left: clamp(16px, 3.4vw, 48px);
  width: min(430px, calc(100vw - 32px));
  transform: none;
  padding: clamp(22px, 2.4vw, 32px);
}

.kicker {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.hero-card h1 {
  margin: 0 0 22px;
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(32px, 3.4vw, 48px);
  font-weight: 650;
  letter-spacing: 0;
  line-height: .95;
}

.hero-card em,
.flow-copy em,
.grid-heading em {
  color: var(--accent);
  font-style: italic;
  font-weight: 500;
}

.hero-card p:not(.kicker) {
  max-width: 42ch;
  margin: 0 0 24px;
  color: rgba(246, 241, 232, .84);
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(14px, 1.3vw, 16px);
  line-height: 1.5;
}

.stats {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 0;
  padding-top: 22px;
  border-top: 1px solid rgba(246, 241, 232, .12);
}

.stats div,
.panel__meta div {
  display: grid;
  gap: 2px;
}

.stats dt,
.panel__meta dt {
  color: rgba(246, 241, 232, .56);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.stats dd,
.panel__meta dd {
  margin: 0;
  color: var(--paper);
  font-family: Fraunces, Georgia, serif;
  font-size: 24px;
  font-weight: 750;
}

.controls {
  top: 20px;
  right: clamp(12px, 2vw, 28px);
  display: grid;
  gap: 12px;
  width: min(360px, calc(100vw - 32px));
  padding: 16px 18px;
}

.story-jump {
  position: absolute;
  left: 50%;
  bottom: 0;
  z-index: 7;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(246, 241, 232, .16);
  border-radius: 999px;
  padding: 10px 14px 10px 16px;
  background: rgba(20, 17, 15, .88);
  box-shadow: 0 14px 34px rgba(0, 0, 0, .34), 0 5px 18px rgba(20, 17, 15, .16);
  color: rgba(246, 241, 232, .86);
  text-decoration: none;
  transform: translate(-50%, 50%);
  backdrop-filter: blur(20px) saturate(130%);
}

.story-jump span {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.story-jump i {
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(45deg) translateY(-2px);
}

.pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.pills button,
.related button {
  border: 1px solid transparent;
  border-radius: 20px;
  cursor: pointer;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.pills button {
  padding: 6px 12px;
  background: rgba(246, 241, 232, .08);
  color: rgba(246, 241, 232, .82);
}

.pills button.active {
  background: var(--accent);
  color: var(--paper);
}

.view-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  border-radius: 24px;
  padding: 8px 8px 8px 14px;
  background: var(--paper);
  color: var(--ink);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
}

.view-chip span {
  color: var(--muted);
  font-size: 9px;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.view-chip strong {
  min-width: 0;
  flex: 1;
  color: var(--accent);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-family: Fraunces, Georgia, serif;
  font-size: 14px;
  letter-spacing: 0;
}

.view-chip button {
  display: none;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  border: 0;
  border-radius: 999px;
  background: var(--ink);
  color: var(--paper);
  cursor: pointer;
}

.has-selection .view-chip strong { color: var(--ink); }
.has-selection .view-chip button { display: grid; place-items: center; }

.flow-copy {
  position: absolute;
  top: 78px;
  left: clamp(16px, 3.4vw, 48px);
  z-index: 6;
  max-width: min(560px, calc(100vw - 32px));
  color: var(--paper);
  pointer-events: none;
}

.flow-copy h2 {
  margin: 0;
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(28px, 3.6vw, 46px);
  font-weight: 650;
  letter-spacing: 0;
  line-height: 1;
}

.tip {
  position: absolute;
  z-index: 12;
  max-width: 300px;
  opacity: 0;
  pointer-events: none;
  border-radius: 4px;
  padding: 12px 16px;
  background: var(--paper);
  box-shadow: 0 12px 36px rgba(0, 0, 0, .5);
  color: var(--ink);
  font-family: Fraunces, Georgia, serif;
  transition: opacity .12s ease;
}

.tip strong {
  display: block;
  margin-bottom: 6px;
  font-size: 17px;
}

.tip span {
  display: block;
  color: var(--muted);
  font-family: Inter, sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.country {
  cursor: pointer;
  transition: fill .16s ease, opacity .16s ease, stroke .16s ease;
}

.grid-section {
  max-width: 1480px;
  margin: 0 auto;
  padding: 48px clamp(16px, 3.5vw, 40px) 56px;
}

.grid-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 26px;
}

.grid-heading h2 {
  margin: 0 0 6px;
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(26px, 3vw, 34px);
  letter-spacing: 0;
}

.grid-heading p {
  margin: 0;
  color: var(--muted);
  font-family: Fraunces, Georgia, serif;
  font-size: 16px;
  font-style: italic;
}

#gridStatus {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  text-align: right;
  text-transform: uppercase;
}

.articles {
  display: grid;
  grid-auto-flow: dense;
  grid-template-columns: repeat(auto-fill, minmax(min(280px, 100%), 1fr));
  gap: 20px;
}

.card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(20, 17, 15, .12);
  border-radius: 4px;
  background: var(--paper-card);
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 40px rgba(20, 17, 15, .16);
}

.card.feature {
  grid-column: span 2;
}

.card__image {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 16 / 10;
  background-color: var(--paper-warm);
  background-position: center 25%;
  background-size: cover;
}

.feature .card__image {
  aspect-ratio: 16 / 10.6;
  background-color: var(--ink);
}

.feature .card__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12, 10, 8, .88), rgba(12, 10, 8, .12));
}

.rank {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 1;
  border-radius: 3px;
  padding: 4px 10px;
  background: rgba(20, 17, 15, .85);
  color: var(--paper);
  font-family: Fraunces, Georgia, serif;
  font-size: 14px;
  font-weight: 750;
}

.placeholder-letter {
  color: rgba(214, 54, 27, .84);
  font-family: Fraunces, Georgia, serif;
  font-size: 84px;
  font-style: italic;
  font-weight: 900;
}

.card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 16px 18px 18px;
}

.feature .card__body {
  position: relative;
  z-index: 1;
  margin-top: -44%;
  color: var(--paper);
  padding: clamp(18px, 2.6vw, 32px);
}

.card__kicker {
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.feature .card__kicker {
  color: var(--accent-soft);
  font-weight: 800;
}

.card__title {
  color: var(--ink);
  font-family: Fraunces, Georgia, serif;
  font-size: 20px;
  font-weight: 650;
  letter-spacing: 0;
  line-height: 1.2;
}

.feature .card__title {
  color: var(--paper);
  font-size: clamp(28px, 3.4vw, 46px);
  font-weight: 750;
  line-height: 1.02;
}

.card__desc {
  display: -webkit-box;
  margin-top: 8px;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.45;
}

.feature .card__desc {
  color: rgba(246, 241, 232, .85);
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(14px, 1.3vw, 17px);
  -webkit-line-clamp: 3;
}

.card__views {
  margin-top: auto;
  padding-top: 12px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.card__views b {
  color: var(--ink);
  font-family: Fraunces, Georgia, serif;
  font-size: 14px;
  letter-spacing: 0;
  text-transform: none;
}

.feature .card__views,
.feature .card__views b {
  color: rgba(246, 241, 232, .82);
}

.panel {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 100;
  width: min(540px, 100vw);
  height: 100vh;
  overflow-y: auto;
  border-left: 1px solid var(--rule);
  background: var(--paper);
  box-shadow: -20px 0 60px rgba(20, 17, 15, .18);
  transform: translateX(101%);
  transition: transform .35s cubic-bezier(.2, .7, .2, 1);
}

.panel.open {
  transform: translateX(0);
}

.panel__bar {
  position: sticky;
  top: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid rgba(20, 17, 15, .12);
  padding: 16px 24px;
  background: var(--paper);
}

.panel__bar button {
  border: 0;
  background: none;
  color: var(--muted);
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.panel__bar button::before {
  content: "< ";
}

.panel__bar span {
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.panel__image {
  display: grid;
  place-items: center;
  aspect-ratio: 16 / 10;
  background-color: var(--paper-warm);
  background-position: center 20%;
  background-size: cover;
}

.panel__image span {
  color: rgba(214, 54, 27, .84);
  font-family: Fraunces, Georgia, serif;
  font-size: 120px;
  font-style: italic;
  font-weight: 900;
}

.panel__body {
  padding: 32px 36px 60px;
}

.panel h2 {
  margin: 0 0 8px;
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(34px, 4vw, 44px);
  letter-spacing: 0;
  line-height: 1.04;
}

.panel__desc {
  margin: 0 0 24px;
  color: var(--muted);
  font-family: Fraunces, Georgia, serif;
  font-size: 17px;
  font-style: italic;
}

.pulse-box {
  margin-bottom: 26px;
  border-radius: 4px;
  padding: 22px 24px 16px;
  background: var(--ink);
  color: var(--paper);
}

.pulse-box h3,
.related h3 {
  margin: 0 0 10px;
  color: var(--accent-soft);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.pulse-box p {
  margin: 0 0 16px;
  font-family: Fraunces, Georgia, serif;
  font-size: 17px;
  line-height: 1.45;
}

#spark {
  width: 100%;
  height: 96px;
  margin-top: 4px;
}

#sparkArea {
  fill: rgba(214, 54, 27, .24);
}

#sparkLine {
  fill: none;
  stroke: var(--accent);
  stroke-linejoin: round;
  stroke-width: 2.4;
}

#sparkDot {
  fill: var(--paper);
  stroke: var(--accent);
  stroke-width: 2;
}

.spark-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 4px;
  color: rgba(246, 241, 232, .54);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.panel__meta {
  display: flex;
  gap: 22px;
  margin: 0 0 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(20, 17, 15, .12);
}

.panel__meta dt {
  color: var(--muted);
  font-size: 10px;
}

.panel__meta dd {
  color: var(--ink);
  font-size: 22px;
}

.story-sections {
  margin: 0 0 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(20, 17, 15, .12);
}

.story-sections__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 8px;
}

.story-sections h3 {
  margin: 0;
  color: var(--accent);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.story-sections__head span {
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .12em;
  text-align: right;
  text-transform: uppercase;
}

.story-sections ol {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.story-sections li {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr) 86px;
  align-items: center;
  gap: 10px;
  min-height: 40px;
  border-top: 1px solid rgba(20, 17, 15, .10);
}

.story-sections__rank {
  color: rgba(107, 95, 80, .64);
  font-size: 11px;
  font-weight: 800;
}

.story-sections__label {
  overflow: hidden;
  color: var(--ink);
  font-family: Fraunces, Georgia, serif;
  font-size: 16px;
  font-weight: 750;
  letter-spacing: 0;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.story-sections__bar {
  position: relative;
  height: 3px;
  background: rgba(20, 17, 15, .10);
}

.story-sections__bar i {
  position: absolute;
  inset: 0 auto 0 0;
  background: var(--accent);
}

.related {
  margin-bottom: 26px;
}

.related h3 {
  color: var(--muted);
}

.related div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.related button {
  padding: 7px 14px;
  border-color: rgba(20, 17, 15, .15);
  background: var(--paper-warm);
  color: var(--ink);
  font-family: Fraunces, Georgia, serif;
  font-size: 13px;
  font-weight: 650;
  letter-spacing: 0;
  text-transform: none;
}

.extract {
  margin: 0 0 28px;
  color: var(--ink-soft);
  font-family: Fraunces, Georgia, serif;
  font-size: 17px;
  line-height: 1.55;
}

.extract::first-letter {
  float: left;
  padding: 6px 8px 0 0;
  color: var(--accent);
  font-size: 56px;
  font-weight: 900;
  line-height: .85;
}

.read-more {
  display: inline-flex;
  align-items: center;
  border-radius: 4px;
  padding: 12px 20px;
  background: var(--ink);
  color: var(--paper);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  text-decoration: none;
  text-transform: uppercase;
}

.read-more::after {
  content: " ->";
}

.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  z-index: 200;
  max-width: min(520px, calc(100vw - 32px));
  transform: translateX(-50%);
  opacity: 0;
  border-radius: 4px;
  padding: 12px 20px;
  background: var(--ink);
  color: var(--paper);
  font-size: 13px;
  letter-spacing: .06em;
  pointer-events: none;
  transition: opacity .2s ease;
}

.toast.show {
  opacity: 1;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  max-width: 1480px;
  margin: 0 auto;
  border-top: 1px solid rgba(20, 17, 15, .12);
  padding: 40px clamp(16px, 3.5vw, 40px) 56px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

footer strong {
  color: var(--ink);
  font-family: Fraunces, Georgia, serif;
  font-size: 20px;
  font-weight: 900;
}

footer p {
  max-width: 62ch;
  margin: 0;
  text-align: right;
}

.empty-state {
  grid-column: 1 / -1;
  border: 1px solid rgba(20, 17, 15, .12);
  border-radius: 4px;
  padding: 28px;
  background: var(--paper-card);
  color: var(--muted);
  font-family: Fraunces, Georgia, serif;
  font-size: 18px;
}

@media (max-width: 900px) {
  .masthead__meta {
    gap: 10px;
    font-size: 9px;
  }

  .hero {
    min-height: 640px;
    height: calc(100svh - 118px);
  }

  .view-toggle {
    top: 14px;
  }

  .hero-card {
    top: 62px;
    bottom: auto;
    transform: none;
    padding: 22px;
  }

  .hero-card h1 {
    font-size: 34px;
  }

  .controls {
    top: auto;
    right: 16px;
    bottom: 88px;
    left: 16px;
    width: auto;
    padding: 14px 16px;
  }

  .story-jump {
    right: 16px;
    bottom: 18px;
    left: 16px;
    justify-content: center;
    transform: none;
  }

  .flow-copy {
    top: 68px;
  }

  .grid-heading {
    align-items: start;
    flex-direction: column;
  }

  .card.feature {
    grid-column: auto;
  }

  .feature .card__body {
    margin-top: -34%;
  }

  .panel__body {
    padding: 28px 24px 48px;
  }

  .panel__meta {
    flex-wrap: wrap;
  }

  footer {
    display: block;
  }

  footer p {
    margin-top: 12px;
    text-align: left;
  }
}

@media (max-width: 560px) {
  .masthead {
    gap: 12px;
    height: auto;
    min-height: 64px;
    flex-wrap: wrap;
    padding-block: 12px;
  }

  #dateLine {
    display: none;
  }

  .hero {
    display: flex;
    min-height: 0;
    height: auto;
    flex-direction: column;
    gap: 14px;
    overflow: hidden;
    padding: 16px;
  }

  .hero__map {
    position: relative;
    inset: auto;
    order: 3;
    width: 100%;
    height: min(52svh, 420px);
    min-height: 280px;
    border: 1px solid rgba(246, 241, 232, .10);
    border-radius: 8px;
    background: rgba(20, 17, 15, .44);
  }

  .hero__flow {
    position: relative;
    inset: auto;
    order: 3;
    width: 100%;
    height: min(58svh, 440px);
    min-height: 320px;
  }

  .vignette {
    display: none;
  }

  .view-toggle {
    position: relative;
    top: auto;
    left: auto;
    order: 0;
    align-self: flex-start;
  }

  .controls {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    order: 1;
    width: 100%;
    padding: 14px;
  }

  .hero-card {
    position: relative;
    top: auto;
    bottom: auto;
    left: auto;
    order: 2;
    width: 100%;
    padding: 20px;
  }

  .hero-card h1 {
    margin-bottom: 18px;
    font-size: 32px;
  }

  .hero-card p:not(.kicker) {
    margin-bottom: 20px;
  }

  .story-jump {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    order: 4;
    width: 100%;
    justify-content: center;
    transform: none;
  }

  .flow-copy {
    position: relative;
    top: auto;
    left: auto;
    order: 2;
    max-width: none;
  }

  .tip {
    display: none;
  }

  .stats {
    gap: 16px;
  }

  .stats dd {
    font-size: 20px;
  }

  .pills {
    max-height: 72px;
    overflow: auto;
  }

  .feature .card__body {
    margin-top: 0;
    background: var(--ink);
  }
}
