@font-face {
  font-family: "Space Grotesk";
  src: url("assets/fonts/SpaceGrotesk-Variable.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 300 700;
}

@font-face {
  font-family: "Manrope";
  src: url("assets/fonts/Manrope-Variable.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 200 800;
}

:root {
  --ink: #121a17;
  --ink-soft: #1d2924;
  --cream: #f4f0e7;
  --stone: #e8e1d4;
  --sand: #ddd0bb;
  --olive: #a4ae77;
  --rust: #bd6242;
  --lime: #d8ee50;
  --line: rgba(18, 26, 23, 0.18);
  --line-light: rgba(244, 240, 231, 0.24);
  --body: "Manrope", "Segoe UI", Arial, sans-serif;
  --display: "Space Grotesk", "Segoe UI", Arial, sans-serif;
  --mono: "Manrope", "Segoe UI", Arial, sans-serif;
  --max-width: 1320px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--cream);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

img {
  max-width: 100%;
  display: block;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 20;
  padding: 10px 14px;
  color: var(--ink);
  background: var(--lime);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.section-dark {
  color: var(--cream);
  background: var(--ink);
}

.site-header {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
  min-height: 84px;
  padding: 16px clamp(22px, 4vw, 64px);
  color: var(--cream);
  background: var(--ink);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  width: fit-content;
  letter-spacing: -0.03em;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  align-content: center;
  justify-items: center;
  color: var(--ink);
  background: var(--lime);
  border-radius: 50%;
  font-family: var(--display);
  font-size: 13px;
  font-style: italic;
  font-weight: 700;
  line-height: 0.82;
  transform: rotate(-10deg);
}

.brand-mark span:last-child {
  margin-left: 7px;
}

.brand-name {
  display: grid;
  font-size: 15px;
  font-weight: 700;
  line-height: 0.95;
}

.brand-name span:last-child {
  font-family: var(--display);
  font-size: 17px;
  font-style: italic;
  font-weight: 400;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 44px);
  color: rgba(244, 240, 231, 0.72);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.main-nav a,
.header-cta,
.footer-links a,
.footer-bottom a {
  transition: color 180ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible,
.footer-links a:hover,
.footer-links a:focus-visible,
.footer-bottom a:hover,
.footer-bottom a:focus-visible {
  color: var(--lime);
}

.header-cta {
  display: inline-flex;
  justify-self: end;
  align-items: center;
  gap: 10px;
  padding: 11px 0 11px 16px;
  color: var(--lime);
  border-left: 1px solid var(--line-light);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.header-cta svg {
  width: 16px;
  height: 16px;
  transition: transform 180ms var(--ease);
}

.header-cta:hover svg,
.header-cta:focus-visible svg {
  transform: translate(3px, -3px);
}

.nav-toggle {
  display: none;
  align-items: center;
  gap: 11px;
  padding: 8px 0 8px 12px;
  color: var(--cream);
  background: transparent;
  border: 0;
  border-left: 1px solid var(--line-light);
  cursor: pointer;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-toggle-lines {
  display: grid;
  gap: 4px;
  width: 18px;
}

.nav-toggle-lines span {
  display: block;
  height: 1px;
  background: currentColor;
  transition: transform 180ms ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines span:first-child {
  transform: translateY(2.5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines span:last-child {
  transform: translateY(-2.5px) rotate(-45deg);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: clamp(28px, 7vw, 112px);
  min-height: min(790px, calc(100vh - 84px));
  padding: clamp(56px, 8vw, 116px) clamp(22px, 7vw, 110px) clamp(64px, 7vw, 100px);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 545px;
}

.eyebrow,
.section-kicker,
.story-topline,
.story-card-top,
.dispatch-location,
.dispatch-date,
.footer-label,
.filter-helper,
.image-caption,
.hero-meta,
.lead-story-copy > p,
.manifesto-aside,
.join-copy,
.story-card p,
.dispatch-feature p {
  font-family: var(--mono);
}

.eyebrow,
.section-kicker {
  margin: 0;
  color: var(--rust);
  font-size: 10px;
  letter-spacing: 0.09em;
  line-height: 1.4;
  text-transform: uppercase;
}

.hero .eyebrow {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 9px;
  color: var(--lime);
}

.eyebrow-dot,
.location-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  background: currentColor;
  border-radius: 50%;
}

.eyebrow-slash {
  opacity: 0.4;
}

.hero h1,
.section-heading h2,
.manifesto-copy h2,
.join-main h2 {
  margin: 23px 0 0;
  font-family: var(--display);
  font-size: clamp(62px, 8.7vw, 136px);
  font-weight: 400;
  letter-spacing: -0.085em;
  line-height: 0.84;
}

em {
  font-weight: 400;
}

.hero h1 em,
.section-heading h2 em,
.manifesto-copy h2 em,
.join-main h2 em,
.dispatch-feature h3 em,
.lead-story h3 em {
  color: var(--lime);
}

.hero-intro {
  max-width: 355px;
  margin: 32px 0 0;
  color: rgba(244, 240, 231, 0.76);
  font-size: clamp(18px, 2vw, 23px);
  letter-spacing: -0.025em;
  line-height: 1.25;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 25px;
  margin-top: 38px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-width: 165px;
  padding: 15px 17px 15px 18px;
  border: 1px solid transparent;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.045em;
  line-height: 1;
  text-transform: uppercase;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, transform 180ms var(--ease);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-3px);
}

.button-lime {
  color: var(--ink);
  background: var(--lime);
}

.button-lime:hover,
.button-lime:focus-visible {
  background: #e7fa73;
}

.button-ink {
  color: var(--cream);
  background: var(--ink);
}

.button-ink:hover,
.button-ink:focus-visible {
  color: var(--lime);
  background: var(--ink-soft);
}

.text-link,
.arrow-link,
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  width: fit-content;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.text-link::after,
.arrow-link::after,
.card-link::after {
  content: "";
  display: block;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width 180ms var(--ease);
}

.text-link:hover::after,
.text-link:focus-visible::after,
.arrow-link:hover::after,
.arrow-link:focus-visible::after,
.card-link:hover::after,
.card-link:focus-visible::after {
  width: 25px;
}

.text-link-light {
  color: var(--cream);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 25px;
  margin-top: 65px;
  color: rgba(244, 240, 231, 0.44);
  font-size: 10px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-meta strong {
  color: var(--lime);
  font-weight: 400;
}

.hero-image-wrap {
  position: relative;
  align-self: center;
  margin: 0;
  min-height: 530px;
  overflow: hidden;
  background: var(--stone);
}

.hero-image-wrap::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(100deg, rgba(18, 26, 23, 0.26), transparent 38%, rgba(18, 26, 23, 0.1));
  content: "";
  pointer-events: none;
}

.hero-image {
  width: 100%;
  height: 100%;
  min-height: 530px;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.9) contrast(1.02);
  transition: transform 900ms var(--ease);
}

.hero-image-wrap:hover .hero-image {
  transform: scale(1.035);
}

.image-caption {
  position: absolute;
  right: 20px;
  bottom: 18px;
  left: 20px;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: rgba(244, 240, 231, 0.82);
  font-size: 9px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.image-stamp {
  position: absolute;
  top: 22px;
  right: 22px;
  z-index: 2;
  display: grid;
  width: 59px;
  height: 59px;
  align-content: center;
  justify-items: center;
  color: var(--ink);
  background: var(--lime);
  border-radius: 50%;
  font-family: var(--display);
  font-size: 15px;
  font-style: italic;
  font-weight: 700;
  line-height: 0.7;
  text-align: center;
  transform: rotate(12deg);
}

.image-stamp span {
  font-size: 9px;
}

.ticker {
  overflow: hidden;
  padding: 15px 0 14px;
  color: var(--ink);
  background: var(--lime);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.ticker-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 26px;
  animation: ticker 28s linear infinite;
}

.ticker i {
  font-size: 14px;
  font-style: normal;
}

@keyframes ticker {
  to {
    transform: translateX(-50%);
  }
}

.content-section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: clamp(88px, 11vw, 160px) clamp(22px, 5vw, 75px);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 60px;
}

.section-heading h2 {
  max-width: 700px;
  margin-top: 18px;
  color: var(--ink);
  font-size: clamp(48px, 6.7vw, 96px);
  line-height: 0.88;
}

.section-heading h2 em {
  color: var(--rust);
}

.section-note {
  max-width: 270px;
  margin: 0 0 7px;
  color: rgba(18, 26, 23, 0.62);
  font-size: 14px;
  line-height: 1.45;
}

.lead-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 460px;
  margin-top: clamp(55px, 8vw, 100px);
  color: var(--cream);
  background: var(--rust);
}

.lead-story-copy {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(28px, 4vw, 54px);
  overflow: hidden;
}

.story-topline,
.story-card-top {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  color: rgba(244, 240, 231, 0.65);
  font-size: 10px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.lead-number {
  position: absolute;
  right: 31px;
  bottom: -34px;
  color: rgba(18, 26, 23, 0.12);
  font-family: var(--display);
  font-size: 220px;
  letter-spacing: -0.1em;
  line-height: 0.8;
}

.lead-story h3 {
  position: relative;
  margin: auto 0 24px;
  font-family: var(--display);
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 400;
  letter-spacing: -0.075em;
  line-height: 0.88;
}

.lead-story h3 em {
  color: var(--lime);
}

.lead-story-copy > p {
  position: relative;
  max-width: 405px;
  margin: 0 0 28px;
  color: rgba(244, 240, 231, 0.78);
  font-size: 12px;
  letter-spacing: 0.01em;
  line-height: 1.55;
}

.arrow-link {
  position: relative;
  color: var(--lime);
}

.lead-story-art {
  position: relative;
  overflow: hidden;
  background: var(--stone);
}

.lead-story-art::before,
.lead-story-art::after {
  position: absolute;
  background: var(--ink);
  content: "";
}

.lead-story-art::before {
  top: 19%;
  right: -13%;
  width: 80%;
  height: 3px;
  transform: rotate(-39deg);
}

.lead-story-art::after {
  right: 14%;
  bottom: -14%;
  width: 3px;
  height: 85%;
  transform: rotate(34deg);
}

.art-ring {
  position: absolute;
  display: block;
  width: 230px;
  height: 230px;
  border: 1px solid rgba(18, 26, 23, 0.7);
  border-radius: 50%;
}

.art-ring-one {
  top: 18%;
  left: 16%;
}

.art-ring-two {
  top: 24%;
  left: 24%;
  border-color: rgba(18, 26, 23, 0.28);
  transform: scale(1.45);
}

.art-cross {
  position: absolute;
  display: block;
  width: 36px;
  height: 36px;
  border: 1px solid var(--ink);
  transform: rotate(45deg);
}

.art-cross-one {
  top: 12%;
  right: 18%;
}

.art-cross-two {
  right: 16%;
  bottom: 18%;
  background: var(--lime);
}

.art-word {
  position: absolute;
  right: -5%;
  bottom: 9%;
  color: rgba(18, 26, 23, 0.9);
  font-family: var(--body);
  font-size: clamp(60px, 9vw, 122px);
  font-weight: 700;
  letter-spacing: -0.12em;
  line-height: 0.8;
  transform: rotate(-90deg);
  transform-origin: center;
}

.art-caption {
  position: absolute;
  bottom: 25px;
  left: 29px;
  z-index: 1;
  color: var(--ink);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  line-height: 1.2;
}

.filter-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-top: clamp(82px, 10vw, 140px);
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.filter-helper {
  margin: 8px 0 0;
  color: rgba(18, 26, 23, 0.54);
  font-size: 11px;
}

.filter-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 9px;
}

.filter-button {
  padding: 9px 13px;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 99px;
  cursor: pointer;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.05em;
  line-height: 1;
  text-transform: uppercase;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.filter-button:hover,
.filter-button:focus-visible,
.filter-button.is-active {
  color: var(--ink);
  background: var(--lime);
  border-color: var(--lime);
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 13px;
  margin-top: 13px;
}

.story-card {
  display: flex;
  min-height: 435px;
  flex-direction: column;
  padding: 22px 22px 24px;
  color: var(--ink);
  transition: transform 280ms var(--ease), opacity 180ms ease;
}

.story-card:hover {
  transform: translateY(-7px);
}

.story-card[hidden] {
  display: none;
}

.story-card-rust {
  color: var(--cream);
  background: var(--rust);
}

.story-card-ink {
  color: var(--cream);
  background: var(--ink);
}

.story-card-olive {
  background: var(--olive);
}

.story-card-sand {
  background: var(--sand);
}

.story-card-top {
  color: currentColor;
  opacity: 0.63;
}

.story-card-icon {
  position: relative;
  display: flex;
  min-height: 115px;
  align-items: center;
  justify-content: center;
  margin: 28px 0 24px;
}

.icon-pulse {
  gap: 5px;
  align-items: end;
}

.icon-pulse span {
  display: block;
  width: 9px;
  background: currentColor;
}

.icon-pulse span:nth-child(1),
.icon-pulse span:nth-child(5) {
  height: 27px;
}

.icon-pulse span:nth-child(2),
.icon-pulse span:nth-child(4) {
  height: 57px;
}

.icon-pulse span:nth-child(3) {
  height: 94px;
}

.icon-pulse::after {
  position: absolute;
  width: 138px;
  height: 1px;
  background: currentColor;
  content: "";
  opacity: 0.42;
}

.icon-grid {
  display: grid;
  grid-template-columns: repeat(2, 47px);
  gap: 7px;
}

.icon-grid span {
  display: block;
  width: 47px;
  height: 47px;
  border: 1px solid currentColor;
}

.icon-grid span:nth-child(1) {
  background: var(--lime);
  border-color: var(--lime);
}

.icon-grid span:nth-child(4) {
  background: rgba(244, 240, 231, 0.18);
}

.icon-route {
  width: 140px;
  justify-content: space-between;
}

.icon-route::before {
  position: absolute;
  top: 50%;
  left: 12px;
  width: 116px;
  height: 46px;
  border-top: 1px solid currentColor;
  border-radius: 50%;
  content: "";
  transform: rotate(-15deg);
}

.icon-route span {
  position: relative;
  z-index: 1;
  display: block;
  width: 14px;
  height: 14px;
  background: currentColor;
  border-radius: 50%;
}

.icon-route span:nth-child(2) {
  align-self: flex-start;
  background: var(--rust);
}

.icon-sun::before {
  display: block;
  width: 74px;
  height: 74px;
  background: var(--rust);
  border-radius: 50%;
  content: "";
}

.icon-sun::after {
  position: absolute;
  bottom: 16px;
  width: 145px;
  height: 1px;
  background: currentColor;
  content: "";
}

.icon-sun span:first-child {
  position: absolute;
  width: 123px;
  height: 64px;
  border-top: 1px solid currentColor;
  border-radius: 50%;
  transform: rotate(-10deg);
}

.icon-sun span:last-child {
  position: absolute;
  width: 1px;
  height: 110px;
  background: currentColor;
  transform: rotate(38deg);
}

.story-card h3 {
  margin: auto 0 14px;
  font-family: var(--display);
  font-size: clamp(31px, 3vw, 43px);
  font-weight: 400;
  letter-spacing: -0.075em;
  line-height: 0.91;
}

.story-card p {
  max-width: 250px;
  min-height: 57px;
  margin: 0;
  color: currentColor;
  font-size: 11px;
  letter-spacing: 0.01em;
  line-height: 1.45;
  opacity: 0.71;
}

.card-link {
  margin-top: 25px;
}

.manifesto-section {
  position: relative;
  display: grid;
  grid-template-columns: 0.35fr 1fr 0.65fr;
  align-items: center;
  gap: clamp(30px, 6vw, 100px);
  min-height: 640px;
  padding: clamp(85px, 11vw, 150px) clamp(22px, 7vw, 110px);
  overflow: hidden;
}

.manifesto-section::before {
  position: absolute;
  top: 11%;
  left: 45%;
  width: 1px;
  height: 130%;
  background: var(--line-light);
  content: "";
  transform: rotate(26deg);
}

.manifesto-mark {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
  justify-items: center;
  width: clamp(105px, 12vw, 170px);
  height: clamp(105px, 12vw, 170px);
  color: var(--ink);
  background: var(--lime);
  border-radius: 50%;
  font-family: var(--display);
  font-size: clamp(24px, 3vw, 38px);
  font-style: italic;
  font-weight: 700;
  line-height: 0.72;
  transform: rotate(-14deg);
}

.manifesto-mark span:last-child {
  margin-left: 24px;
}

.section-kicker-lime {
  color: var(--lime);
}

.manifesto-copy h2 {
  position: relative;
  z-index: 1;
  margin-top: 19px;
  font-size: clamp(62px, 8vw, 114px);
}

.manifesto-copy h2 em {
  color: var(--rust);
}

.manifesto-aside {
  position: relative;
  z-index: 1;
  max-width: 280px;
  color: rgba(244, 240, 231, 0.66);
  font-size: 12px;
  line-height: 1.6;
}

.aside-line {
  display: block;
  width: 36px;
  height: 2px;
  margin-bottom: 24px;
  background: var(--rust);
}

.manifesto-aside .text-link {
  margin-top: 26px;
}

.dispatch-section {
  padding-top: clamp(95px, 12vw, 170px);
}

.section-heading-tight {
  align-items: start;
}

.dispatch-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(340px, 1.15fr);
  gap: 13px;
  margin-top: clamp(55px, 8vw, 100px);
}

.dispatch-feature {
  display: flex;
  min-height: 470px;
  flex-direction: column;
  padding: clamp(28px, 4vw, 54px);
  color: var(--ink);
  background: var(--olive);
}

.dispatch-location,
.dispatch-date {
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(18, 26, 23, 0.67);
  font-size: 10px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.dispatch-location span:not(.location-dot) {
  opacity: 0.45;
}

.location-dot {
  color: var(--rust);
}

.dispatch-date {
  margin-top: 10px;
  color: rgba(18, 26, 23, 0.45);
}

.dispatch-feature h3 {
  margin: auto 0 19px;
  font-family: var(--display);
  font-size: clamp(48px, 5.8vw, 80px);
  font-weight: 400;
  letter-spacing: -0.085em;
  line-height: 0.85;
}

.dispatch-feature h3 em {
  color: var(--rust);
}

.dispatch-feature p {
  max-width: 420px;
  margin: 0 0 28px;
  color: rgba(18, 26, 23, 0.68);
  font-size: 12px;
  line-height: 1.55;
}

.dispatch-feature .button {
  align-self: flex-start;
}

.dispatch-list {
  display: grid;
  align-content: stretch;
  background: var(--stone);
}

.dispatch-item {
  display: grid;
  grid-template-columns: 50px 1fr 24px;
  align-items: center;
  gap: 18px;
  padding: 25px 28px;
  border-bottom: 1px solid var(--line);
  transition: background-color 180ms ease, padding 180ms var(--ease);
}

.dispatch-item:last-child {
  border-bottom: 0;
}

.dispatch-item:hover,
.dispatch-item:focus-visible {
  padding-right: 22px;
  padding-left: 34px;
  background: var(--lime);
}

.dispatch-index {
  color: var(--rust);
  font-family: var(--mono);
  font-size: 11px;
}

.dispatch-item strong,
.dispatch-item small {
  display: block;
}

.dispatch-item strong {
  font-family: var(--display);
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 1.02;
}

.dispatch-item small {
  margin-top: 9px;
  color: rgba(18, 26, 23, 0.53);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.dispatch-arrow {
  align-self: start;
  color: var(--rust);
  font-size: 20px;
  line-height: 1;
}

.join-section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: clamp(90px, 12vw, 165px) clamp(22px, 5vw, 75px) clamp(100px, 12vw, 170px);
}

.join-top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.join-stamp {
  display: grid;
  width: 75px;
  height: 75px;
  align-content: center;
  justify-items: center;
  color: var(--ink);
  background: var(--rust);
  border-radius: 50%;
  font-family: var(--display);
  font-size: 19px;
  font-style: italic;
  font-weight: 700;
  line-height: 0.9;
  text-align: center;
  transform: rotate(9deg);
}

.join-stamp small {
  margin-top: 5px;
  font-family: var(--mono);
  font-size: 7px;
  font-style: normal;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.join-main {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 70px;
  padding-top: clamp(48px, 6vw, 80px);
}

.join-main h2 {
  margin: 0;
  font-size: clamp(60px, 8vw, 116px);
}

.join-main h2 em {
  color: var(--rust);
}

.join-copy {
  align-self: end;
  max-width: 320px;
  padding-bottom: 7px;
  color: rgba(18, 26, 23, 0.64);
  font-size: 12px;
  line-height: 1.6;
}

.join-copy p {
  margin: 0 0 28px;
}

.site-footer {
  padding: clamp(60px, 8vw, 100px) clamp(22px, 7vw, 110px) 24px;
}

.footer-brand {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 55px;
}

.brand-footer .brand-mark {
  color: var(--ink);
}

.footer-brand p {
  margin: 2px 0 0;
  color: rgba(244, 240, 231, 0.55);
  font-family: var(--mono);
  font-size: 11px;
  line-height: 1.5;
  text-align: right;
}

.footer-links {
  display: flex;
  justify-content: flex-end;
  gap: clamp(60px, 10vw, 180px);
  padding: 26px 0 49px;
  border-top: 1px solid var(--line-light);
}

.footer-links div {
  display: grid;
  align-content: start;
  gap: 6px;
  min-width: 120px;
}

.footer-label {
  margin-bottom: 8px;
  color: var(--lime);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-links a {
  width: fit-content;
  color: rgba(244, 240, 231, 0.72);
  font-size: 12px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 17px;
  border-top: 1px solid var(--line-light);
  color: rgba(244, 240, 231, 0.4);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer-bottom a {
  color: var(--cream);
}

.reveal {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 700ms ease, transform 700ms var(--ease);
  }

  .reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1000px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .main-nav {
    position: absolute;
    top: 84px;
    right: 22px;
    left: 22px;
    display: none;
    padding: 25px;
    background: var(--ink-soft);
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.15);
  }

  .main-nav.is-open {
    display: grid;
    gap: 21px;
  }

  .main-nav a {
    padding-bottom: 15px;
    border-bottom: 1px solid var(--line-light);
  }

  .nav-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .header-cta {
    display: none;
  }

  .hero {
    grid-template-columns: minmax(0, 0.88fr) minmax(360px, 1.12fr);
    gap: 35px;
    padding-right: 40px;
    padding-left: 40px;
  }

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

  .story-card {
    min-height: 385px;
  }

  .story-card-icon {
    min-height: 85px;
    margin-top: 23px;
  }

  .manifesto-section {
    grid-template-columns: 0.25fr 1fr 0.7fr;
    gap: 35px;
  }
}

@media (max-width: 720px) {
  .site-header {
    min-height: 74px;
    padding: 14px 20px;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  .brand-name,
  .brand-name span:last-child {
    font-size: 14px;
  }

  .main-nav {
    top: 74px;
    right: 15px;
    left: 15px;
  }

  .hero {
    display: flex;
    min-height: 0;
    flex-direction: column;
    gap: 43px;
    padding: 63px 20px 50px;
  }

  .hero h1 {
    margin-top: 19px;
    font-size: clamp(64px, 18vw, 104px);
  }

  .hero-intro {
    margin-top: 26px;
    font-size: 18px;
  }

  .hero-actions {
    gap: 20px;
    margin-top: 30px;
  }

  .hero-meta {
    gap: 10px 17px;
    margin-top: 45px;
    font-size: 9px;
  }

  .hero-image-wrap,
  .hero-image {
    min-height: 385px;
  }

  .hero-image {
    object-position: 58% center;
  }

  .content-section,
  .join-section {
    padding-right: 20px;
    padding-left: 20px;
  }

  .section-heading,
  .filter-row,
  .join-main,
  .dispatch-layout {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 27px;
  }

  .section-heading h2 {
    font-size: clamp(49px, 14vw, 78px);
  }

  .section-note {
    max-width: 320px;
    margin: 0;
  }

  .lead-story {
    grid-template-columns: 1fr;
    margin-top: 55px;
  }

  .lead-story-copy {
    min-height: 455px;
  }

  .lead-story-art {
    min-height: 320px;
  }

  .filter-row {
    align-items: start;
    margin-top: 80px;
  }

  .filter-buttons {
    justify-content: flex-start;
  }

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

  .story-card {
    min-height: 350px;
  }

  .story-card-icon {
    min-height: 80px;
    margin-top: 20px;
  }

  .manifesto-section {
    display: flex;
    min-height: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 42px;
    padding: 80px 20px 90px;
  }

  .manifesto-section::before {
    top: -10%;
    left: 65%;
    height: 140%;
    transform: rotate(21deg);
  }

  .manifesto-mark {
    width: 100px;
    height: 100px;
  }

  .manifesto-copy h2 {
    font-size: clamp(61px, 17vw, 100px);
  }

  .manifesto-aside {
    max-width: 310px;
  }

  .dispatch-feature {
    min-height: 425px;
  }

  .dispatch-item {
    grid-template-columns: 33px 1fr 20px;
    gap: 12px;
    padding: 22px 17px;
  }

  .dispatch-item:hover,
  .dispatch-item:focus-visible {
    padding-right: 13px;
    padding-left: 21px;
  }

  .dispatch-item strong {
    font-size: 22px;
  }

  .join-main {
    padding-top: 48px;
  }

  .join-main h2 {
    font-size: clamp(62px, 17vw, 100px);
  }

  .join-copy {
    max-width: 325px;
  }

  .footer-brand {
    padding-bottom: 42px;
  }

  .footer-links {
    justify-content: space-between;
    gap: 25px;
  }

  .footer-bottom {
    flex-wrap: wrap;
    gap: 11px 20px;
  }
}

/* Discovery tools and lightweight interaction */

.site-header {
  grid-template-columns: minmax(0, 1fr) auto auto;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 17px;
}

.header-actions .header-cta {
  justify-self: auto;
}

.header-tool {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 0;
  color: rgba(244, 240, 231, 0.67);
  background: transparent;
  border: 0;
  cursor: pointer;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.header-tool:hover,
.header-tool:focus-visible,
.header-tool[aria-expanded="true"] {
  color: var(--lime);
}

.header-tool svg {
  width: 16px;
  height: 16px;
}

.header-tool b {
  display: inline-grid;
  min-width: 17px;
  height: 17px;
  place-items: center;
  margin-left: 1px;
  padding: 0 4px;
  color: var(--ink);
  background: var(--lime);
  border-radius: 99px;
  font-size: 9px;
  font-weight: 800;
}

.search-panel,
.save-drawer {
  position: fixed;
  inset: 0;
  z-index: 30;
}

.search-panel-backdrop,
.save-drawer-backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  background: rgba(18, 26, 23, 0.83);
  border: 0;
  cursor: pointer;
}

.search-dialog {
  position: relative;
  z-index: 1;
  max-width: 770px;
  margin: clamp(30px, 9vh, 105px) auto 0;
  padding: clamp(28px, 5vw, 57px);
  color: var(--cream);
  background: var(--ink);
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.25);
}

.search-dialog-top,
.save-drawer-top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 25px;
}

.search-dialog .section-kicker {
  color: var(--lime);
}

.search-close {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0;
  color: currentColor;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.search-close span {
  color: var(--lime);
  font-size: 22px;
  font-weight: 400;
  line-height: 0.6;
}

.search-dialog h2,
.save-drawer-panel h2 {
  margin: 30px 0 0;
  font-family: var(--display);
  font-size: clamp(46px, 6vw, 78px);
  font-weight: 600;
  letter-spacing: -0.085em;
  line-height: 0.88;
}

.search-dialog h2 em,
.save-drawer-panel h2 em {
  color: var(--lime);
  font-style: normal;
}

.search-label {
  display: block;
  margin-top: 43px;
  color: rgba(244, 240, 231, 0.53);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.search-input-wrap {
  display: grid;
  grid-template-columns: 19px 1fr auto;
  align-items: center;
  gap: 13px;
  margin-top: 12px;
  padding: 0 0 13px;
  border-bottom: 1px solid var(--line-light);
}

.search-input-wrap svg {
  width: 18px;
  height: 18px;
  color: var(--lime);
}

.search-input-wrap input {
  min-width: 0;
  padding: 0;
  color: var(--cream);
  background: transparent;
  border: 0;
  outline: 0;
  font-family: var(--body);
  font-size: 18px;
}

.search-input-wrap input::placeholder {
  color: rgba(244, 240, 231, 0.36);
}

.search-input-wrap kbd {
  padding: 4px 6px;
  color: rgba(244, 240, 231, 0.45);
  border: 1px solid var(--line-light);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
}

.search-results {
  display: grid;
  max-height: min(390px, 43vh);
  margin-top: 20px;
  overflow-y: auto;
}

.search-empty {
  margin: 0;
  padding: 26px 0 9px;
  color: rgba(244, 240, 231, 0.49);
  font-size: 13px;
}

.search-result {
  position: relative;
  display: grid;
  gap: 7px;
  padding: 18px 38px 18px 0;
  border-top: 1px solid var(--line-light);
  transition: color 180ms ease, padding 180ms var(--ease);
}

.search-result:hover,
.search-result:focus-visible {
  padding-left: 8px;
  color: var(--lime);
}

.search-result small {
  color: var(--rust);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.search-result strong {
  font-family: var(--display);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 1;
}

.search-result span {
  max-width: 550px;
  color: rgba(244, 240, 231, 0.58);
  font-size: 12px;
  line-height: 1.4;
}

.search-result b {
  position: absolute;
  top: 18px;
  right: 3px;
  color: var(--lime);
  font-size: 18px;
  font-weight: 400;
}

.save-drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  width: min(470px, 100%);
  padding: 34px clamp(22px, 4vw, 45px);
  overflow-y: auto;
  color: var(--ink);
  background: var(--cream);
  box-shadow: -22px 0 60px rgba(0, 0, 0, 0.14);
}

.save-drawer-panel h2 {
  margin-top: 45px;
  font-size: clamp(49px, 7vw, 72px);
}

.save-drawer-panel h2 em {
  color: var(--rust);
}

.saved-list {
  display: grid;
  margin-top: 45px;
}

.saved-empty {
  margin: 0;
  padding: 22px 0;
  color: rgba(18, 26, 23, 0.58);
  border-top: 1px solid var(--line);
  font-size: 13px;
  line-height: 1.55;
}

.saved-item {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 18px;
  padding: 20px 0 22px;
  border-top: 1px solid var(--line);
}

.saved-item a {
  position: relative;
  display: grid;
  gap: 7px;
  padding-right: 26px;
}

.saved-item a:hover,
.saved-item a:focus-visible {
  color: var(--rust);
}

.saved-item small {
  color: var(--rust);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.saved-item strong {
  font-family: var(--display);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.06em;
  line-height: 1;
}

.saved-item a > span {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 17px;
}

.saved-remove {
  padding: 0;
  color: rgba(18, 26, 23, 0.46);
  background: transparent;
  border: 0;
  cursor: pointer;
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.saved-remove:hover,
.saved-remove:focus-visible {
  color: var(--rust);
}

.mood-explorer {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(340px, 1.12fr);
  gap: 40px;
  margin-top: clamp(58px, 7vw, 95px);
  padding: 28px 30px 30px;
  color: var(--cream);
  background: var(--ink);
}

.mood-explorer-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.mood-explorer .section-kicker {
  color: var(--lime);
}

.mood-explorer-copy h3 {
  margin: 18px 0 0;
  font-family: var(--display);
  font-size: clamp(31px, 4vw, 48px);
  font-weight: 600;
  letter-spacing: -0.075em;
  line-height: 0.93;
}

.mood-explorer-copy p:not(.section-kicker) {
  max-width: 350px;
  margin: 19px 0 0;
  color: rgba(244, 240, 231, 0.64);
  font-size: 13px;
  line-height: 1.5;
}

.mood-explorer-copy .text-link {
  margin-top: auto;
  padding-top: 27px;
  color: var(--lime);
  font-weight: 700;
}

.mood-options {
  display: grid;
  gap: 7px;
}

.mood-option {
  display: grid;
  grid-template-columns: 32px 1fr 22px;
  align-items: center;
  gap: 10px;
  padding: 14px 13px;
  color: rgba(244, 240, 231, 0.72);
  background: transparent;
  border: 1px solid var(--line-light);
  cursor: pointer;
  text-align: left;
  transition: color 180ms ease, background-color 180ms ease, padding 180ms var(--ease);
}

.mood-option:hover,
.mood-option:focus-visible,
.mood-option.is-active {
  padding-left: 18px;
  color: var(--ink);
  background: var(--lime);
  border-color: var(--lime);
}

.mood-option-number {
  color: var(--rust);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
}

.mood-option strong {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 1;
}

.mood-option-arrow {
  justify-self: end;
  font-size: 18px;
}

.latest-card-media-wrap {
  position: relative;
  min-height: 100%;
  overflow: hidden;
}

.latest-card-media-wrap .latest-card-media {
  height: 100%;
}

.save-button {
  position: absolute;
  top: 15px;
  left: 15px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 10px;
  color: var(--cream);
  background: rgba(18, 26, 23, 0.72);
  border: 1px solid rgba(244, 240, 231, 0.44);
  cursor: pointer;
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, transform 180ms var(--ease);
}

.save-button svg {
  width: 16px;
  height: 16px;
}

.save-button:hover,
.save-button:focus-visible,
.save-button.is-saved {
  color: var(--ink);
  background: var(--lime);
  border-color: var(--lime);
  transform: translateY(-2px);
}

.article-tools .save-button {
  position: static;
  color: var(--ink);
  background: transparent;
  border-color: var(--line);
}

.article-tools .save-button:hover,
.article-tools .save-button:focus-visible,
.article-tools .save-button.is-saved {
  background: var(--lime);
  border-color: var(--lime);
}

.article-tools {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 17px;
  color: rgba(18, 26, 23, 0.5);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 40;
  width: 100%;
  height: 4px;
  background: rgba(18, 26, 23, 0.15);
}

.reading-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--lime);
  transition: width 120ms linear;
}

.interaction-toast {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 50;
  max-width: min(310px, calc(100vw - 40px));
  padding: 12px 15px;
  color: var(--ink);
  background: var(--lime);
  box-shadow: 0 10px 35px rgba(18, 26, 23, 0.2);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 180ms ease, transform 180ms var(--ease);
}

.interaction-toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 1001px) {
  .latest-grid {
    grid-template-rows: repeat(3, minmax(0, 1fr));
  }

  .latest-card-wide {
    grid-row: span 3;
    min-height: 820px;
  }

  .latest-card-wide .latest-card-media {
    min-height: 455px;
  }
}

@media (max-width: 1000px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto auto;
  }

  .nav-toggle {
    grid-column: 2;
    grid-row: 1;
  }

  .header-actions {
    grid-column: 3;
    grid-row: 1;
  }

  .header-actions .header-cta {
    display: none;
  }

  .mood-explorer {
    grid-template-columns: minmax(0, 0.85fr) minmax(310px, 1.15fr);
    gap: 25px;
  }
}

@media (max-width: 720px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto auto;
  }

  .header-actions {
    gap: 12px;
  }

  .header-tool > span {
    display: none;
  }

  .saved-trigger > span {
    display: inline;
    font-size: 0;
  }

  .saved-trigger > span b {
    font-size: 9px;
  }

  .header-tool {
    gap: 3px;
  }

  .search-dialog {
    height: 100%;
    margin: 0;
    padding: 26px 20px;
    overflow-y: auto;
  }

  .search-dialog h2 {
    margin-top: 42px;
    font-size: 58px;
  }

  .search-input-wrap {
    grid-template-columns: 19px 1fr;
  }

  .search-input-wrap kbd {
    display: none;
  }

  .mood-explorer {
    display: flex;
    flex-direction: column;
    gap: 35px;
    margin-top: 57px;
    padding: 23px 20px 21px;
  }

  .mood-explorer-copy h3 {
    font-size: 37px;
  }

  .mood-explorer-copy .text-link {
    margin-top: 27px;
    padding-top: 0;
  }

  .mood-option strong {
    font-size: 20px;
  }

  .save-button {
    top: 11px;
    left: 11px;
  }

  .latest-card-media-wrap .latest-card-media {
    height: 100%;
  }

  .article-tools {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }
}

@media (max-width: 420px) {
  .button {
    min-width: 150px;
    padding-right: 14px;
    padding-left: 15px;
  }

  .hero-image-wrap,
  .hero-image {
    min-height: 330px;
  }

  .image-caption {
    display: grid;
    gap: 3px;
  }

  .lead-story-copy {
    min-height: 470px;
    padding: 25px;
  }

  .lead-story h3 {
    font-size: 44px;
  }

  .lead-number {
    right: 15px;
    font-size: 180px;
  }

  .story-card {
    min-height: 330px;
    padding: 19px 19px 21px;
  }

  .footer-brand {
    display: grid;
    gap: 27px;
  }

  .footer-brand p {
    text-align: left;
  }

  .footer-links {
    gap: 18px;
  }
}

/* Long-form reading layout */

.article-page-body {
  background: var(--cream);
}

.reading-article {
  padding: clamp(85px, 10vw, 145px) 22px 0;
}

.article-header,
.article-hero,
.article-layout,
.article-next {
  max-width: 1120px;
  margin-right: auto;
  margin-left: auto;
}

.article-header {
  max-width: 940px;
}

.article-kicker {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  color: rgba(18, 26, 23, 0.5);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.article-kicker span:first-child {
  color: var(--rust);
}

.article-kicker i {
  color: rgba(18, 26, 23, 0.25);
  font-style: normal;
}

.article-header h1 {
  max-width: 930px;
  margin: 24px 0 0;
  font-family: var(--display);
  font-size: clamp(61px, 8.1vw, 119px);
  font-weight: 600;
  letter-spacing: -0.09em;
  line-height: 0.88;
}

.article-header h1 em {
  color: var(--rust);
  font-weight: 600;
}

.article-dek {
  max-width: 650px;
  margin: 33px 0 0;
  color: rgba(18, 26, 23, 0.65);
  font-size: clamp(17px, 1.8vw, 22px);
  letter-spacing: -0.025em;
  line-height: 1.45;
}

.article-byline {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px 25px;
  margin-top: 35px;
  padding-top: 15px;
  border-top: 1px solid var(--line);
  color: rgba(18, 26, 23, 0.5);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.article-hero {
  margin-top: clamp(58px, 8vw, 105px);
}

.article-hero img {
  width: 100%;
  aspect-ratio: 1.72;
  object-fit: cover;
  background: var(--stone);
}

.article-hero figcaption {
  margin-top: 10px;
  color: rgba(18, 26, 23, 0.48);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.article-layout {
  display: grid;
  grid-template-columns: 180px minmax(0, 700px);
  justify-content: center;
  gap: 66px;
  margin-top: clamp(63px, 8vw, 105px);
}

.article-aside {
  position: sticky;
  top: 112px;
  align-self: start;
  display: grid;
  gap: 11px;
  padding-top: 13px;
  border-top: 2px solid var(--rust);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.35;
  text-transform: uppercase;
}

.article-aside span {
  margin-bottom: 7px;
  color: var(--rust);
}

.article-aside a {
  color: rgba(18, 26, 23, 0.55);
  transition: color 180ms ease;
}

.article-aside a:hover,
.article-aside a:focus-visible {
  color: var(--ink);
}

.article-body {
  max-width: 700px;
  color: rgba(18, 26, 23, 0.76);
  font-size: 17px;
  line-height: 1.76;
}

.article-body p {
  margin: 0 0 24px;
}

.article-body .article-lead {
  color: var(--ink);
  font-size: clamp(20px, 2.1vw, 26px);
  letter-spacing: -0.025em;
  line-height: 1.45;
}

.article-body h2 {
  margin: 58px 0 17px;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(31px, 3.7vw, 47px);
  font-weight: 600;
  letter-spacing: -0.075em;
  line-height: 0.98;
}

.article-steps {
  display: grid;
  gap: 13px;
  margin: 29px 0 31px;
  padding: 0 0 0 27px;
}

.article-steps li {
  padding-left: 8px;
}

.article-steps li::marker {
  color: var(--rust);
  font-family: var(--mono);
  font-weight: 700;
}

.article-steps strong {
  color: var(--ink);
  font-weight: 800;
}

.article-body blockquote {
  margin: 50px 0;
  padding: 23px 0 23px 25px;
  color: var(--ink);
  border-left: 3px solid var(--lime);
  font-family: var(--display);
  font-size: clamp(25px, 3.4vw, 39px);
  font-weight: 600;
  letter-spacing: -0.07em;
  line-height: 1.03;
}

.article-body .article-endnote {
  margin-top: 43px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: rgba(18, 26, 23, 0.58);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.55;
}

.article-next {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: clamp(90px, 12vw, 160px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.article-next a {
  display: grid;
  gap: 10px;
  padding: 27px 20px 31px 0;
  transition: color 180ms ease, padding 180ms var(--ease);
}

.article-next a + a {
  padding-right: 0;
  padding-left: 20px;
  border-left: 1px solid var(--line);
}

.article-next a:hover,
.article-next a:focus-visible {
  padding-left: 10px;
  color: var(--rust);
}

.article-next a + a:hover,
.article-next a + a:focus-visible {
  padding-right: 10px;
  padding-left: 30px;
}

.article-next span {
  color: rgba(18, 26, 23, 0.5);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.article-next strong {
  font-family: var(--display);
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 600;
  letter-spacing: -0.06em;
  line-height: 1;
}

.article-page-body .site-footer {
  margin-top: 0;
}

@media (max-width: 720px) {
  .reading-article {
    padding: 71px 20px 0;
  }

  .article-header h1 {
    margin-top: 19px;
    font-size: clamp(57px, 15.5vw, 88px);
  }

  .article-dek {
    margin-top: 27px;
    font-size: 17px;
  }

  .article-byline {
    display: grid;
    gap: 8px;
    margin-top: 29px;
  }

  .article-hero {
    margin-top: 55px;
  }

  .article-hero img {
    aspect-ratio: 1.18;
  }

  .article-layout {
    display: flex;
    flex-direction: column;
    gap: 42px;
    margin-top: 62px;
  }

  .article-aside {
    position: static;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
    padding-top: 12px;
  }

  .article-aside span {
    width: 100%;
    margin-bottom: 2px;
  }

  .article-body {
    font-size: 16px;
    line-height: 1.73;
  }

  .article-body h2 {
    margin-top: 48px;
    font-size: 36px;
  }

  .article-body blockquote {
    margin: 40px 0;
    padding-left: 19px;
    font-size: 31px;
  }

  .article-next {
    display: flex;
    flex-direction: column;
    margin-top: 94px;
  }

  .article-next a,
  .article-next a + a {
    padding: 22px 0 25px;
    border-left: 0;
  }

  .article-next a + a {
    border-top: 1px solid var(--line);
  }

  .article-next a:hover,
  .article-next a:focus-visible,
  .article-next a + a:hover,
  .article-next a + a:focus-visible {
    padding-right: 6px;
    padding-left: 6px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Front door and article-led homepage */

em {
  font-style: normal;
}

.front-door {
  padding: clamp(34px, 4vw, 55px) clamp(22px, 7vw, 110px) 25px;
}

.front-door-topline,
.front-door-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}

.front-door-issue,
.story-label,
.front-door-footer,
.card-meta,
.feature-tile-top,
.dispatch-location,
.dispatch-date {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  line-height: 1.4;
  text-transform: uppercase;
}

.front-door-issue {
  margin: 0;
  color: rgba(244, 240, 231, 0.47);
}

.front-door-issue span {
  margin: 0 8px;
  color: var(--rust);
}

.front-door-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(420px, 1.16fr);
  gap: clamp(30px, 7vw, 112px);
  min-height: min(680px, calc(100vh - 170px));
  padding: clamp(52px, 8vw, 115px) 0 clamp(48px, 7vw, 90px);
}

.front-door-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 570px;
}

.story-label {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 0;
  color: rgba(244, 240, 231, 0.56);
}

.story-label span {
  color: var(--lime);
}

.story-label i {
  color: rgba(244, 240, 231, 0.25);
  font-style: normal;
}

.front-door h1 {
  max-width: 660px;
  margin: 21px 0 0;
  font-family: var(--display);
  font-size: clamp(61px, 7.7vw, 118px);
  font-weight: 600;
  letter-spacing: -0.085em;
  line-height: 0.9;
}

.front-door h1 em {
  color: var(--lime);
  font-weight: 600;
}

.front-door-dek {
  max-width: 450px;
  margin: 32px 0 0;
  color: rgba(244, 240, 231, 0.7);
  font-size: clamp(16px, 1.55vw, 20px);
  letter-spacing: -0.025em;
  line-height: 1.45;
}

.front-door-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 36px;
}

.front-door-media {
  position: relative;
  align-self: center;
  margin: 0;
  min-height: 540px;
  overflow: hidden;
  background: var(--stone);
}

.front-door-media::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(105deg, rgba(18, 26, 23, 0.35), transparent 42%, rgba(18, 26, 23, 0.1));
  content: "";
  pointer-events: none;
}

.front-door-media img {
  width: 100%;
  height: 100%;
  min-height: 540px;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.9) contrast(1.02);
  transition: transform 900ms var(--ease);
}

.front-door-media:hover img {
  transform: scale(1.035);
}

.front-door-media .image-caption {
  bottom: 17px;
}

.front-door-footer {
  padding-top: 19px;
  border-top: 1px solid var(--line-light);
  color: rgba(244, 240, 231, 0.5);
}

.front-door-footer p {
  margin: 0;
  color: var(--cream);
  font-size: 11px;
  font-weight: 700;
}

.front-door-footer div {
  display: flex;
  gap: 18px;
}

.front-door-footer div span::before {
  display: inline-block;
  width: 5px;
  height: 5px;
  margin: 0 9px 2px 0;
  background: var(--rust);
  border-radius: 50%;
  content: "";
}

.front-door-footer div span:first-child::before {
  background: var(--lime);
}

.latest-archive-section {
  padding-top: clamp(95px, 11vw, 155px);
}

.archive-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 60px;
}

.archive-heading h2,
.features-heading h2,
.about-main h2 {
  margin: 17px 0 0;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(57px, 7vw, 100px);
  font-weight: 600;
  letter-spacing: -0.085em;
  line-height: 0.88;
}

.archive-heading h2 em {
  color: var(--rust);
}

.archive-heading-side {
  max-width: 290px;
  margin-bottom: 5px;
}

.archive-heading-side p,
.features-heading > p {
  margin: 0;
  color: rgba(18, 26, 23, 0.62);
  font-size: 13px;
  line-height: 1.55;
}

.archive-heading-side .arrow-link {
  margin-top: 24px;
}

.latest-filter-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: clamp(60px, 7vw, 92px);
  padding-bottom: 15px;
  border-bottom: 1px solid var(--line);
}

.latest-filter-row .filter-helper {
  margin: 0;
}

.latest-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 14px;
}

.latest-card {
  display: grid;
  grid-template-columns: minmax(185px, 0.9fr) minmax(0, 1fr);
  min-height: 280px;
  color: var(--ink);
  background: var(--stone);
  transition: transform 260ms var(--ease), opacity 180ms ease;
}

.latest-card-wide {
  grid-row: span 2;
  grid-template-columns: 1fr;
  min-height: 585px;
}

.latest-card:hover {
  transform: translateY(-6px);
}

.latest-card[hidden] {
  display: none;
}

.latest-card-media {
  position: relative;
  display: block;
  min-height: 100%;
  overflow: hidden;
  background: var(--sand);
}

.latest-card-wide .latest-card-media {
  min-height: 310px;
}

.latest-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms var(--ease), filter 300ms ease;
}

.latest-card-media:hover img,
.latest-card-media:focus-visible img {
  filter: saturate(1.08);
  transform: scale(1.045);
}

.media-arrow {
  position: absolute;
  top: 15px;
  right: 15px;
  display: grid;
  width: 37px;
  height: 37px;
  place-items: center;
  color: var(--ink);
  background: var(--lime);
  border-radius: 50%;
  font-size: 17px;
  line-height: 1;
}

.latest-card-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 24px 25px 26px;
}

.card-meta {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  color: rgba(18, 26, 23, 0.52);
  font-weight: 700;
}

.card-meta span:first-child {
  color: var(--rust);
}

.latest-card h3 {
  max-width: 360px;
  margin: auto 0 13px;
  font-family: var(--display);
  font-size: clamp(26px, 3.4vw, 43px);
  font-weight: 600;
  letter-spacing: -0.075em;
  line-height: 0.96;
}

.latest-card h3 a:hover,
.latest-card h3 a:focus-visible {
  color: var(--rust);
}

.latest-card p {
  max-width: 310px;
  margin: 0;
  color: rgba(18, 26, 23, 0.64);
  font-size: 12px;
  line-height: 1.5;
}

.latest-card .card-link {
  margin-top: 24px;
  font-weight: 700;
}

.latest-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 58px;
  padding-top: 17px;
  border-top: 1px solid var(--line);
}

.latest-note-mark {
  color: var(--rust);
  font-family: var(--display);
  font-size: 21px;
  font-style: italic;
  font-weight: 600;
}

.latest-note p {
  max-width: 300px;
  margin: 0 auto 0 0;
  color: rgba(18, 26, 23, 0.58);
  font-size: 12px;
}

.features-band {
  padding: clamp(90px, 11vw, 160px) clamp(22px, 7vw, 110px) clamp(95px, 12vw, 170px);
}

.features-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 55px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.features-heading h2 {
  color: var(--cream);
}

.features-heading h2 em {
  color: var(--lime);
}

.features-heading > p {
  max-width: 295px;
  margin-bottom: 6px;
  color: rgba(244, 240, 231, 0.6);
}

.feature-mosaic {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) repeat(2, minmax(0, 0.85fr));
  gap: 14px;
  max-width: var(--max-width);
  margin: clamp(58px, 7vw, 92px) auto 0;
}

.feature-tile {
  position: relative;
  display: flex;
  min-height: 455px;
  flex-direction: column;
  align-items: flex-start;
  padding: 24px 25px 27px;
  color: var(--ink);
  overflow: hidden;
}

.feature-tile-large {
  min-height: 545px;
  padding: 28px 30px 31px;
  color: var(--cream);
  background: var(--ink-soft);
}

.feature-tile-rust {
  background: var(--rust);
}

.feature-tile-olive {
  background: var(--olive);
}

.feature-tile-top {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  width: 100%;
  color: currentColor;
  opacity: 0.6;
}

.feature-tile-mark {
  position: relative;
  display: flex;
  min-height: 150px;
  align-items: center;
  justify-content: center;
  margin: 18px 0 30px;
}

.mark-arc {
  width: 180px;
  height: 155px;
}

.mark-arc span {
  position: absolute;
  display: block;
  width: 165px;
  height: 165px;
  border: 1px solid var(--lime);
  border-radius: 50%;
}

.mark-arc span:nth-child(2) {
  width: 122px;
  height: 122px;
  border-color: var(--rust);
  transform: translate(22px, -20px);
}

.mark-arc span:nth-child(3) {
  width: 75px;
  height: 75px;
  border-color: var(--cream);
  transform: translate(-32px, 28px);
}

.mark-lines {
  display: grid;
  grid-template-columns: repeat(4, 14px);
  align-items: end;
  gap: 6px;
  width: 84px;
}

.mark-lines span {
  display: block;
  height: 92px;
  background: var(--ink);
}

.mark-lines span:nth-child(1) {
  height: 42px;
}

.mark-lines span:nth-child(2) {
  height: 74px;
}

.mark-lines span:nth-child(3) {
  height: 58px;
}

.mark-lines span:nth-child(4) {
  height: 104px;
  background: var(--lime);
}

.mark-route {
  width: 150px;
  justify-content: space-between;
}

.mark-route::before {
  position: absolute;
  top: 50%;
  left: 5px;
  width: 140px;
  height: 58px;
  border-top: 1px solid var(--ink);
  border-radius: 50%;
  content: "";
  transform: rotate(-16deg);
}

.mark-route span {
  position: relative;
  z-index: 1;
  display: block;
  width: 14px;
  height: 14px;
  background: var(--ink);
  border-radius: 50%;
}

.mark-route span:nth-child(2) {
  align-self: flex-start;
  background: var(--rust);
}

.feature-tile h3 {
  position: relative;
  z-index: 1;
  max-width: 360px;
  margin: auto 0 16px;
  font-family: var(--display);
  font-size: clamp(31px, 3.5vw, 51px);
  font-weight: 600;
  letter-spacing: -0.08em;
  line-height: 0.93;
}

.feature-tile-large h3 {
  font-size: clamp(40px, 4.3vw, 63px);
}

.feature-tile h3 em {
  color: var(--ink);
  font-weight: 600;
}

.feature-tile-large h3 em {
  color: var(--lime);
}

.feature-tile p {
  position: relative;
  z-index: 1;
  max-width: 335px;
  margin: 0 0 25px;
  color: rgba(18, 26, 23, 0.67);
  font-size: 12px;
  line-height: 1.5;
}

.feature-tile-large p {
  color: rgba(244, 240, 231, 0.62);
}

.feature-tile .text-link {
  margin-top: auto;
  font-weight: 700;
}

.roam-section {
  padding-top: clamp(100px, 13vw, 180px);
}

.archive-heading-tight {
  align-items: start;
}

.dispatch-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(340px, 1.15fr);
  gap: 14px;
  margin-top: clamp(58px, 8vw, 98px);
}

.dispatch-panel-feature {
  display: flex;
  min-height: 475px;
  flex-direction: column;
  padding: 30px;
  color: var(--ink);
  background: var(--olive);
}

.dispatch-location,
.dispatch-date {
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(18, 26, 23, 0.62);
  font-weight: 700;
}

.dispatch-location span:not(.location-dot) {
  opacity: 0.45;
}

.location-dot {
  width: 7px;
  height: 7px;
  background: var(--rust);
  border-radius: 50%;
}

.dispatch-date {
  margin-top: 10px;
  color: rgba(18, 26, 23, 0.43);
}

.dispatch-panel-feature h3 {
  margin: auto 0 20px;
  font-family: var(--display);
  font-size: clamp(48px, 5.8vw, 79px);
  font-weight: 600;
  letter-spacing: -0.085em;
  line-height: 0.86;
}

.dispatch-panel-feature h3 em {
  color: var(--rust);
  font-weight: 600;
}

.dispatch-panel-feature p {
  max-width: 410px;
  margin: 0 0 27px;
  color: rgba(18, 26, 23, 0.65);
  font-size: 12px;
  line-height: 1.55;
}

.dispatch-panel-feature .button {
  align-self: flex-start;
}

.dispatch-panel-list {
  display: grid;
  background: var(--stone);
}

.dispatch-panel-list .dispatch-item {
  display: grid;
  grid-template-columns: 50px 1fr 24px;
  align-items: center;
  gap: 18px;
  padding: 25px 28px;
  border-bottom: 1px solid var(--line);
  transition: background-color 180ms ease, padding 180ms var(--ease);
}

.dispatch-panel-list .dispatch-item:last-child {
  border-bottom: 0;
}

.dispatch-panel-list .dispatch-item:hover,
.dispatch-panel-list .dispatch-item:focus-visible {
  padding-right: 22px;
  padding-left: 34px;
  background: var(--lime);
}

.dispatch-index {
  color: var(--rust);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
}

.dispatch-item strong,
.dispatch-item small {
  display: block;
}

.dispatch-item strong {
  font-family: var(--display);
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 1.02;
}

.dispatch-item small {
  margin-top: 9px;
  color: rgba(18, 26, 23, 0.53);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.dispatch-arrow {
  align-self: start;
  color: var(--rust);
  font-size: 20px;
  line-height: 1;
}

.about-section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: clamp(95px, 12vw, 165px) clamp(22px, 5vw, 75px) clamp(105px, 13vw, 180px);
}

.about-top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.about-main {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 70px;
  padding-top: clamp(50px, 6vw, 82px);
}

.about-main h2 {
  margin: 0;
}

.about-main h2 em {
  color: var(--rust);
  font-weight: 600;
}

.about-copy {
  align-self: end;
  max-width: 325px;
  padding-bottom: 7px;
}

.about-copy p {
  margin: 0 0 28px;
  color: rgba(18, 26, 23, 0.64);
  font-size: 13px;
  line-height: 1.6;
}

@media (max-width: 1000px) {
  .front-door-layout {
    grid-template-columns: minmax(0, 0.88fr) minmax(350px, 1.12fr);
    gap: 34px;
    padding-top: 70px;
  }

  .front-door h1 {
    font-size: clamp(59px, 7vw, 85px);
  }

  .latest-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto;
  }

  .latest-card-wide {
    grid-row: auto;
    grid-column: 1 / -1;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    min-height: 330px;
  }

  .latest-card-wide .latest-card-media {
    min-height: 330px;
  }

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

  .feature-tile-large {
    grid-column: 1 / -1;
    min-height: 470px;
  }

  .dispatch-panel {
    grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  }
}

@media (max-width: 720px) {
  .front-door {
    padding: 29px 20px 22px;
  }

  .front-door-topline,
  .front-door-footer,
  .archive-heading,
  .latest-filter-row,
  .features-heading,
  .latest-note {
    align-items: flex-start;
    flex-direction: column;
  }

  .front-door-topline {
    gap: 10px;
  }

  .front-door-layout {
    display: flex;
    min-height: 0;
    flex-direction: column;
    gap: 41px;
    padding: 61px 0 47px;
  }

  .front-door h1 {
    margin-top: 18px;
    font-size: clamp(57px, 16vw, 95px);
  }

  .front-door-dek {
    max-width: 390px;
    margin-top: 27px;
    font-size: 17px;
  }

  .front-door-actions {
    gap: 19px;
    margin-top: 29px;
  }

  .front-door-media,
  .front-door-media img {
    min-height: 355px;
  }

  .front-door-media img {
    object-position: 56% center;
  }

  .front-door-footer {
    gap: 16px;
  }

  .front-door-footer div {
    flex-wrap: wrap;
    gap: 8px 16px;
  }

  .latest-archive-section,
  .roam-section,
  .about-section {
    padding-right: 20px;
    padding-left: 20px;
  }

  .archive-heading h2,
  .features-heading h2,
  .about-main h2 {
    font-size: clamp(55px, 15vw, 86px);
  }

  .archive-heading-side {
    max-width: 330px;
  }

  .latest-filter-row {
    gap: 21px;
    margin-top: 64px;
  }

  .filter-buttons {
    justify-content: flex-start;
  }

  .latest-grid {
    display: flex;
    flex-direction: column;
  }

  .latest-card,
  .latest-card-wide {
    display: grid;
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .latest-card-media,
  .latest-card-wide .latest-card-media {
    min-height: 245px;
  }

  .latest-card-copy {
    min-height: 265px;
  }

  .latest-note {
    gap: 18px;
    margin-top: 48px;
  }

  .latest-note p {
    margin: 0;
  }

  .features-band {
    padding-right: 20px;
    padding-left: 20px;
  }

  .features-heading {
    gap: 27px;
  }

  .feature-mosaic {
    display: flex;
    flex-direction: column;
    gap: 13px;
    margin-top: 54px;
  }

  .feature-tile,
  .feature-tile-large {
    min-height: 405px;
  }

  .dispatch-panel {
    display: flex;
    flex-direction: column;
    gap: 13px;
  }

  .dispatch-panel-feature {
    min-height: 425px;
    padding: 27px;
  }

  .dispatch-panel-list .dispatch-item {
    grid-template-columns: 33px 1fr 20px;
    gap: 12px;
    padding: 22px 17px;
  }

  .dispatch-panel-list .dispatch-item:hover,
  .dispatch-panel-list .dispatch-item:focus-visible {
    padding-right: 13px;
    padding-left: 21px;
  }

  .about-main {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  .about-copy {
    max-width: 330px;
  }
}

@media (max-width: 420px) {
  .front-door h1 {
    font-size: 58px;
  }

  .front-door-media,
  .front-door-media img {
    min-height: 325px;
  }

  .front-door-media .image-caption {
    display: grid;
    gap: 3px;
  }

  .latest-card-media,
  .latest-card-wide .latest-card-media {
    min-height: 220px;
  }

  .latest-card-copy {
    min-height: 260px;
    padding: 21px 20px 23px;
  }

  .feature-tile,
  .feature-tile-large {
    min-height: 375px;
    padding: 21px 20px 23px;
  }
}
