:root {
  --ink: #17211d;
  --ink-soft: #3e4a44;
  --paper: #f4f1e8;
  --paper-deep: #e9e4d7;
  --white: #fffdf7;
  --line: #cbc6b9;
  --line-dark: #8c928b;
  --moss: #0f6d5c;
  --moss-dark: #08493f;
  --orange: #f25c3b;
  --yellow: #e5b84e;
  --blue: #315c75;
  --ad-ink: #101714;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  --shadow: 0 22px 60px rgba(23, 33, 29, .1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  z-index: -1;
  inset: 0;
  background-image: radial-gradient(rgba(23, 33, 29, .045) .6px, transparent .6px);
  background-size: 5px 5px;
  content: "";
  pointer-events: none;
}

img,
video,
iframe {
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

button,
summary {
  cursor: pointer;
}

p,
h1,
h2,
h3,
ul,
ol,
dl,
dd,
blockquote {
  margin-top: 0;
}

:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 4px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  background: var(--white);
  border: 2px solid var(--ink);
  font-weight: 800;
  transform: translateY(-160%);
  transition: transform .2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.shell {
  width: min(1240px, calc(100% - 48px));
  margin-inline: auto;
}

.eyebrow,
.kicker {
  margin-bottom: 12px;
  color: var(--moss);
  font-size: .72rem;
  font-weight: 850;
  letter-spacing: .14em;
  line-height: 1.25;
  text-transform: uppercase;
}

.eyebrow span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.eyebrow span::after {
  width: 32px;
  height: 1px;
  margin-right: 8px;
  background: currentColor;
  content: "";
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-block: 6px;
  border-bottom: 1px solid var(--ink);
  font-size: .84rem;
  font-weight: 800;
  letter-spacing: .04em;
}

.text-link span {
  transition: transform .2s ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.button-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 11px 19px;
  background: var(--ink);
  border: 1px solid var(--ink);
  color: var(--white);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}

.button-link:hover {
  background: transparent;
  color: var(--ink);
  transform: translateY(-2px);
}

.button-link--light {
  background: var(--white);
  border-color: var(--white);
  color: var(--ink);
}

.button-link--light:hover {
  background: transparent;
  color: var(--white);
}

/* Site chrome */

.site-header {
  position: relative;
  z-index: 20;
  border-bottom: 1px solid var(--ink);
  background: rgba(244, 241, 232, .96);
}

.lab-strip {
  background: var(--ad-ink);
  color: #dce6df;
  font-size: .68rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.lab-strip__inner {
  display: flex;
  min-height: 32px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.lab-strip p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
}

.lab-strip strong {
  color: #fff;
}

.lab-strip__mark {
  width: 7px;
  height: 7px;
  background: #63dfac;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(99, 223, 172, .14);
}

.lab-strip__meta {
  color: #9ca9a1;
}

.masthead {
  display: grid;
  min-height: 98px;
  grid-template-columns: 270px 1fr 170px;
  align-items: center;
  gap: 24px;
}

.wordmark {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 11px;
}

.wordmark__symbol {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  background: var(--ink);
  border-radius: 50% 50% 50% 8px;
  color: var(--paper);
  font-family: var(--serif);
  font-size: 1.42rem;
  font-style: italic;
  line-height: 1;
}

.wordmark > span:last-child {
  display: flex;
  flex-direction: column;
  line-height: .9;
}

.wordmark strong {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -.055em;
}

.wordmark small {
  margin-top: 6px;
  font-size: .61rem;
  font-weight: 850;
  letter-spacing: .24em;
  text-transform: uppercase;
}

.site-nav {
  justify-self: center;
}

.site-nav ul {
  display: flex;
  align-items: center;
  gap: 34px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.site-nav a {
  position: relative;
  display: block;
  padding-block: 36px;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 24px;
  left: 0;
  height: 2px;
  background: var(--orange);
  content: "";
  transform: scaleX(0);
  transition: transform .2s ease;
}

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.edition-stamp {
  margin: 0;
  justify-self: end;
  color: var(--ink-soft);
  font-family: var(--mono);
  font-size: .68rem;
  line-height: 1.45;
  text-align: right;
  text-transform: uppercase;
}

.edition-stamp span {
  display: block;
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 850;
  letter-spacing: .08em;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 11px;
  background: transparent;
  border: 1px solid var(--ink);
}

.nav-toggle > span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 4px 0;
  background: currentColor;
}

/* Home hero */

.hero {
  display: grid;
  padding-block: 84px 76px;
  grid-template-columns: minmax(0, 1.45fr) minmax(300px, .55fr);
  gap: 64px;
  align-items: stretch;
}

.hero__story {
  padding-top: 10px;
}

.hero h1 {
  max-width: 850px;
  margin-bottom: 26px;
  font-family: var(--serif);
  font-size: clamp(3.8rem, 7vw, 7.25rem);
  font-weight: 500;
  letter-spacing: -.065em;
  line-height: .88;
}

.hero__dek {
  max-width: 720px;
  margin-bottom: 22px;
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: clamp(1.1rem, 1.7vw, 1.45rem);
  line-height: 1.45;
}

.story-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 18px;
  margin-bottom: 24px;
  color: #657069;
  font-size: .7rem;
  font-weight: 750;
  letter-spacing: .055em;
  text-transform: uppercase;
}

.story-meta span + span::before {
  margin-right: 18px;
  color: var(--orange);
  content: "•";
}

.hero__brief {
  position: relative;
  display: flex;
  min-height: 430px;
  padding: 22px;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  background: var(--moss);
  color: var(--white);
  box-shadow: var(--shadow);
}

.hero__brief::after {
  position: absolute;
  top: 80px;
  right: -40px;
  width: 220px;
  height: 220px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 50%;
  box-shadow: 0 0 0 42px rgba(255, 255, 255, .035), 0 0 0 84px rgba(255, 255, 255, .025);
  content: "";
}

.hero__brief-top {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  padding-bottom: 13px;
  border-bottom: 1px solid rgba(255, 255, 255, .34);
  font-family: var(--mono);
  font-size: .63rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.hero__index {
  position: absolute;
  top: 36px;
  right: 14px;
  margin: 0;
  color: rgba(255, 255, 255, .09);
  font-family: var(--serif);
  font-size: 13rem;
  line-height: 1;
}

.hero__brief .kicker {
  position: relative;
  z-index: 1;
  color: #b8e1d1;
}

.brief-list {
  position: relative;
  z-index: 1;
  padding: 0;
  margin: 0;
  list-style: none;
}

.brief-list li {
  display: grid;
  padding: 13px 0;
  border-top: 1px solid rgba(255, 255, 255, .22);
  grid-template-columns: 32px 1fr;
  font-family: var(--serif);
  font-size: .98rem;
}

.brief-list span {
  color: #8ecab3;
  font-family: var(--mono);
  font-size: .62rem;
}

/* Test ad inventory */

.ad-wrap {
  padding-block: 12px 40px;
}

.ad-wrap--spacious {
  padding-block: 72px 14px;
}

.ad-wrap--footer {
  padding-block: 0 84px;
}

.vmx-ad-slot {
  width: 100%;
  max-width: 1040px;
  margin-inline: auto;
  background: var(--ad-ink);
  border: 1px solid #34433c;
  color: #dce6df;
  contain: layout paint;
}

.vmx-ad-slot__topline {
  display: flex;
  min-height: 34px;
  padding: 7px 12px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid #34433c;
  font-family: var(--mono);
  font-size: .61rem;
  letter-spacing: .045em;
  text-transform: uppercase;
}

.vmx-ad-slot__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #f6faf7;
  font-weight: 800;
}

.vmx-ad-slot__label > span {
  width: 6px;
  height: 6px;
  background: #63dfac;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(99, 223, 172, .13);
}

.vmx-ad-slot__status {
  color: #9aaca2;
}

.vmx-ad-slot__status[data-state="requesting"] {
  color: #f2d58e;
}

.vmx-ad-slot__status[data-state="running"] {
  color: #f2d58e;
}

.vmx-ad-slot__status[data-state="rendered"],
.vmx-ad-slot__status[data-state="success"] {
  color: #76e6b7;
}

.vmx-ad-slot__status[data-state="error"],
.vmx-ad-slot__status[data-state="empty"],
.vmx-ad-slot__status[data-state="fallback"] {
  color: #ff8e75;
}

.vmx-ad-slot__stage {
  display: grid;
  width: 100%;
  place-items: center;
  overflow: hidden;
  background-color: #151f1b;
  background-image: linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px), linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px);
  background-size: 24px 24px;
}

.vmx-ad-slot--leaderboard .vmx-ad-slot__stage,
.vmx-ad-slot--infeed .vmx-ad-slot__stage,
.vmx-ad-slot--inarticle .vmx-ad-slot__stage {
  min-height: 250px;
}

.vmx-ad-slot--rail {
  max-width: 340px;
}

.vmx-ad-slot--rail .vmx-ad-slot__stage {
  min-height: 600px;
}

.vmx-ad-slot__stage > iframe,
.vmx-ad-slot__stage > img,
.vmx-ad-slot__stage > div:not(.vmx-ad-slot__placeholder) {
  max-width: 100%;
  border: 0;
}

.vmx-creative-frame {
  display: block;
  max-height: 600px;
  background: #111827;
}

.vmx-house-ad {
  display: grid;
  min-width: min(100%, 300px);
  min-height: 100px;
  padding: 24px;
  align-content: center;
  justify-items: center;
  color: #e2e8f0;
  text-align: center;
}

.vmx-house-ad span {
  color: #67e8f9;
  font-family: var(--mono);
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.vmx-house-ad strong {
  margin-block: 7px 2px;
  color: #fff;
  font-family: var(--serif);
  font-size: 1.35rem;
}

.vmx-house-ad small {
  max-width: 42ch;
  color: #94a3b8;
}

.vmx-ad-slot__placeholder {
  display: flex;
  min-height: inherit;
  padding: 24px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: #a3b0a9;
  text-align: center;
}

.vmx-ad-slot__placeholder > span {
  display: grid;
  width: 40px;
  height: 40px;
  margin-bottom: 15px;
  place-items: center;
  border: 1px solid #54655c;
  color: #72d8ad;
  font-size: .64rem;
  font-weight: 900;
  letter-spacing: .05em;
}

.vmx-ad-slot__placeholder strong {
  color: #eef4f0;
  font-family: var(--mono);
  font-size: .78rem;
  letter-spacing: .02em;
}

.vmx-ad-slot__placeholder small {
  margin-top: 4px;
  color: #7e8d85;
  font-size: .66rem;
}

.vmx-ad-slot__diagnostics {
  border-top: 1px solid #34433c;
  color: #8fa097;
  font-family: var(--mono);
  font-size: .61rem;
}

.vmx-ad-slot__diagnostics summary {
  display: flex;
  min-height: 32px;
  padding: 7px 12px;
  align-items: center;
  justify-content: space-between;
  list-style: none;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.vmx-ad-slot__diagnostics summary::-webkit-details-marker {
  display: none;
}

.vmx-ad-slot__diagnostics summary::after {
  color: #6f8278;
  content: "+";
  font-size: .9rem;
}

.vmx-ad-slot__diagnostics[open] summary::after {
  content: "−";
}

.vmx-ad-slot__diagnostics ol {
  padding: 10px 12px 11px 34px;
  margin: 0;
  border-top: 1px solid #29352f;
  line-height: 1.65;
}

/* Home story modules */

.section {
  padding-block: 84px;
}

.section-heading {
  display: grid;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--ink);
  grid-template-columns: 1fr minmax(260px, 420px);
  gap: 40px;
  align-items: end;
}

.section-heading h2 {
  margin-bottom: 0;
  font-family: var(--serif);
  font-size: clamp(2.25rem, 4.6vw, 4.35rem);
  font-weight: 500;
  letter-spacing: -.055em;
  line-height: .98;
}

.section-heading > p {
  margin-bottom: 2px;
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: 1.08rem;
  line-height: 1.5;
}

.dispatch-layout,
.analysis-layout {
  display: grid;
  margin-top: 36px;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 42px;
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.story-card {
  min-width: 0;
  background: var(--paper);
}

.story-card__visual {
  position: relative;
  display: flex;
  min-height: 240px;
  padding: 28px;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}

.visual--grid {
  background-color: var(--orange);
  background-image: linear-gradient(rgba(23, 33, 29, .12) 1px, transparent 1px), linear-gradient(90deg, rgba(23, 33, 29, .12) 1px, transparent 1px);
  background-size: 31px 31px;
  color: var(--ink);
}

.visual--grid span {
  font-family: var(--serif);
  font-size: clamp(3.6rem, 6vw, 6.5rem);
  letter-spacing: -.08em;
  line-height: .8;
}

.visual--grid small {
  margin-top: 17px;
  font-size: .66rem;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.visual--rings {
  align-items: center;
  justify-content: center;
  background: var(--blue);
}

.visual--rings span {
  position: absolute;
  width: 90px;
  height: 90px;
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 50%;
}

.visual--rings span:nth-child(2) {
  width: 156px;
  height: 156px;
  opacity: .62;
}

.visual--rings span:nth-child(3) {
  width: 225px;
  height: 225px;
  opacity: .35;
}

.story-card__body {
  padding: 28px;
}

.story-card h3,
.analysis-item h3,
.dispatch-card h3 {
  margin-bottom: 15px;
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.4vw, 2.05rem);
  font-weight: 500;
  letter-spacing: -.035em;
  line-height: 1.1;
}

.story-card h3 a,
.analysis-item h3 a,
.dispatch-card h3 a {
  background-image: linear-gradient(var(--orange), var(--orange));
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 0 2px;
  transition: background-size .3s ease;
}

.story-card h3 a:hover,
.analysis-item h3 a:hover,
.dispatch-card h3 a:hover {
  background-size: 100% 2px;
}

.story-card__body > p:not(.kicker),
.analysis-item > div:last-child > p:not(.kicker),
.dispatch-card > div:last-child > p:not(.kicker) {
  color: var(--ink-soft);
  font-size: .9rem;
}

.story-card--text {
  display: flex;
  min-height: 290px;
  align-items: end;
}

.story-card--text:nth-child(3) {
  background: var(--moss-dark);
  color: var(--white);
}

.story-card--text:nth-child(3) .kicker {
  color: #8ed0b6;
}

.story-card--text:nth-child(3) .story-card__body > p,
.story-card--text:nth-child(3) .story-meta {
  color: #bdcbc4;
}

.rail {
  min-width: 0;
}

.quick-reads {
  margin-top: 34px;
  padding-top: 24px;
  border-top: 2px solid var(--ink);
}

.quick-reads ol {
  padding: 0;
  margin: 0;
  list-style: none;
}

.quick-reads a {
  display: grid;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  grid-template-columns: 34px 1fr;
  font-family: var(--serif);
  font-size: 1.04rem;
  line-height: 1.35;
}

.quick-reads a:hover {
  color: var(--moss);
}

.quick-reads span {
  color: var(--orange);
  font-family: var(--mono);
  font-size: .62rem;
}

.feature-band {
  background: var(--yellow);
  border-block: 1px solid var(--ink);
}

.feature-band__inner {
  display: grid;
  min-height: 520px;
  padding-block: 72px;
  grid-template-columns: minmax(0, 1.15fr) minmax(380px, .85fr);
  gap: 92px;
  align-items: center;
}

.feature-band__copy h2 {
  max-width: 750px;
  margin-bottom: 25px;
  font-family: var(--serif);
  font-size: clamp(2.7rem, 5vw, 5.2rem);
  font-weight: 500;
  letter-spacing: -.06em;
  line-height: .96;
}

.feature-band__copy > p:not(.eyebrow) {
  max-width: 660px;
  margin-bottom: 28px;
  font-size: 1rem;
}

.signal-list {
  border-top: 2px solid var(--ink);
}

.signal-list > div {
  display: grid;
  padding: 22px 0;
  border-bottom: 1px solid rgba(23, 33, 29, .5);
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
}

.signal-list dt {
  font-family: var(--serif);
  font-size: 1.12rem;
}

.signal-list dd {
  display: flex;
  align-items: flex-end;
  flex-direction: column;
}

.signal-list strong {
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 500;
  letter-spacing: -.06em;
  line-height: .9;
}

.signal-list span {
  margin-top: 7px;
  font-size: .59rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.story-flow {
  display: grid;
  gap: 56px;
}

.explainer {
  max-width: 940px;
  margin-inline: auto;
}

.explainer h2 {
  max-width: 900px;
  margin-bottom: 24px;
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  font-weight: 500;
  letter-spacing: -.055em;
  line-height: 1;
}

.explainer__lead {
  max-width: 790px;
  margin-bottom: 34px;
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: 1.25rem;
  line-height: 1.5;
}

.explainer__columns {
  display: grid;
  padding-top: 28px;
  border-top: 1px solid var(--line-dark);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 46px;
}

.explainer__columns p {
  margin: 0;
  color: var(--ink-soft);
  font-size: .94rem;
}

.newsletter {
  background: var(--moss-dark);
  color: var(--white);
}

.newsletter--paper {
  background: var(--paper-deep);
  border-top: 1px solid var(--ink);
  color: var(--ink);
}

.newsletter__inner {
  display: grid;
  min-height: 310px;
  padding-block: 66px;
  grid-template-columns: minmax(0, 1fr) minmax(390px, .72fr);
  gap: 84px;
  align-items: center;
}

.newsletter .eyebrow {
  color: #80cbb0;
}

.newsletter--paper .eyebrow {
  color: var(--moss);
}

.newsletter h2 {
  max-width: 680px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.3rem, 4vw, 4rem);
  font-weight: 500;
  letter-spacing: -.05em;
  line-height: 1;
}

.newsletter__form > label {
  display: block;
  margin-bottom: 9px;
  font-size: .69rem;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.newsletter__form > div {
  display: grid;
  grid-template-columns: 1fr auto;
}

.newsletter__form input {
  width: 100%;
  min-width: 0;
  min-height: 52px;
  padding: 11px 14px;
  background: var(--white);
  border: 0;
  border-radius: 0;
  color: var(--ink);
}

.newsletter__form button {
  min-height: 52px;
  padding: 10px 17px;
  background: var(--orange);
  border: 0;
  color: var(--ink);
  font-size: .71rem;
  font-weight: 850;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.newsletter__form button:hover {
  background: var(--yellow);
}

.newsletter__form > p {
  margin: 8px 0 0;
  color: #9eb0a7;
  font-size: .64rem;
}

.newsletter--paper .newsletter__form > p {
  color: var(--ink-soft);
}

/* Shared inner-page mastheads */

.page-intro {
  border-bottom: 1px solid var(--ink);
}

.page-intro__grid {
  display: grid;
  min-height: 430px;
  padding-block: 76px 56px;
  grid-template-columns: minmax(0, 1.4fr) minmax(300px, .6fr);
  gap: 70px;
  align-items: end;
}

.page-intro h1 {
  max-width: 850px;
  margin-bottom: 0;
  font-family: var(--serif);
  font-size: clamp(4.8rem, 11vw, 9.6rem);
  font-weight: 500;
  letter-spacing: -.08em;
  line-height: .78;
}

.page-intro__grid > p {
  margin-bottom: 2px;
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: 1.25rem;
  line-height: 1.5;
}

.page-intro--insights {
  background: #dce4df;
}

.topic-row {
  display: flex;
  min-height: 58px;
  padding-block: 10px;
  align-items: center;
  gap: 11px;
  overflow-x: auto;
  border-top: 1px solid rgba(23, 33, 29, .35);
}

.topic-row span {
  flex: 0 0 auto;
  padding: 6px 11px;
  border: 1px solid rgba(23, 33, 29, .48);
  border-radius: 999px;
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
}

/* Insights */

.section-heading--index {
  margin-bottom: 36px;
}

.index-board {
  display: grid;
  grid-template-columns: minmax(280px, .7fr) minmax(0, 1.3fr);
  gap: 1px;
  background: var(--ink);
  border: 1px solid var(--ink);
}

.index-score,
.index-factors {
  background: var(--white);
}

.index-score {
  display: flex;
  min-height: 520px;
  padding: 36px;
  flex-direction: column;
  justify-content: space-between;
}

.index-score__head,
.index-factors article > div:first-child {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.index-score__head > span:first-child,
.index-factors article > div:first-child p {
  margin: 0;
  font-size: .7rem;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.trend {
  padding: 4px 8px;
  border-radius: 999px;
  font-size: .59rem;
  font-weight: 850;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.trend--up {
  background: #d8ece4;
  color: var(--moss-dark);
}

.trend--flat {
  background: #e4e6e4;
  color: var(--ink-soft);
}

.trend--down {
  background: #f6dcd3;
  color: #8b3825;
}

.index-score > p {
  margin: auto 0;
  font-family: var(--serif);
  letter-spacing: -.09em;
  line-height: .72;
}

.index-score > p strong {
  font-size: clamp(7rem, 13vw, 11rem);
  font-weight: 500;
}

.index-score > p span {
  color: var(--line-dark);
  font-size: 1.8rem;
  letter-spacing: -.04em;
}

.meter {
  width: 100%;
  height: 5px;
  overflow: hidden;
  background: #d6d8d5;
}

.meter__fill {
  display: block;
  height: 100%;
  background: var(--orange);
}

.meter__fill--52 { width: 52%; }
.meter__fill--61 { width: 61%; }
.meter__fill--68 { width: 68%; }
.meter__fill--69 { width: 69%; }
.meter__fill--74 { width: 74%; }

.index-score small {
  margin-top: 10px;
  color: #6f7772;
  font-family: var(--mono);
  font-size: .6rem;
  text-transform: uppercase;
}

.index-factors {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.index-factors article {
  display: flex;
  min-height: 260px;
  padding: 30px;
  flex-direction: column;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.index-factors article:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.factor-value {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 16px;
  align-items: center;
}

.factor-value strong {
  font-family: var(--serif);
  font-size: 2.3rem;
  font-weight: 500;
  letter-spacing: -.06em;
}

.index-factors article > p {
  margin: 0;
  color: var(--ink-soft);
  font-size: .77rem;
  line-height: 1.5;
}

.method-note {
  display: flex;
  margin: 13px 0 0;
  align-items: baseline;
  gap: 11px;
  color: #6c756f;
  font-family: var(--mono);
  font-size: .62rem;
}

.method-note span {
  color: var(--ink);
  font-weight: 850;
  text-transform: uppercase;
}

.insight-feature {
  background: var(--blue);
  color: var(--white);
}

.insight-feature__grid {
  display: grid;
  min-height: 650px;
  padding-block: 74px;
  grid-template-columns: minmax(0, 1.1fr) minmax(390px, .9fr);
  gap: 82px;
  align-items: center;
}

.insight-feature .eyebrow {
  color: #b8d5e4;
}

.insight-feature__copy h2 {
  max-width: 730px;
  margin-bottom: 28px;
  font-family: var(--serif);
  font-size: clamp(3rem, 5.2vw, 5.4rem);
  font-weight: 500;
  letter-spacing: -.06em;
  line-height: .96;
}

.insight-feature__dek {
  max-width: 700px;
  color: #d7e2e7;
  font-family: var(--serif);
  font-size: 1.18rem;
  line-height: 1.5;
}

.insight-feature .story-meta {
  color: #bed0d8;
}

.promise-map {
  display: grid;
  min-height: 470px;
  padding: 1px;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, .4);
}

.promise-map > div {
  display: flex;
  padding: 22px;
  flex-direction: column;
  justify-content: space-between;
  background: var(--blue);
}

.promise-map__primary {
  grid-row: span 2;
}

.promise-map span {
  font-family: var(--serif);
  font-size: clamp(3rem, 5vw, 6rem);
  letter-spacing: -.08em;
  line-height: .8;
}

.promise-map p {
  margin: 0;
  font-size: .67rem;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.analysis-feed {
  border-top: 1px solid var(--ink);
}

.analysis-item {
  display: grid;
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 24px;
}

.analysis-item__number {
  color: var(--orange);
  font-family: var(--serif);
  font-size: 2.7rem;
  line-height: 1;
}

.analysis-item h3 {
  max-width: 720px;
  font-size: clamp(1.6rem, 2.8vw, 2.55rem);
}

.analysis-item > div:last-child > p:not(.kicker) {
  max-width: 670px;
}

.rail--analysis {
  display: flex;
  flex-direction: column;
  gap: 34px;
}

.source-box {
  padding: 28px;
  background: var(--yellow);
  border: 1px solid var(--ink);
}

.source-box h3 {
  margin-bottom: 10px;
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: -.04em;
}

.source-box > p:not(.eyebrow) {
  color: var(--ink-soft);
  font-size: .82rem;
}

.source-box ul {
  padding: 15px 0 0;
  margin: 20px 0 0;
  border-top: 1px solid rgba(23, 33, 29, .35);
  list-style: none;
}

.source-box li {
  padding: 6px 0;
  font-family: var(--mono);
  font-size: .68rem;
  text-transform: uppercase;
}

.source-box li::before {
  margin-right: 9px;
  content: "✓";
}

/* Field notes */

.page-intro--field {
  background: var(--orange);
}

.field-mast {
  display: grid;
  min-height: 470px;
  padding-block: 82px 62px;
  grid-template-columns: minmax(0, 1.25fr) minmax(340px, .75fr);
  gap: 70px;
  align-items: end;
}

.field-mast h1 {
  margin-bottom: 20px;
  font-family: var(--serif);
  font-size: clamp(5rem, 12vw, 10rem);
  font-weight: 500;
  letter-spacing: -.085em;
  line-height: .76;
}

.field-mast__copy > p:last-child {
  max-width: 710px;
  margin: 0;
  font-family: var(--serif);
  font-size: 1.26rem;
  line-height: 1.5;
}

.field-mast__coordinates {
  padding: 24px;
  border: 1px solid rgba(23, 33, 29, .72);
}

.field-mast__coordinates > p {
  margin-bottom: 28px;
  font-family: var(--serif);
  font-size: 1.26rem;
  line-height: 1.35;
}

.field-mast__coordinates > p span {
  display: block;
  margin-bottom: 8px;
  font-family: var(--sans);
  font-size: .63rem;
  font-weight: 850;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.field-mast__coordinates dl {
  display: grid;
  margin: 0;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.field-mast__coordinates dl div {
  padding-top: 12px;
  border-top: 1px solid rgba(23, 33, 29, .45);
}

.field-mast__coordinates dt {
  font-size: .56rem;
  font-weight: 850;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.field-mast__coordinates dd {
  font-family: var(--mono);
  font-size: .68rem;
}

.dispatch-feature {
  display: grid;
  min-height: 620px;
  grid-template-columns: 110px minmax(0, 1fr) minmax(330px, .72fr);
  background: var(--white);
  border: 1px solid var(--ink);
  box-shadow: var(--shadow);
}

.dispatch-feature__marker {
  display: flex;
  padding: 20px;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  background: var(--ink);
  color: var(--white);
  font-family: var(--mono);
  font-size: .61rem;
  letter-spacing: .07em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.dispatch-feature__body {
  display: flex;
  padding: 56px;
  flex-direction: column;
  justify-content: center;
}

.dispatch-feature h2 {
  max-width: 680px;
  margin-bottom: 25px;
  font-family: var(--serif);
  font-size: clamp(2.8rem, 5vw, 5.1rem);
  font-weight: 500;
  letter-spacing: -.06em;
  line-height: .95;
}

.dispatch-feature__dek {
  max-width: 660px;
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: 1.08rem;
}

.dispatch-feature__art {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  background: var(--yellow);
  border-left: 1px solid var(--ink);
}

.sun-disc {
  position: absolute;
  top: 12%;
  left: 50%;
  width: 170px;
  height: 170px;
  background: var(--orange);
  border: 1px solid var(--ink);
  border-radius: 50%;
  transform: translateX(-50%);
}

.roof-lines {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 56%;
  transform: skewY(-8deg) translateY(13%);
  transform-origin: left bottom;
}

.roof-lines i {
  display: block;
  height: 20%;
  border-top: 1px solid var(--ink);
  background: rgba(255, 255, 255, .2);
}

.dispatch-feature__art > p {
  position: absolute;
  right: 24px;
  bottom: 22px;
  margin: 0;
  font-family: var(--serif);
  font-size: 4.5rem;
  letter-spacing: -.08em;
  line-height: .8;
  text-align: right;
}

.dispatch-feature__art small {
  display: block;
  margin-top: 10px;
  font-family: var(--sans);
  font-size: .57rem;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.notebook-section {
  padding-block: 92px;
  background: #e7e0d0;
  border-block: 1px solid var(--ink);
}

.notebook-layout {
  display: grid;
  grid-template-columns: minmax(0, 780px) 280px;
  gap: 92px;
  justify-content: center;
}

.notebook-copy > header {
  padding-bottom: 32px;
  border-bottom: 1px solid var(--line-dark);
}

.notebook-copy h2 {
  margin-bottom: 24px;
  font-family: var(--serif);
  font-size: clamp(3.2rem, 6vw, 6rem);
  font-weight: 500;
  letter-spacing: -.06em;
  line-height: .92;
}

.notebook-copy__standfirst {
  max-width: 670px;
  margin: 0;
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: 1.32rem;
  line-height: 1.5;
}

.notebook-copy__text {
  max-width: 680px;
  padding-block: 36px 10px;
}

.notebook-copy__text > p {
  margin-bottom: 25px;
  font-family: var(--serif);
  font-size: 1.13rem;
  line-height: 1.76;
}

.drop-cap {
  float: left;
  margin: 8px 10px 0 0;
  color: var(--orange);
  font-family: var(--serif);
  font-size: 5rem;
  line-height: .68;
}

.margin-note {
  margin: 38px 0;
  padding: 22px 0 22px 28px;
  border-left: 5px solid var(--orange);
}

.margin-note span {
  display: block;
  margin-bottom: 8px;
  color: var(--moss);
  font-size: .64rem;
  font-weight: 850;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.margin-note p {
  max-width: 540px;
  margin: 0;
  font-family: var(--serif);
  font-size: 1.35rem;
  font-style: italic;
  line-height: 1.45;
}

.notebook-copy blockquote {
  margin: 42px 0;
  padding: 36px;
  background: var(--moss-dark);
  color: var(--white);
}

.notebook-copy blockquote p {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.35rem);
  font-weight: 500;
  letter-spacing: -.025em;
  line-height: 1.35;
}

.notebook-copy .vmx-ad-slot {
  margin-block: 44px;
}

.reporter-card {
  display: flex;
  max-width: 680px;
  padding-top: 26px;
  align-items: center;
  gap: 18px;
  border-top: 1px solid var(--line-dark);
}

.reporter-card__initials {
  display: grid;
  width: 58px;
  height: 58px;
  flex: 0 0 auto;
  place-items: center;
  background: var(--orange);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 1.1rem;
}

.reporter-card p {
  margin-bottom: 2px;
  font-size: .75rem;
  text-transform: uppercase;
}

.reporter-card div > span {
  color: var(--ink-soft);
  font-size: .75rem;
}

.notebook-rail {
  padding-top: 12px;
}

.field-facts {
  border-top: 2px solid var(--ink);
}

.field-facts .eyebrow {
  padding-top: 18px;
}

.field-facts dl {
  margin: 0;
}

.field-facts dl > div {
  display: flex;
  padding: 15px 0;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  border-top: 1px solid var(--line-dark);
}

.field-facts dt {
  color: var(--ink-soft);
  font-size: .66rem;
  font-weight: 750;
  text-transform: uppercase;
}

.field-facts dd {
  font-family: var(--mono);
  font-size: .72rem;
}

.notebook-scrap {
  margin-top: 42px;
  padding: 24px;
  background: #f5dfa5;
  box-shadow: 8px 10px 0 rgba(23, 33, 29, .08);
  transform: rotate(-1.5deg);
}

.notebook-scrap--blue {
  background: #cbdde4;
  transform: rotate(1deg);
}

.notebook-scrap > span {
  display: block;
  margin-bottom: 10px;
  font-size: .61rem;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.notebook-scrap p {
  font-family: var(--serif);
  font-size: 1.06rem;
  font-style: italic;
  line-height: 1.45;
}

.notebook-scrap small {
  font-family: var(--mono);
  font-size: .58rem;
}

.dispatch-cards {
  display: grid;
  margin-top: 36px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.dispatch-card {
  background: var(--white);
  border: 1px solid var(--line-dark);
}

.dispatch-card__stamp {
  display: flex;
  min-height: 170px;
  padding: 20px;
  align-items: flex-start;
  justify-content: space-between;
  flex-direction: column;
  background-color: var(--blue);
  background-image: repeating-linear-gradient(145deg, transparent 0, transparent 14px, rgba(255, 255, 255, .08) 15px, rgba(255, 255, 255, .08) 16px);
  color: var(--white);
}

.dispatch-card__stamp--green {
  background-color: var(--moss);
}

.dispatch-card__stamp--orange {
  background-color: var(--orange);
  color: var(--ink);
}

.dispatch-card__stamp span {
  font-size: .65rem;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.dispatch-card__stamp strong {
  font-family: var(--serif);
  font-size: 3.5rem;
  font-weight: 500;
  letter-spacing: -.07em;
  line-height: .8;
}

.dispatch-card > div:last-child {
  padding: 25px;
}

.dispatch-card h3 {
  font-size: 1.72rem;
}

/* Footer */

.site-footer {
  padding-block: 64px 24px;
  background: var(--ad-ink);
  color: #d6e0da;
}

.site-footer__grid {
  display: grid;
  padding-bottom: 52px;
  grid-template-columns: minmax(260px, 1.4fr) .6fr 1fr;
  gap: 70px;
}

.wordmark--footer .wordmark__symbol {
  background: var(--paper);
  color: var(--ink);
}

.site-footer__grid > div:first-child > p {
  max-width: 390px;
  margin: 22px 0 0;
  color: #89978f;
  font-size: .8rem;
}

.site-footer nav,
.site-footer__lab {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}

.site-footer nav p,
.site-footer__lab p {
  margin-bottom: 16px;
  color: #f4f8f5;
  font-size: .65rem;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.site-footer nav a {
  padding: 4px 0;
  color: #9aa8a0;
  font-family: var(--serif);
  font-size: .95rem;
}

.site-footer nav a:hover,
.site-footer__lab a:hover {
  color: #fff;
}

.site-footer__lab > span {
  margin-bottom: 21px;
  color: #89978f;
  font-family: var(--mono);
  font-size: .61rem;
  text-transform: uppercase;
}

.site-footer__lab a {
  padding-bottom: 5px;
  border-bottom: 1px solid #526158;
  color: #cdd8d1;
  font-size: .74rem;
  font-weight: 750;
}

.site-footer__bottom {
  display: flex;
  padding-top: 18px;
  justify-content: space-between;
  border-top: 1px solid #35433b;
  color: #68766e;
  font-family: var(--mono);
  font-size: .58rem;
  letter-spacing: .05em;
  text-transform: uppercase;
}

/* Tablet */

@media (max-width: 1040px) {
  .masthead {
    grid-template-columns: 230px 1fr;
  }

  .edition-stamp {
    display: none;
  }

  .site-nav {
    justify-self: end;
  }

  .hero {
    gap: 38px;
  }

  .hero h1 {
    font-size: clamp(3.8rem, 8vw, 6rem);
  }

  .dispatch-layout,
  .analysis-layout {
    grid-template-columns: minmax(0, 1fr) 310px;
    gap: 28px;
  }

  .feature-band__inner,
  .insight-feature__grid {
    gap: 50px;
  }

  .notebook-layout {
    grid-template-columns: minmax(0, 680px) 240px;
    gap: 48px;
  }

  .dispatch-feature {
    grid-template-columns: 80px minmax(0, 1fr) 300px;
  }

  .dispatch-feature__body {
    padding: 40px;
  }
}

@media (max-width: 860px) {
  .shell {
    width: min(100% - 34px, 760px);
  }

  .masthead {
    position: relative;
    min-height: 78px;
    grid-template-columns: 1fr auto;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: -17px;
    left: -17px;
    display: none;
    padding: 10px 17px 18px;
    background: var(--paper);
    border-bottom: 1px solid var(--ink);
  }

  .site-nav[data-open="true"] {
    display: block;
  }

  .site-nav ul {
    align-items: stretch;
    flex-direction: column;
    gap: 0;
  }

  .site-nav a {
    padding: 12px 2px;
    border-bottom: 1px solid var(--line);
  }

  .site-nav a::after {
    display: none;
  }

  .hero,
  .page-intro__grid,
  .field-mast {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-block: 58px;
  }

  .hero__brief {
    min-height: 360px;
  }

  .page-intro__grid {
    min-height: 370px;
    gap: 34px;
  }

  .page-intro h1 {
    font-size: clamp(5rem, 16vw, 8rem);
  }

  .page-intro__grid > p {
    max-width: 620px;
  }

  .field-mast {
    gap: 45px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .section-heading > p {
    max-width: 600px;
  }

  .dispatch-layout,
  .analysis-layout {
    grid-template-columns: 1fr;
  }

  .rail {
    display: grid;
    grid-template-columns: minmax(300px, 340px) minmax(0, 1fr);
    gap: 28px;
  }

  .quick-reads {
    margin: 0;
  }

  .feature-band__inner,
  .insight-feature__grid,
  .newsletter__inner {
    grid-template-columns: 1fr;
  }

  .feature-band__inner {
    gap: 44px;
  }

  .newsletter__inner {
    gap: 38px;
  }

  .newsletter__form {
    max-width: 590px;
  }

  .index-board {
    grid-template-columns: 1fr;
  }

  .index-score {
    min-height: 420px;
  }

  .index-score > p strong {
    font-size: 9rem;
  }

  .promise-map {
    min-height: 390px;
  }

  .rail--analysis {
    display: grid;
    align-items: start;
    grid-template-columns: minmax(300px, 340px) minmax(0, 1fr);
  }

  .notebook-layout {
    grid-template-columns: 1fr;
  }

  .notebook-rail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .field-facts {
    grid-row: span 2;
  }

  .notebook-scrap {
    margin: 0;
  }

  .dispatch-feature {
    grid-template-columns: 64px minmax(0, 1fr);
  }

  .dispatch-feature__art {
    min-height: 390px;
    border-top: 1px solid var(--ink);
    border-left: 0;
    grid-column: 1 / -1;
  }

  .dispatch-cards {
    grid-template-columns: 1fr 1fr;
  }

  .dispatch-card:last-child {
    grid-column: 1 / -1;
  }

  .site-footer__grid {
    grid-template-columns: 1.2fr .8fr;
  }

  .site-footer__lab {
    grid-column: 1 / -1;
  }
}

/* Phones */

@media (max-width: 620px) {
  .shell {
    width: calc(100% - 28px);
  }

  .lab-strip__inner {
    min-height: 34px;
  }

  .lab-strip p span:last-child,
  .lab-strip__meta {
    display: none;
  }

  .wordmark__symbol {
    width: 38px;
    height: 38px;
  }

  .wordmark strong {
    font-size: 1.35rem;
  }

  .hero {
    padding-block: 48px;
  }

  .hero h1 {
    font-size: clamp(3.25rem, 16vw, 4.6rem);
  }

  .hero__dek {
    font-size: 1.05rem;
  }

  .story-meta {
    gap: 6px 10px;
  }

  .story-meta span + span::before {
    margin-right: 10px;
  }

  .hero__brief {
    min-height: 330px;
  }

  .ad-wrap {
    width: 100%;
    padding-block: 0 32px;
  }

  .ad-wrap--spacious {
    padding-block: 52px 0;
  }

  .ad-wrap--footer {
    padding-bottom: 64px;
  }

  .vmx-ad-slot {
    border-right: 0;
    border-left: 0;
  }

  .vmx-ad-slot--leaderboard .vmx-ad-slot__stage {
    min-height: 100px;
  }

  .vmx-ad-slot--infeed .vmx-ad-slot__stage,
  .vmx-ad-slot--inarticle .vmx-ad-slot__stage {
    min-height: 250px;
  }

  .vmx-ad-slot--rail {
    max-width: none;
  }

  .vmx-ad-slot--rail .vmx-ad-slot__stage {
    min-height: 600px;
  }

  .vmx-ad-slot__topline {
    font-size: .57rem;
  }

  .section {
    padding-block: 60px;
  }

  .section-heading h2 {
    font-size: clamp(2.45rem, 13vw, 3.6rem);
  }

  .story-grid {
    grid-template-columns: 1fr;
  }

  .story-card--text {
    min-height: 250px;
  }

  .rail,
  .rail--analysis {
    display: grid;
    grid-template-columns: 1fr;
  }

  .feature-band__inner,
  .insight-feature__grid {
    min-height: auto;
    padding-block: 60px;
  }

  .feature-band__copy h2,
  .insight-feature__copy h2 {
    font-size: clamp(2.8rem, 13vw, 4rem);
  }

  .signal-list > div {
    grid-template-columns: 1fr auto;
  }

  .explainer__columns {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .newsletter__inner {
    min-height: 0;
    padding-block: 52px;
  }

  .newsletter__form > div {
    grid-template-columns: 1fr;
  }

  .newsletter__form button {
    width: 100%;
  }

  .page-intro__grid {
    min-height: 340px;
    padding-block: 55px 38px;
  }

  .page-intro h1 {
    font-size: clamp(4.5rem, 24vw, 6.7rem);
  }

  .topic-row {
    margin-right: 0;
    width: calc(100% - 14px);
  }

  .index-factors {
    grid-template-columns: 1fr;
  }

  .index-factors article,
  .index-factors article:nth-last-child(-n + 2) {
    min-height: 230px;
    border-bottom: 1px solid var(--line);
    border-left: 0;
  }

  .index-factors article:last-child {
    border-bottom: 0;
  }

  .index-score {
    min-height: 370px;
    padding: 26px;
  }

  .index-score > p strong {
    font-size: 7rem;
  }

  .method-note {
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
  }

  .promise-map {
    min-height: 440px;
    grid-template-columns: 1fr 1fr;
  }

  .promise-map__primary {
    grid-row: auto;
    grid-column: 1 / -1;
  }

  .analysis-item {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 12px;
  }

  .analysis-item__number {
    font-size: 1.75rem;
  }

  .field-mast {
    min-height: 0;
    padding-block: 62px 50px;
  }

  .field-mast h1 {
    font-size: clamp(4.6rem, 24vw, 6.8rem);
  }

  .field-mast__coordinates dl {
    grid-template-columns: 1fr;
  }

  .dispatch-feature {
    grid-template-columns: 1fr;
  }

  .dispatch-feature__marker {
    min-height: 44px;
    padding: 12px 16px;
    flex-direction: row;
    writing-mode: initial;
  }

  .dispatch-feature__body {
    padding: 34px 24px 40px;
  }

  .dispatch-feature h2 {
    font-size: clamp(2.75rem, 13vw, 4rem);
  }

  .dispatch-feature__art {
    min-height: 340px;
    grid-column: auto;
  }

  .notebook-section {
    padding-block: 64px;
  }

  .notebook-copy__text > p {
    font-size: 1.05rem;
  }

  .notebook-copy blockquote {
    margin-inline: -14px;
    padding: 28px;
  }

  .notebook-copy .vmx-ad-slot {
    width: calc(100% + 28px);
    margin-left: -14px;
  }

  .notebook-rail {
    grid-template-columns: 1fr;
  }

  .field-facts {
    grid-row: auto;
  }

  .dispatch-cards {
    grid-template-columns: 1fr;
  }

  .dispatch-card:last-child {
    grid-column: auto;
  }

  .site-footer {
    padding-top: 50px;
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .site-footer__lab {
    grid-column: auto;
  }

  .site-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}
