:root {
  --ink: #0b0b0a;
  --paper: #fffdf8;
  --panel: #ffffff;
  --muted: #5f5751;
  --line: rgba(11, 11, 10, 0.13);
  --accent: #b21f1f;
  --accent-ink: #fffdf8;
  --font-display: "Avenir Next Condensed", "DIN Condensed", "Arial Narrow", Impact, sans-serif;
  --font-body: "Avenir Next", Avenir, "Helvetica Neue", Arial, sans-serif;
  --font-ui: Menlo, "SFMono-Regular", "Andale Mono", Consolas, monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-body);
  line-height: 1.5;
  letter-spacing: 0;
}

body::selection {
  background: var(--accent);
  color: var(--accent-ink);
}

h1::selection,
h2::selection,
h3::selection,
a::selection,
span::selection,
p::selection,
strong::selection {
  background: var(--accent);
  color: var(--accent-ink);
}

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

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

button,
input {
  font: inherit;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: -5rem;
  z-index: 20;
  border: 1px solid var(--ink);
  background: var(--accent);
  color: var(--accent-ink);
  padding: 0.7rem 1rem;
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 800;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  isolation: isolate;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 2rem;
  min-height: 4.25rem;
  padding: 0 4rem;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 250, 240, 0.16);
  background: rgba(11, 11, 10, 0.96);
  color: var(--paper);
  backdrop-filter: blur(14px) saturate(1.05);
  transition: background 220ms ease, backdrop-filter 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.site-header::before {
  content: none;
}

.site-header::after {
  content: "";
  position: absolute;
  left: 4rem;
  right: 4rem;
  bottom: 0;
  z-index: -1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 250, 240, 0.2), rgba(255, 250, 240, 0.88), rgba(255, 250, 240, 0.2), transparent);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.site-header.is-scrolled {
  border-bottom-color: rgba(255, 250, 240, 0.24);
  background: rgba(5, 5, 5, 0.93);
  backdrop-filter: blur(6px) saturate(1.02);
  box-shadow:
    inset 0 -1px 0 rgba(255, 250, 240, 0.12),
    0 0.28rem 0.9rem rgba(11, 11, 10, 0.14);
}

.site-header.is-scrolled::after {
  opacity: 1;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 950;
  line-height: 1.05;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand::before {
  content: none;
}

.brand-word {
  display: inline-flex;
  align-items: baseline;
  color: var(--paper);
}

.brand-neo {
  color: var(--accent);
}

.site-nav {
  display: flex;
  justify-content: flex-end;
  gap: 0.5rem;
}

.site-nav a,
.hero-actions a,
.full-page-link,
.top-return,
.bottom-return,
.signup-row button,
.topic-chip {
  min-height: 2.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid currentColor;
  padding: 0 0.85rem;
  background: transparent;
  color: var(--paper);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: none;
  transition: background 150ms ease, border-color 150ms ease, color 150ms ease;
}

.site-nav a {
  min-height: 2.2rem;
  border-color: rgba(255, 250, 240, 0.14);
  color: rgba(255, 250, 240, 0.82);
  padding: 0 0.72rem;
}

.hero-actions a {
  border-color: rgba(255, 250, 240, 0.42);
  color: var(--paper);
}

.site-nav a:hover,
.site-nav a:focus-visible,
.hero-actions a:hover,
.hero-actions a:focus-visible,
.full-page-link:hover,
.full-page-link:focus-visible,
.signup-row button:hover,
.signup-row button:focus-visible,
.topic-chip:hover,
.topic-chip:focus-visible,
.topic-chip.is-active {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--paper);
  outline: none;
}

.top-return {
  display: flex;
  width: fit-content;
  margin: 0.85rem 4rem 0 auto;
  border-color: var(--ink);
  color: var(--ink);
}

.bottom-return {
  border-color: var(--ink);
  color: var(--ink);
}

.menu-toggle {
  display: none;
  width: 2.7rem;
  height: 2.7rem;
  justify-self: end;
  border: 1px solid rgba(255, 250, 240, 0.45);
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 1.1rem;
  height: 2px;
  margin: 0.22rem auto;
  background: currentColor;
}

.hero,
.article-section,
.research-papers,
.digest,
.manifesto-hero,
.manifesto-body,
.magazine-hero,
.magazine-details,
.print-plans {
  padding: 2.65rem 4rem;
}

.article-section,
.research-papers,
.digest {
  scroll-margin-top: 5.25rem;
}

.article-section {
  background: var(--panel);
}

.article-section + .article-section,
.article-section + .research-papers,
.research-papers + .digest {
  border-top: 1px solid var(--line);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.36fr);
  gap: 2rem;
  align-items: end;
  min-height: 34rem;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 250, 240, 0.16);
  background: var(--ink);
  color: var(--paper);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(11, 11, 10, 0.95) 0%, rgba(11, 11, 10, 0.72) 44%, rgba(11, 11, 10, 0.38) 100%),
    linear-gradient(0deg, rgba(11, 11, 10, 0.78), rgba(11, 11, 10, 0.16));
}

.manifesto-hero {
  position: relative;
  min-height: 28rem;
  display: grid;
  align-items: end;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 250, 240, 0.16);
  background: var(--ink);
  color: var(--paper);
}

.magazine-hero {
  position: relative;
  min-height: 40rem;
  display: grid;
  align-items: end;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 250, 240, 0.16);
  background: var(--ink);
  color: var(--paper);
}

.manifesto-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(11, 11, 10, 0.94) 0%, rgba(11, 11, 10, 0.74) 46%, rgba(11, 11, 10, 0.42) 100%),
    linear-gradient(0deg, rgba(11, 11, 10, 0.8), rgba(11, 11, 10, 0.18));
}

.magazine-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(11, 11, 10, 0.96) 0%, rgba(11, 11, 10, 0.78) 48%, rgba(11, 11, 10, 0.32) 100%),
    linear-gradient(0deg, rgba(11, 11, 10, 0.84), rgba(11, 11, 10, 0.14));
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: grayscale(1) contrast(1.05);
}

.hero-copy,
.lead-card,
.manifesto-copy,
.magazine-copy,
.magazine-stack {
  position: relative;
  z-index: 1;
}

.hero-copy {
  max-width: 52rem;
}

.manifesto-copy {
  max-width: 54rem;
}

.magazine-copy {
  max-width: 46rem;
}

.eyebrow,
.story-meta,
.paper-status,
.paper-subcategory,
.chart-heading span,
.chart-card span,
.signup-form label,
.topic-preferences legend,
.form-status {
  margin: 0;
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow,
.story-meta,
.paper-status,
.paper-subcategory {
  color: var(--accent);
}

.hero .eyebrow,
.hero .story-meta,
.manifesto-hero .eyebrow,
.magazine-hero .eyebrow {
  color: #ff5d55;
}

.hero h1,
.manifesto-hero h1,
.magazine-hero h1,
.section-heading h2,
.lead-card h2,
.story h3,
.paper-card h3,
.manifesto-rule h2,
.subscription-panel h3,
.digest h2 {
  margin: 0.35rem 0 0;
  font-family: var(--font-display);
  font-weight: 950;
  line-height: 1.1;
  letter-spacing: 0;
  text-transform: uppercase;
}

.lead-card h2,
.story h3,
.paper-card h3,
.manifesto-rule h2,
.subscription-panel h3 {
  font-family: var(--font-body);
  font-weight: 800;
  text-transform: none;
  line-height: 1.18;
}

.lead-card h2,
.story h3 {
  text-transform: uppercase;
}

.hero h1 {
  max-width: 48rem;
  font-size: 4.45rem;
}

.manifesto-hero h1 {
  max-width: 48rem;
  font-size: 4.7rem;
}

.magazine-hero h1 {
  max-width: 45rem;
  font-size: 4.7rem;
}

.hero-copy > p:last-of-type,
.manifesto-copy > p:last-of-type,
.magazine-copy > p:last-of-type,
.section-heading p,
.story p,
.paper-card p,
.manifesto-rule p,
.subscription-panel p,
.digest p {
  color: var(--muted);
}

.hero-copy > p:last-of-type,
.manifesto-copy > p:last-of-type,
.magazine-copy > p:last-of-type,
.lead-card p:not(.story-meta) {
  color: rgba(255, 250, 240, 0.72);
}

.hero-copy > p:last-of-type {
  max-width: 36rem;
  margin: 1rem 0 0;
  font-size: 1.12rem;
}

.manifesto-copy > p:last-of-type {
  max-width: 42rem;
  margin: 1rem 0 0;
  font-size: 1.2rem;
}

.magazine-copy > p:last-of-type {
  max-width: 38rem;
  margin: 1rem 0 0;
  font-size: 1.15rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.25rem;
}

.hero-actions a:first-child,
.signup-row button {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--paper);
}

.lead-card {
  border-left: 1px solid rgba(255, 250, 240, 0.24);
  padding-left: 1.25rem;
}

.lead-card h2 {
  max-width: 28rem;
  font-size: 1.65rem;
}

.lead-card p:not(.story-meta) {
  max-width: 29rem;
  margin: 0.7rem 0 0;
}

.section-heading {
  max-width: 42rem;
  margin-bottom: 1.25rem;
}

.section-heading h2,
.digest h2 {
  font-size: 2.9rem;
}

.section-heading p,
.digest p {
  margin: 0.8rem 0 0;
}

.story-list,
.paper-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.story,
.paper-card {
  display: grid;
  grid-template-columns: 5rem minmax(0, 1fr);
  column-gap: 0.85rem;
  row-gap: 0.45rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line);
}

.story-list .story:last-of-type,
.paper-list .paper-card:last-of-type {
  border-bottom: 0;
}

.full-page-link {
  justify-self: start;
  margin-top: 0.75rem;
  border-color: var(--ink);
  color: var(--ink);
}

.story-rail,
.paper-rail {
  grid-column: 1;
  grid-row: 1 / span 3;
  display: grid;
  align-content: start;
  justify-items: center;
  gap: 0.3rem;
  border-right: 1px solid var(--line);
  padding-right: 0.55rem;
  text-align: center;
}

.story-rail .story-meta,
.paper-rail .paper-status,
.paper-rail .paper-subcategory {
  width: 4.2rem;
  line-height: 1.2;
  white-space: normal;
}

.story-rail .story-meta,
.paper-rail .paper-subcategory {
  border-bottom: 1px solid var(--line);
  padding-bottom: 0.34rem;
}

.story-mark,
.paper-thumb {
  width: 4.2rem;
  aspect-ratio: 1;
  justify-self: center;
  overflow: hidden;
  background: var(--ink);
}

.story-mark {
  position: relative;
  display: grid;
  place-items: center;
  color: var(--paper);
  font-family: var(--font-display);
  font-size: 2.35rem;
  font-weight: 950;
  line-height: 1;
}

.story-mark::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("./neobana-hero.png");
  background-size: 230%;
  background-position: 48% 46%;
  filter: grayscale(1) contrast(1.1);
  opacity: 0.46;
}

.story-mark span {
  position: relative;
  z-index: 1;
}

.story-mark-politics {
  background-color: #2b1111;
}

.story-mark-market {
  background-color: #111111;
}

.story-mark-history {
  background-color: #201919;
}

.paper-status {
  color: var(--muted);
}

.paper-subcategory {
  color: var(--accent);
}

.paper-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 45% 45%;
  filter: grayscale(1) contrast(1.08);
}

.paper-thumb-right img {
  object-position: 74% 48%;
}

.paper-thumb-low img {
  object-position: 50% 72%;
}

.story h3,
.story p:not(.story-meta) {
  grid-column: 2;
}

.paper-card h3,
.paper-card p:not(.paper-status, .paper-subcategory) {
  grid-column: 2;
}

.story h3,
.paper-card h3 {
  font-size: 1.28rem;
  margin-top: 0.08rem;
}

.story p,
.paper-card p {
  max-width: 42rem;
  margin: 0;
}

.market-section,
.research-papers {
  border-top: 0;
  border-bottom: 0;
  background: var(--panel);
}

.market-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(16rem, 0.36fr);
  gap: 2rem;
  align-items: start;
}

.chart-rail {
  position: sticky;
  top: 5.5rem;
  display: grid;
  gap: 0.85rem;
  border-left: 1px solid var(--line);
  padding-left: 1.25rem;
}

.chart-heading {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: baseline;
}

.chart-heading span {
  color: var(--muted);
}

.chart-card {
  display: grid;
  gap: 0.65rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--line);
}

.chart-card:last-child {
  border-bottom: 0;
}

.chart-card div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: baseline;
}

.chart-card span {
  color: var(--accent);
}

.chart-card strong {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 800;
}

.market-chart {
  width: 100%;
  height: 5.5rem;
}

.manifesto-body {
  display: grid;
  gap: 0;
}

.manifesto-rule {
  display: grid;
  grid-template-columns: 6rem minmax(0, 1fr);
  column-gap: 0.7rem;
  padding: 1.15rem 0;
  border-top: 1px solid var(--line);
}

.manifesto-rule:first-child {
  border-top: 0;
}

.manifesto-rule .eyebrow {
  border-right: 1px solid var(--line);
  padding-right: 0.65rem;
  text-align: center;
}

.manifesto-rule h2,
.manifesto-rule p:not(.eyebrow) {
  grid-column: 2;
}

.manifesto-rule h2 {
  font-size: 2.1rem;
}

.manifesto-rule p:not(.eyebrow) {
  max-width: 44rem;
  margin: 0.25rem 0 0;
}

.magazine-stack {
  position: absolute;
  right: clamp(1.5rem, 7vw, 6rem);
  bottom: clamp(1rem, 3vw, 2.25rem);
  width: min(26.5rem, 31vw);
  min-width: 18rem;
  aspect-ratio: 0.72;
  pointer-events: none;
}

.magazine-shadow {
  position: absolute;
  inset: 8% 0 -2% 12%;
  background: rgba(178, 31, 31, 0.34);
  transform: rotate(4deg);
}

.magazine-cover {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 250, 240, 0.26);
  background: var(--ink);
  box-shadow: 0 2rem 4rem rgba(0, 0, 0, 0.42);
  transform: rotate(-3deg);
}

.magazine-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(11, 11, 10, 0.06), rgba(11, 11, 10, 0.78)),
    linear-gradient(90deg, rgba(255, 250, 240, 0.12) 0, transparent 12%, transparent 82%, rgba(0, 0, 0, 0.32) 100%);
}

.magazine-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 54% 50%;
  filter: grayscale(1) contrast(1.12);
}

.magazine-cover-copy {
  position: absolute;
  inset: 1.2rem;
  z-index: 1;
  display: grid;
  align-content: space-between;
  color: var(--paper);
}

.magazine-cover-copy p,
.magazine-cover-copy span {
  margin: 0;
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.magazine-cover-copy strong {
  align-self: center;
  display: block;
  max-width: 100%;
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.6vw, 5.6rem);
  font-weight: 950;
  line-height: 0.96;
  text-transform: uppercase;
  overflow-wrap: normal;
}

.magazine-details {
  background: var(--panel);
}

.magazine-details .section-heading {
  border-bottom: 1px solid var(--line);
  padding-bottom: 1rem;
}

.print-plans {
  border-top: 1px solid var(--line);
}

.subscription-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.25rem;
  align-items: end;
  border-top: 1px solid var(--line);
  padding-top: 1rem;
}

.subscription-panel h3 {
  margin: 0.35rem 0 0;
  font-size: 2.05rem;
}

.subscription-panel p:not(.eyebrow) {
  max-width: 42rem;
  margin: 0.5rem 0 0;
}

.digest {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(20rem, 0.8fr);
  gap: 2.5rem;
  align-items: start;
}

.signup-form {
  display: grid;
  gap: 1rem;
}

.signup-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  border: 1px solid var(--line);
}

.signup-row input {
  min-height: 3.2rem;
  width: 100%;
  border: 0;
  padding: 0 1rem;
  background: transparent;
  color: var(--ink);
  outline: none;
}

.signup-row input:focus {
  background: var(--panel);
}

.signup-row button {
  min-height: 3.2rem;
  border: 0;
  border-left: 1px solid var(--line);
  cursor: pointer;
}

.topic-preferences {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  border: 0;
}

.topic-preferences legend {
  flex: 0 0 100%;
  margin-bottom: 0.2rem;
  color: var(--muted);
}

.topic-chip {
  border-color: var(--ink);
  color: var(--ink);
  cursor: pointer;
}

.form-status {
  min-height: 1.4rem;
  color: var(--muted);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 4rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer p {
  margin: 0;
}

.site-footer p:first-child {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 950;
  text-transform: uppercase;
}

@media (min-width: 1241px) {
  .wide-story-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 2rem;
    border-top: 0;
  }

  .wide-story-list .story {
    border-top: 1px solid var(--line);
    border-bottom: 0;
  }

  .wide-story-list .full-page-link {
    grid-column: 1 / -1;
  }
}

@media (max-width: 1240px) {
  .wide-story-list .story:nth-of-type(n + 4) {
    display: none;
  }
}

@media (max-width: 1240px) and (min-width: 1081px) {
  .site-header {
    gap: 1rem;
    padding: 0 2rem;
  }

  .site-header::after {
    left: 2rem;
    right: 2rem;
  }

  .brand {
    font-size: 2.55rem;
  }

  .site-nav {
    gap: 0.35rem;
  }

  .site-nav a {
    padding: 0 0.58rem;
    font-size: 0.68rem;
  }
}

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

  .site-header::after {
    left: 1rem;
    right: 1rem;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    display: none;
    grid-column: 1 / -1;
    justify-content: flex-start;
    flex-wrap: wrap;
    padding-bottom: 1rem;
  }

  .site-nav.is-open {
    display: flex;
  }

  .hero,
  .market-layout,
  .digest {
    grid-template-columns: 1fr;
  }

  .hero,
  .article-section,
  .research-papers,
  .digest,
  .manifesto-hero,
  .manifesto-body,
  .magazine-hero,
  .magazine-details,
  .print-plans {
    padding: 2.5rem 1rem;
  }

  .top-return {
    display: none;
  }

  .article-section,
  .research-papers {
    padding-top: 0.95rem;
    padding-bottom: 0.95rem;
  }

  .digest {
    padding-top: 0.95rem;
  }

  .section-heading {
    margin-bottom: 0.75rem;
  }

  .story,
  .paper-card,
  .manifesto-rule {
    padding: 0.75rem 0;
    row-gap: 0.35rem;
  }

  .hero h1 {
    font-size: 3.6rem;
  }

  .manifesto-hero {
    min-height: 24rem;
  }

  .manifesto-hero h1,
  .magazine-hero h1 {
    font-size: 3.6rem;
  }

  .magazine-hero {
    min-height: 28rem;
  }

  .magazine-stack {
    display: none;
  }

  .lead-card,
  .chart-rail {
    border-left: 0;
    padding-left: 0;
  }

  .market-layout {
    gap: 1rem;
  }

  .chart-rail {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-top: 1px solid var(--line);
    padding-top: 0.95rem;
  }

  .chart-heading {
    grid-column: 1 / -1;
  }

  .story,
  .paper-card {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .manifesto-rule {
    grid-template-columns: 1fr;
    gap: 0.4rem;
  }

  .subscription-panel {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .article-section,
  .research-papers,
  .digest {
    scroll-margin-top: 7rem;
  }

  .story-rail,
  .paper-rail,
  .story h3,
  .story p:not(.story-meta),
  .paper-card h3,
  .paper-card p,
  .manifesto-rule h2,
  .manifesto-rule p:not(.eyebrow) {
    grid-column: auto;
    grid-row: auto;
  }

  .manifesto-rule .eyebrow {
    border-right: 0;
    padding-right: 0;
    text-align: left;
  }

  .story-rail {
    justify-items: start;
    border-right: 0;
    padding-right: 0;
    text-align: left;
  }

  .story-rail .story-meta {
    width: auto;
    border-bottom: 0;
    padding-bottom: 0;
  }

  .paper-rail {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 0.4rem;
    border-right: 0;
    padding-right: 0;
    text-align: left;
  }

  .paper-rail,
  .paper-card > p {
    display: none;
  }

  .paper-rail .paper-status,
  .paper-rail .paper-subcategory {
    width: auto;
    border-bottom: 0;
    padding-bottom: 0;
  }

  .paper-rail .paper-status {
    order: 0;
  }

  .paper-card h3 {
    order: 0;
  }

  .paper-card p:not(.paper-status, .paper-subcategory) {
    order: 0;
  }

  .paper-rail .paper-subcategory {
    order: 0;
    width: auto;
    padding-top: 0;
  }

  .story-mark,
  .paper-thumb {
    display: none;
  }

  .site-footer {
    flex-direction: column;
    padding: 1.25rem 1rem;
  }
}

@media (max-width: 1080px) and (orientation: landscape) and (max-height: 620px) {
  .site-header {
    overflow: visible;
  }

  .menu-toggle {
    position: relative;
    z-index: 12;
  }

  .site-nav.is-open {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 11;
    width: min(18rem, 44vw);
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: stretch;
    gap: 0.35rem;
    padding: 4.75rem 1rem 1rem;
    border-left: 1px solid rgba(255, 250, 240, 0.22);
    background: rgba(11, 11, 10, 0.98);
    box-shadow: -1.5rem 0 2rem rgba(11, 11, 10, 0.32);
  }

  .site-nav.is-open a {
    justify-content: flex-start;
    min-height: 2.2rem;
    border-color: rgba(255, 250, 240, 0.18);
  }
}

@media (max-width: 640px) {
  .brand {
    font-size: 2.45rem;
    gap: 0.48rem;
  }

  .hero {
    min-height: auto;
  }

  .hero h1,
  .manifesto-hero h1,
  .magazine-hero h1,
  .section-heading h2,
  .digest h2 {
    font-size: 2.65rem;
  }

  .lead-card h2,
  .story h3,
  .paper-card h3,
  .manifesto-rule h2 {
    font-size: 1.65rem;
  }

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

  .signup-row {
    grid-template-columns: 1fr;
  }

  .signup-row button {
    border-left: 0;
    border-top: 1px solid var(--line);
  }
}
