:root {
  --ink: #161715;
  --paper: #f4f4f1;
  --blue: #91a9aa;
  --acid: #d7de6f;
  --line: #c9cbc5;
  --paper-soft: #fbfaf6;
  --paper-warm: #ebe9e1;
  --muted: #65675e;
  --mono: "Berkeley Mono", "IBM Plex Mono", "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  --serif: "Newsreader", "Source Serif 4", "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Charter, Georgia, serif;
  --sans: Inter, "Avenir Next", Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

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

button,
input {
  font: inherit;
}

.site-header {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  max-width: 1600px;
  height: 112px;
  margin: 0 auto;
  padding: 0 5vw;
}

.logo {
  grid-column: 2;
  font-size: 19px;
  font-weight: 800;
  letter-spacing: 0;
}

.logo span {
  display: inline-block;
  transform: skew(-16deg);
}

.round-button,
.menu-button {
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.round-button {
  display: grid;
  width: 35px;
  height: 35px;
  place-items: center;
  padding: 8px;
  border-radius: 50%;
  background: #fff;
}

.round-button svg {
  width: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.3;
}

.menu-button {
  justify-self: end;
  display: flex;
  gap: 12px;
  align-items: center;
  height: 35px;
  padding: 0 15px;
  border-radius: 20px;
  background: #fff;
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
}

.menu-button i {
  position: relative;
  width: 11px;
  height: 1px;
  background: currentColor;
  transition: transform 200ms ease;
}

.menu-button i::after {
  position: absolute;
  top: 4px;
  left: 0;
  width: 11px;
  height: 1px;
  background: currentColor;
  content: "";
  transition: transform 200ms ease, top 200ms ease;
}

.menu-button[aria-expanded="true"] i {
  transform: rotate(45deg);
}

.menu-button[aria-expanded="true"] i::after {
  top: 0;
  transform: rotate(90deg);
}

.menu-panel {
  position: fixed;
  z-index: 9;
  inset: 0;
  display: flex;
  visibility: hidden;
  flex-direction: column;
  justify-content: center;
  padding: 15vw;
  background: var(--ink);
  color: var(--paper);
  opacity: 0;
  transition: opacity 300ms ease, visibility 300ms;
}

.menu-panel.is-open {
  visibility: visible;
  opacity: 1;
}

.menu-panel nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.menu-panel nav a {
  font-family: var(--serif);
  font-size: clamp(42px, 7vw, 100px);
  line-height: 0.95;
}

.menu-panel nav a:hover {
  color: var(--blue);
}

.menu-panel p {
  max-width: 360px;
  margin: 60px 0 0;
  font-size: 12px;
  line-height: 1.5;
}

.hero {
  padding: clamp(80px, 12vw, 180px) 24px clamp(70px, 9vw, 130px);
  text-align: center;
}

.eyebrow,
.section-label,
.kicker,
.card-meta,
.form-note,
.image-index {
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 850px;
  margin: 28px auto 24px;
  font-family: var(--serif);
  font-size: clamp(58px, 7.6vw, 116px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.82;
  text-transform: uppercase;
}

.hero-copy {
  margin: 0;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.3;
}

.small-button {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  margin-top: 25px;
  padding: 8px 12px;
  border: 1px solid var(--ink);
  border-radius: 2px;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--mono);
  font-size: 9px;
  text-transform: uppercase;
  transition: background 180ms, color 180ms;
}

.small-button i {
  width: 6px;
  height: 6px;
  background: var(--paper);
}

.small-button:hover {
  background: transparent;
  color: var(--ink);
}

.small-button:hover i {
  background: var(--ink);
}

.feature-wrap {
  padding: 0 5vw;
}

.feature-art {
  position: relative;
  display: block;
  overflow: hidden;
  max-width: 1480px;
  height: min(60vw, 380px);
  min-height: 250px;
  margin: 0 auto;
  border-radius: 5px;
  background: var(--blue);
}

#particle-field {
  width: 100%;
  height: 100%;
  opacity: 0.9;
}

.feature-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(24px, 4vw, 60px);
  background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.46));
  color: var(--paper);
  opacity: 0;
  transition: opacity 350ms ease;
}

.feature-art:hover .feature-overlay,
.feature-art:focus .feature-overlay {
  opacity: 1;
}

.feature-overlay h2 {
  margin: 14px 0 0;
  font-family: var(--serif);
  font-size: clamp(38px, 5vw, 76px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.95;
}

.feature-meta {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.55);
  font-family: var(--mono);
  font-size: 9px;
  text-transform: uppercase;
}

.feature-meta .arrow {
  font-size: 20px;
}

.topic-strip {
  max-width: 1500px;
  margin: 0 auto;
  padding: 48px 5vw 150px;
  text-align: center;
}

.topics {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
  margin-top: 45px;
}

.topics a {
  font-family: var(--serif);
  font-size: clamp(20px, 2.5vw, 35px);
  transition: opacity 180ms;
}

.topics a:hover {
  opacity: 0.45;
}

.latest {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 5vw 160px;
}

.section-intro {
  max-width: 650px;
  margin: 0 auto 100px;
  text-align: center;
}

.section-intro h2,
.newsletter h2 {
  margin: 28px 0;
  font-family: var(--serif);
  font-size: clamp(48px, 6vw, 82px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.9;
  text-transform: uppercase;
}

.section-intro > p:last-child {
  max-width: 450px;
  margin: 0 auto;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.4;
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 100px 4vw;
}

.article-card--wide {
  grid-column: 1 / -1;
}

.article-card--wide {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 4vw;
  align-items: end;
}

.card-image {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 1.35;
  border-radius: 3px;
}

.article-card--wide .card-image {
  aspect-ratio: 1.65;
}

.card-image::before,
.card-image::after,
.feature-art::before,
.feature-art::after,
.article-generated-art::before,
.article-generated-art::after {
  position: absolute;
  content: "";
  transition: transform 600ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.image-one {
  background: #252522;
}

.image-one::before {
  inset: -15% 20% 20% -10%;
  border: 1px solid rgba(244, 244, 241, 0.4);
  border-radius: 50%;
  box-shadow: 70px 80px 0 -30px var(--blue), 180px 110px 0 -50px var(--acid);
}

.image-one::after {
  width: 55%;
  height: 120%;
  top: -10%;
  right: 2%;
  background: repeating-linear-gradient(
    90deg,
    transparent 0 8px,
    rgba(244, 244, 241, 0.4) 8px 9px
  );
  transform: rotate(18deg);
}

.image-two {
  background: var(--acid);
}

.image-two::before {
  width: 74%;
  height: 74%;
  top: 13%;
  left: 13%;
  border: 1px solid var(--ink);
  border-radius: 50%;
  background: radial-gradient(circle at 60% 35%, var(--paper) 0 3%, transparent 3.5%),
    repeating-radial-gradient(circle at 50% 50%, transparent 0 12px, var(--ink) 13px 14px);
}

.image-two::after {
  inset: 40% -10% -30% 38%;
  background: var(--ink);
  transform: rotate(-24deg);
}

.image-three {
  background: #b8a9a0;
}

.image-three::before {
  width: 60%;
  height: 130%;
  top: -35%;
  left: 20%;
  border: 1px solid var(--ink);
  border-radius: 50%;
  background: repeating-linear-gradient(
    0deg,
    transparent 0 9px,
    rgba(22, 23, 21, 0.5) 9px 10px
  );
  transform: rotate(40deg);
}

.image-three::after {
  width: 80px;
  height: 80px;
  right: 13%;
  bottom: 13%;
  border-radius: 50%;
  background: var(--blue);
}

.card-image:hover::before,
.feature-art:hover::before,
.article-generated-art:hover::before {
  transform: scale(1.06) rotate(3deg);
}

.card-image:hover::after,
.feature-art:hover::after,
.article-generated-art:hover::after {
  transform: rotate(23deg) scale(1.05);
}

.image-index {
  position: absolute;
  z-index: 1;
  top: 18px;
  left: 20px;
  padding: 6px 8px;
  background: var(--paper);
}

.card-copy {
  padding-top: 25px;
  border-top: 1px solid var(--line);
}

.card-meta {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.card-copy h3 {
  margin: 34px 0 20px;
  font-family: var(--serif);
  font-size: clamp(36px, 4vw, 62px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.97;
}

.card-copy h3 a {
  background: linear-gradient(currentColor, currentColor) 0 100% / 0 1px no-repeat;
  transition: background-size 300ms ease;
}

.card-copy h3 a:hover {
  background-size: 100% 1px;
}

.card-copy p {
  max-width: 480px;
  margin: 0 0 25px;
  font-size: 12px;
  line-height: 1.55;
}

.text-link {
  display: inline-flex;
  gap: 20px;
  align-items: center;
  font-family: var(--mono);
  font-size: 9px;
  text-transform: uppercase;
}

.text-link span {
  font-size: 16px;
  transition: transform 180ms;
}

.text-link:hover span {
  transform: translate(3px, -3px);
}

.quote-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 130px 5vw 180px;
  border-top: 1px solid var(--line);
  text-align: center;
}

.quote-section blockquote {
  margin: 60px 0 35px;
  font-family: var(--serif);
  font-size: clamp(42px, 6vw, 78px);
  letter-spacing: 0;
  line-height: 1;
}

.quote-credit {
  font-family: var(--mono);
  font-size: 9px;
  text-transform: uppercase;
}

.newsletter {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8vw;
  align-items: end;
  padding: 110px 7vw;
  background: var(--blue);
}

.newsletter form label {
  display: block;
  margin-bottom: 16px;
  font-family: var(--mono);
  font-size: 9px;
  text-transform: uppercase;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr auto;
  border-bottom: 1px solid var(--ink);
}

.form-row input {
  min-width: 0;
  padding: 18px 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 28px;
}

.form-row input::placeholder {
  color: rgba(22, 23, 21, 0.5);
}

.form-row button {
  border: 0;
  background: transparent;
  cursor: pointer;
  font-family: var(--mono);
  font-size: 9px;
  text-transform: uppercase;
}

.form-row button span {
  margin-left: 12px;
  font-size: 16px;
}

.form-note {
  margin-top: 18px;
}

footer {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  align-items: start;
  padding: 80px 5vw 45px;
  background: var(--ink);
  color: var(--paper);
}

.footer-logo {
  grid-column: auto;
  justify-self: start;
}

footer > p {
  margin: 0;
  font-size: 11px;
}

.footer-links {
  display: flex;
  justify-content: flex-end;
  gap: 25px;
  font-family: var(--mono);
  font-size: 9px;
  text-transform: uppercase;
}

.copyright {
  grid-column: 1 / -1;
  margin-top: 90px;
  padding-top: 20px;
  border-top: 1px solid rgba(244, 244, 241, 0.2);
  font-family: var(--mono);
  font-size: 8px;
  text-transform: uppercase;
}

.toast {
  position: fixed;
  z-index: 20;
  right: 24px;
  bottom: 24px;
  padding: 15px 18px;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--mono);
  font-size: 9px;
  text-transform: uppercase;
  transform: translateY(100px);
  opacity: 0;
  transition: transform 300ms, opacity 300ms;
}

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

@media (max-width: 800px) {
  .site-header {
    height: 84px;
    padding: 0 20px;
  }

  .hero {
    padding-top: 90px;
  }

  .hero h1 {
    font-size: clamp(50px, 16vw, 80px);
    line-height: 0.88;
  }

  .hero-copy br {
    display: none;
  }

  .feature-wrap,
  .latest {
    padding-right: 20px;
    padding-left: 20px;
  }

  .feature-art {
    height: 72vh;
    min-height: 540px;
  }

  .feature-overlay {
    opacity: 1;
  }

  .topics {
    grid-template-columns: repeat(2, 1fr);
    gap: 26px;
  }

  .topic-strip {
    padding-bottom: 110px;
  }

  .article-grid {
    display: block;
  }

  .article-card,
  .article-card--wide {
    display: block;
    margin-bottom: 90px;
  }

  .card-image,
  .article-card--wide .card-image {
    aspect-ratio: 0.9;
  }

  .newsletter {
    grid-template-columns: 1fr;
    padding: 90px 20px;
  }

  footer {
    grid-template-columns: 1fr;
    padding-right: 20px;
    padding-left: 20px;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .copyright {
    margin-top: 40px;
  }
}

/* Long-form essay */
.article-page {
  background: var(--paper-soft);
}

.reading-progress {
  position: fixed;
  z-index: 30;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: var(--acid);
  transform: scaleX(0);
  transform-origin: left;
}

.article-header {
  position: relative;
}

.article-header .logo {
  grid-column: 2;
  justify-self: center;
}

.back-link {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  font-family: var(--mono);
  font-size: 9px;
  text-transform: uppercase;
  transition: opacity 180ms ease;
}

.back-link span {
  font-size: 13px;
}

.back-link:hover {
  opacity: 0.45;
}

.article-hero {
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(56px, 7vw, 104px) 5vw clamp(58px, 7vw, 92px);
}

.article-hero-meta {
  display: flex;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.article-hero-meta p {
  margin: 0;
}

.article-hero h1 {
  max-width: 1030px;
  margin: clamp(38px, 6vw, 74px) 0 clamp(42px, 6vw, 72px);
  font-family: var(--serif);
  font-size: clamp(54px, 8.4vw, 118px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.94;
}

.article-deck {
  display: grid;
  grid-template-columns: minmax(280px, 620px) auto;
  gap: clamp(34px, 6vw, 70px);
  justify-content: space-between;
  align-items: end;
}

.article-deck > p {
  margin: 0;
  color: var(--muted);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(19px, 2vw, 27px);
  letter-spacing: 0;
  line-height: 1.35;
}

.article-byline {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-family: var(--mono);
  font-size: 9px;
  text-align: right;
  text-transform: uppercase;
}

.article-lead-art {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 5vw;
}

.article-lead-art .article-generated-art {
  display: block;
  width: 100%;
  height: min(34vw, 330px);
  min-height: 200px;
  max-height: 330px;
  border-radius: 6px;
  background: var(--blue);
}

.article-generated-art {
  position: relative;
  overflow: hidden;
}

.article-lead-art figcaption,
.article-inline-art figcaption {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 12px;
  font-family: var(--mono);
  font-size: 8px;
  text-transform: uppercase;
}

.article-layout {
  display: grid;
  grid-template-columns: 210px minmax(0, 720px);
  gap: clamp(52px, 7vw, 96px);
  justify-content: center;
  max-width: 1120px;
  margin: 0 auto;
  padding: clamp(76px, 10vw, 128px) 5vw clamp(96px, 12vw, 150px);
}

.rail-inner {
  position: sticky;
  top: 40px;
  max-width: 210px;
  padding: 4px 0 0 18px;
  border-left: 1px solid var(--line);
}

.article-rail nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 28px 0 36px;
  font-family: var(--mono);
  font-size: 9px;
  line-height: 1.45;
  text-transform: uppercase;
}

.article-rail nav a {
  color: var(--muted);
  transition: opacity 180ms ease;
}

.article-rail nav a:hover {
  opacity: 0.45;
}

.share-button {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  padding: 0 0 8px;
  border: 0;
  border-bottom: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-family: var(--mono);
  font-size: 8px;
  text-transform: uppercase;
}

.share-button span {
  font-size: 13px;
}

.article-body {
  width: 100%;
  max-width: 720px;
}

.article-loading,
.article-error {
  font-family: var(--mono) !important;
  font-size: 9px !important;
  text-transform: uppercase;
}

.article-error {
  padding: 24px;
  border: 1px solid var(--ink);
}

.article-body > p {
  max-width: 690px;
  margin: 0 0 1.65em;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(18px, 1.45vw, 20px);
  line-height: 1.78;
}

.article-body .article-opening {
  max-width: 720px;
  color: #20211e;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(21px, 2vw, 28px);
  letter-spacing: 0;
  line-height: 1.48;
}

.article-opening::first-letter {
  float: left;
  margin: 8px 12px 0 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 3em;
  line-height: 0.74;
}

.article-body blockquote {
  max-width: 720px;
  margin: clamp(50px, 7vw, 86px) 0;
  padding: 28px 0 30px clamp(24px, 3vw, 38px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-left: 6px solid var(--acid);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 3vw, 38px);
  letter-spacing: 0;
  line-height: 1.22;
}

.article-body h2 {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 18px;
  align-items: baseline;
  margin: clamp(74px, 9vw, 116px) 0 28px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  font-family: var(--serif);
  font-size: clamp(38px, 4.8vw, 62px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.03;
}

.article-body h2 span {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0;
}

.article-body .article-major-heading {
  display: block;
  margin: 62px 0 24px;
  padding-top: 0;
  border-top: 0;
  font-family: var(--serif);
  font-size: clamp(32px, 3.6vw, 48px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.05;
}

.article-body .article-subheading {
  margin: 48px 0 16px;
  font-family: var(--sans);
  font-size: clamp(21px, 2.2vw, 28px);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.18;
}

.article-body hr {
  margin: 80px 0;
  border: 0;
  border-top: 1px solid var(--line);
}

.article-body a {
  color: #3f5e62;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.article-body strong {
  font-weight: 700;
}

.article-body code {
  padding: 0.08em 0.28em;
  border: 1px solid rgba(22, 23, 21, 0.12);
  background: var(--paper-warm);
  font-family: var(--mono);
  font-size: 0.84em;
}

.article-body > ul,
.article-body > ol {
  max-width: 690px;
  margin: -0.3em 0 1.75em;
  padding-left: 1.25em;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(18px, 1.45vw, 20px);
  line-height: 1.72;
}

.article-body > ul {
  list-style: disc;
}

.article-body > ol {
  list-style: decimal;
}

.article-body li {
  margin: 0 0 0.72em;
  padding-left: 0.22em;
}

.article-body li::marker {
  color: #6f7f24;
  font-family: var(--mono);
  font-size: 0.78em;
}

.article-body .table-wrapper {
  overflow-x: auto;
  margin: 42px 0 52px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fffdf8;
  -webkit-overflow-scrolling: touch;
}

.article-body table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
  text-align: left;
  font-size: 13px;
  line-height: 1.45;
}

.article-body th {
  font-family: var(--mono);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 13px 16px;
  border-bottom: 1px solid var(--ink);
  background: var(--paper-warm);
  color: var(--ink);
  font-weight: 500;
}

.article-body td {
  padding: 13px 16px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  vertical-align: top;
}

.article-body tbody tr:last-child td {
  border-bottom: 0;
}

.article-body tr:hover td {
  background: rgba(22, 23, 21, 0.03);
}

.footnote-reference {
  margin-left: 2px;
  font-family: var(--mono);
  font-size: 0.55em;
  vertical-align: super;
}

.article-footnotes {
  margin-top: 70px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  font-size: 11px;
  line-height: 1.55;
}

.article-footnotes ol {
  padding-left: 22px;
}

.article-footnotes li {
  margin-bottom: 12px;
  padding-left: 8px;
}

.footnote-backlink {
  margin-left: 4px;
  font-family: var(--mono);
  text-decoration: none !important;
}

.article-inline-art {
  margin: clamp(54px, 8vw, 92px) 0;
}

.article-inline-art img {
  display: block;
  width: 100%;
  min-height: 420px;
  border: 1px solid var(--line);
  border-radius: 6px;
  object-fit: cover;
  background: #d7d0c4;
}

.article-inline-art--contained img {
  height: auto;
  min-height: 0;
  object-fit: contain;
  background: transparent;
}

.article-end {
  display: flex;
  gap: 18px;
  align-items: center;
  margin-top: 70px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.end-mark {
  width: 8px;
  height: 8px;
  background: var(--acid);
}

.article-end p {
  margin: 0;
  font-family: var(--mono);
  font-size: 8px;
  text-transform: uppercase;
}

.article-next {
  max-width: 1180px;
  margin: 0 auto;
  padding: 90px 5vw 130px;
  border-top: 1px solid var(--line);
}

.next-story {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: end;
  margin-top: 70px;
}

.next-story h2 {
  max-width: 840px;
  margin: 18px 0 0;
  font-family: var(--serif);
  font-size: clamp(46px, 6vw, 88px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.98;
}

.next-story h2 a {
  background: linear-gradient(currentColor, currentColor) 0 100% / 0 2px no-repeat;
  transition: background-size 400ms ease;
}

.next-story h2 a:hover {
  background-size: 100% 2px;
}

.next-arrow {
  display: grid;
  width: clamp(70px, 8vw, 110px);
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  font-size: clamp(28px, 4vw, 52px);
  transition: background 180ms ease, color 180ms ease;
}

.next-arrow:hover {
  background: var(--ink);
  color: var(--paper);
}

.article-newsletter {
  border-top: 1px solid var(--ink);
}

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

  .article-header .logo {
    display: none;
  }

  .article-header .header-link {
    grid-column: 2;
  }

  .article-hero {
    padding: 48px 20px 56px;
  }

  .article-hero-meta {
    gap: 20px;
  }

  .article-hero h1 {
    margin: 46px 0;
    font-size: clamp(44px, 13vw, 72px);
    line-height: 0.96;
  }

  .article-deck {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .article-byline {
    text-align: left;
  }

  .article-lead-art {
    padding: 0 20px;
  }

  .article-lead-art .article-generated-art {
    height: min(50vw, 300px);
    min-height: 180px;
  }

  .article-lead-art figcaption span:last-child {
    max-width: 190px;
    text-align: right;
  }

  .article-layout {
    display: block;
    padding: 72px 20px 104px;
  }

  .article-rail {
    margin-bottom: 58px;
  }

  .rail-inner {
    position: static;
    max-width: none;
    padding-left: 0;
    border-left: 0;
  }

  .article-rail nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 18px;
  }

  .share-button {
    margin-top: 4px;
  }

  .article-body > p,
  .article-body > ul,
  .article-body > ol {
    font-size: 18px;
    line-height: 1.72;
  }

  .article-opening::first-letter {
    float: none;
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
  }

  .article-body blockquote {
    padding-left: 24px;
    border-left-width: 7px;
  }

  .article-body h2 {
    grid-template-columns: 28px 1fr;
    gap: 12px;
    font-size: clamp(34px, 10vw, 48px);
  }

  .article-body .table-wrapper {
    margin-right: -20px;
    margin-left: -20px;
    border-right: 0;
    border-left: 0;
    border-radius: 0;
  }

  .article-inline-art img {
    min-height: 0;
  }

  .article-next {
    padding: 70px 20px 90px;
  }

  .next-story {
    grid-template-columns: 1fr;
    margin-top: 50px;
  }

  .next-story h2 {
    font-size: 44px;
    line-height: 1;
  }

  .next-arrow {
    width: 64px;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}

/* Compact editorial homepage */
.site-header {
  display: grid;
  align-items: center;
  grid-template-columns: auto 1fr auto;
  max-width: 1500px;
  margin: 0 auto;
  height: 74px;
  padding: 0 5vw;
  border-bottom: 1px solid var(--line);
}

.header-link {
  justify-self: end;
  font-family: var(--mono);
  font-size: 9px;
  text-transform: uppercase;
  transition: opacity 180ms ease;
}

.header-link:hover {
  opacity: 0.45;
}

.logo {
  justify-self: start;
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.desktop-nav {
  display: flex;
  gap: clamp(18px, 2.3vw, 38px);
  align-items: center;
}

.desktop-nav a {
  font-family: var(--mono);
  font-size: 9px;
  text-transform: uppercase;
  transition: opacity 180ms ease;
}

.desktop-nav a:hover {
  opacity: 0.45;
}

.subscribe-link {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  padding: 10px 14px;
  border-radius: 2px;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--mono);
  font-size: 9px;
  text-transform: uppercase;
}

.subscribe-link span {
  font-size: 14px;
  transition: transform 180ms ease;
}

.subscribe-link:hover span {
  transform: translate(2px, -2px);
}

.site-header .menu-button {
  display: none;
}

.intro {
  max-width: 1500px;
  margin: 0 auto;
  padding: clamp(40px, 5vw, 60px) 5vw clamp(32px, 4vw, 44px);
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.intro h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
}

.journal {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(480px, 0.95fr);
  gap: clamp(40px, 5vw, 80px);
  max-width: 1500px;
  margin: 0 auto;
  padding: 64px 5vw 140px;
}

.journal--single {
  grid-template-columns: 1fr;
}

.featured-story,
.recent-stories {
  min-width: 0;
}

.featured-story > .section-label,
.recent-stories > .section-label {
  display: block;
  margin: 0 0 22px;
}

.featured-story .feature-art {
  width: 100%;
  height: auto;
  min-height: 0;
  max-height: 380px;
  aspect-ratio: 1.65;
}

.featured-story .story-copy {
  padding-top: 22px;
  border-top: 1px solid var(--ink);
}

.story-copy h2 {
  max-width: 620px;
  margin: 30px 0 18px;
  font-family: var(--serif);
  font-size: clamp(46px, 4.8vw, 70px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.95;
}

.story-copy h2 a,
.mini-card h3 a {
  background: linear-gradient(currentColor, currentColor) 0 100% / 0 1px no-repeat;
  transition: background-size 300ms ease;
}

.story-copy h2 a:hover,
.mini-card h3 a:hover {
  background-size: 100% 1px;
}

.story-copy > p {
  max-width: 570px;
  margin: 0 0 24px;
  font-size: 12px;
  line-height: 1.55;
}

.recent-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 64px 24px;
}

.mini-card .card-image {
  aspect-ratio: 1.45;
}

.mini-card .card-copy {
  padding-top: 14px;
  border-top-color: var(--ink);
}

.mini-card .card-meta {
  font-size: 8px;
}

.mini-card h3 {
  margin: 21px 0 12px;
  font-family: var(--serif);
  font-size: clamp(27px, 2.25vw, 36px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.98;
}

.mini-card p {
  margin: 0;
  font-size: 10px;
  line-height: 1.5;
}

.mini-card .image-index {
  top: 12px;
  left: 12px;
  font-size: 7px;
}

.image-four {
  background: var(--blue);
}

.image-four::before {
  width: 115%;
  height: 70%;
  top: 14%;
  left: -25%;
  border: 1px solid var(--ink);
  border-radius: 50%;
  box-shadow:
    35px 0 0 -1px var(--paper),
    70px 0 0 -1px var(--acid);
  transform: rotate(-12deg);
}

.image-four::after {
  width: 42%;
  height: 140%;
  top: -20%;
  right: 8%;
  background: repeating-linear-gradient(
    90deg,
    transparent 0 7px,
    rgba(22, 23, 21, 0.55) 7px 8px
  );
  transform: rotate(-28deg);
}

.topic-strip {
  padding-top: 58px;
  padding-bottom: 120px;
  border-top: 1px solid var(--line);
}

.quote-section {
  padding-top: 110px;
  padding-bottom: 140px;
}

.quote-section blockquote {
  max-width: 1000px;
  margin-right: auto;
  margin-left: auto;
}

.footer-logo {
  grid-column: auto;
}

@media (max-width: 1050px) {
  .desktop-nav {
    gap: 18px;
  }

  .desktop-nav a:nth-child(2),
  .desktop-nav a:nth-child(3),
  .desktop-nav a:nth-child(4) {
    display: none;
  }

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

  .featured-story .feature-art {
    aspect-ratio: 1.8;
  }
}

@media (max-width: 800px) {
  .site-header {
    height: 64px;
    padding: 0 20px;
  }

  .header-link {
    font-size: 8px;
  }

  .site-header .logo {
    font-size: 21px;
  }

  .intro {
    padding: 40px 20px 32px;
  }

  .intro h1 {
    font-size: clamp(28px, 8vw, 40px);
    line-height: 1;
  }

  .journal {
    display: block;
    padding: 42px 20px 95px;
  }

  .featured-story {
    margin-bottom: 90px;
  }

  .featured-story .feature-art {
    aspect-ratio: 1.5;
  }

  .story-copy h2 {
    font-size: 46px;
  }

  .recent-grid {
    grid-template-columns: 1fr;
    gap: 72px;
  }

  .mini-card .card-image {
    aspect-ratio: 1.25;
  }

  .mini-card h3 {
    font-size: 36px;
  }

  .mini-card p {
    font-size: 11px;
  }

  .topic-strip {
    padding-top: 45px;
    padding-bottom: 90px;
  }

  .quote-section {
    padding-top: 90px;
    padding-bottom: 110px;
  }

  .quote-section blockquote {
    margin-top: 45px;
    font-size: 43px;
  }
}
