:root {
  --ink: #12151a;
  --muted: #626971;
  --paper: #f5f1e8;
  --paper-deep: #ece5d8;
  --white: #fffefa;
  --line: #cfc7b8;
  --signal: #ff5a36;
  --signal-dark: #cb3216;
  --blue: #3348ff;
  --shell: 1240px;
  --reading: 730px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

.scroll-progress {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
  height: 4px;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--signal);
  transform: scaleX(0);
  transform-origin: left center;
  will-change: transform;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-150%);
  padding: 10px 14px;
  background: var(--ink);
  color: var(--white);
  font-weight: 800;
  text-decoration: none;
}

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

.site-header {
  position: relative;
  border-bottom: 1px solid rgba(18, 21, 26, 0.18);
  background: var(--paper);
}

.header-inner {
  min-height: 124px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding-block: 8px;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  color: var(--ink);
  text-decoration: none;
  line-height: 1;
}

.brand-logo {
  display: block;
  width: clamp(120px, 12vw, 144px);
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 36px);
}

.site-nav a {
  position: relative;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -7px;
  height: 2px;
  background: var(--signal);
  transition: right 160ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  right: 0;
}

.nav-external {
  color: var(--signal-dark) !important;
}

.manifesto {
  min-height: min(720px, calc(100vh - 124px));
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-block: clamp(80px, 13vw, 168px);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 24px;
  color: var(--signal-dark);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 32px;
  height: 3px;
  background: var(--signal);
}

.manifesto h1 {
  max-width: 1080px;
  margin: 0;
  font-size: clamp(3.1rem, 8.2vw, 7.7rem);
  font-weight: 950;
  letter-spacing: -0.075em;
  line-height: 0.91;
  text-wrap: balance;
}

.manifesto-copy {
  max-width: 680px;
  margin: 36px 0 0;
  color: var(--muted);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.2rem, 2.2vw, 1.65rem);
  line-height: 1.45;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 34px;
  border-bottom: 2px solid currentColor;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--signal-dark);
}

.section-rule {
  display: flex;
  justify-content: space-between;
  padding-block: 14px;
  border-top: 2px solid var(--ink);
  color: var(--ink);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.essay {
  padding-top: clamp(52px, 8vw, 104px);
}

.essay-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.75fr);
  gap: clamp(40px, 7vw, 96px);
  align-items: center;
}

.essay-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.essay-meta span:first-child {
  color: var(--signal-dark);
}

.essay-heading h2 {
  margin: 0;
  font-size: clamp(2.5rem, 5.4vw, 5.6rem);
  font-weight: 950;
  letter-spacing: -0.065em;
  line-height: 0.95;
  text-wrap: balance;
}

.essay-deck {
  max-width: 760px;
  margin: 28px 0 0;
  color: #3f454b;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.15rem, 1.9vw, 1.5rem);
  line-height: 1.48;
}

.byline {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 30px;
}

.byline img {
  width: 52px;
  height: 52px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  object-fit: cover;
  object-position: center 36%;
}

.byline div {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.byline strong {
  font-size: 0.84rem;
}

.byline span {
  color: var(--muted);
  font-size: 0.73rem;
}

.hero-figure {
  position: relative;
  margin: 0;
}

.hero-image-frame {
  position: relative;
  isolation: isolate;
}

.hero-image-frame::before {
  content: "";
  position: absolute;
  inset: -11px 11px 11px -11px;
  z-index: -1;
  background: var(--blue);
}

.hero-figure img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  border: 1px solid var(--ink);
  object-fit: cover;
  object-position: center;
}

.hero-figure figcaption {
  margin-top: 18px;
  padding: 3px 0 3px 13px;
  border-left: 3px solid var(--signal);
  color: #3f454b;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.86rem;
  line-height: 1.45;
}

.article-layout {
  display: grid;
  grid-template-columns: 230px minmax(0, var(--reading)) 1fr;
  gap: clamp(36px, 6vw, 78px);
  align-items: start;
  padding-top: clamp(72px, 10vw, 132px);
  padding-bottom: clamp(88px, 12vw, 160px);
}

.article-aside {
  position: sticky;
  top: 24px;
  padding-top: 0;
}

.aside-label {
  color: var(--signal-dark);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.article-aside p {
  margin: 14px 0 0;
  color: #373c42;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.96rem;
  line-height: 1.55;
}

.aside-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 24px;
}

.aside-links a {
  color: var(--ink);
  font-size: 0.71rem;
  font-weight: 850;
  line-height: 1.35;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.mobile-essay-links {
  display: none;
}

.article-body {
  grid-column: 2;
  min-width: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.08rem, 1.35vw, 1.22rem);
  line-height: 1.78;
}

.article-body p {
  margin: 0 0 1.45em;
}

.article-body .lead {
  margin-bottom: 1.55em;
  font-size: clamp(1.3rem, 2vw, 1.68rem);
  font-weight: 700;
  line-height: 1.55;
}

.article-body h3 {
  margin: 2.25em 0 0.7em;
  font-family: Arial, Helvetica, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.55rem);
  font-weight: 950;
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.article-body blockquote {
  position: relative;
  margin: 2.2em 0;
  padding: 0.15em 0 0.15em 34px;
  border-left: 8px solid var(--signal);
  font-family: Arial, Helvetica, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(1.55rem, 3.1vw, 2.6rem);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 1.1;
}

.external-media-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  margin: 2.4em 0;
  padding: 22px;
  border: 2px solid var(--ink);
  background: var(--white);
  font-family: Arial, Helvetica, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.external-media-card:hover,
.external-media-card:focus-visible {
  transform: translate(-4px, -4px);
  box-shadow: 7px 7px 0 var(--signal);
}

.media-play {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  background: var(--signal);
  color: var(--white);
  font-size: 0.92rem;
}

.external-media-card > span:nth-child(2) {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.external-media-card strong {
  font-size: 0.9rem;
  line-height: 1.3;
}

.external-media-card small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.7rem;
  line-height: 1.4;
}

.media-arrow {
  font-size: 1.2rem;
  font-weight: 900;
}

.closing-line {
  margin-top: 2.5em !important;
  padding-top: 0.8em;
  border-top: 8px solid var(--ink);
  font-family: Arial, Helvetica, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(2rem, 4vw, 3.7rem);
  font-weight: 950;
  letter-spacing: -0.055em;
  line-height: 1;
}

.takeaways {
  margin-top: 4em;
  padding: clamp(28px, 5vw, 54px);
  background: var(--ink);
  color: var(--white);
  font-family: Arial, Helvetica, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.takeaways-kicker {
  margin-bottom: 10px !important;
  color: #ff8b73;
  font-size: 0.67rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.takeaways h3 {
  margin: 0 0 1em;
  font-size: clamp(1.9rem, 4vw, 3rem);
}

.takeaways ol {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: takeaways;
}

.takeaways li {
  position: relative;
  padding: 18px 0 18px 54px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  color: #d9d9d4;
  counter-increment: takeaways;
  font-size: 0.92rem;
  line-height: 1.6;
}

.takeaways li::before {
  content: "0" counter(takeaways);
  position: absolute;
  left: 0;
  top: 18px;
  color: #ff8b73;
  font-size: 0.72rem;
  font-weight: 900;
}

.takeaways strong {
  display: block;
  margin-bottom: 2px;
  color: var(--white);
}

.source-gallery {
  margin-top: 4em;
  padding-top: clamp(32px, 5vw, 54px);
  border-top: 2px solid var(--ink);
}

.source-gallery > h3 {
  margin-top: 0;
}

.source-gallery h4 {
  margin: 2.2em 0 0.75em;
  font-family: Arial, Helvetica, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.15rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.source-gallery ul {
  margin: 0;
  padding-left: 1.15em;
}

.source-gallery li {
  margin: 0.7em 0;
  padding-left: 0.25em;
  font-size: 0.98rem;
  line-height: 1.55;
}

.source-gallery a {
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.source-gallery a:hover,
.source-gallery a:focus-visible {
  color: var(--signal-dark);
}

.article-end {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 48px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-family: Arial, Helvetica, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.article-end span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  background: var(--signal);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 900;
}

.article-end p {
  margin: 0;
  font-size: 0.79rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.about {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: clamp(48px, 9vw, 140px);
  padding-block: clamp(88px, 12vw, 160px);
  border-top: 2px solid var(--ink);
}

.about h2 {
  max-width: 480px;
  margin: 0;
  font-size: clamp(3rem, 7vw, 6.7rem);
  font-weight: 950;
  letter-spacing: -0.07em;
  line-height: 0.9;
}

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

.about-copy p {
  margin: 0 0 1em;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  line-height: 1.55;
}

.about-copy p a {
  color: var(--signal-dark);
  font-style: normal;
  font-weight: 700;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.site-footer {
  background: var(--ink);
  color: var(--white);
}

.footer-inner {
  min-height: 220px;
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 40px;
  align-items: end;
  padding-block: 56px;
}

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

.brand-logo-footer {
  width: min(180px, 100%);
}

.footer-inner p {
  margin: 0;
  color: #aeb1b3;
  font-size: 0.76rem;
  line-height: 1.5;
}

.footer-meta {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-links a,
.embed-consent-reset {
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-underline-offset: 4px;
  text-transform: uppercase;
}

.embed-consent-reset {
  border: 0;
  border-bottom: 1px solid currentColor;
  padding: 0;
  background: transparent;
  cursor: pointer;
  font-family: inherit;
}

.embed-consent-reset[hidden] {
  display: none;
}

.footer-inner p:last-child {
  text-align: right;
}

.legal-page {
  min-height: 100vh;
  padding: clamp(42px, 8vw, 96px) 24px clamp(80px, 10vw, 140px);
  background: var(--paper);
}

.legal-shell {
  width: min(100%, 850px);
  margin-inline: auto;
}

.legal-back {
  display: inline-block;
  margin-bottom: clamp(54px, 9vw, 100px);
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  text-transform: uppercase;
}

.legal-page h1 {
  margin: 0 0 0.7em;
  font-size: clamp(3.5rem, 10vw, 7.7rem);
  font-weight: 950;
  letter-spacing: -0.075em;
  line-height: 0.9;
}

.legal-page .legal-intro {
  margin-bottom: 3em;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.25rem, 2.5vw, 1.65rem);
  line-height: 1.55;
}

.legal-page section {
  padding: 28px 0;
  border-top: 1px solid var(--line);
}

.legal-page h2 {
  margin: 0 0 0.65em;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1.1;
}

.legal-page p,
.legal-page li {
  color: #41474d;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.02rem;
  line-height: 1.7;
}

.legal-page p {
  margin: 0 0 1em;
}

.legal-page ul {
  margin: 0;
  padding-left: 1.25em;
}

.legal-page a {
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.legal-updated {
  margin-top: 30px !important;
  color: var(--muted) !important;
  font-family: Arial, Helvetica, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
  font-size: 0.72rem !important;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 980px) {
  .essay-hero {
    grid-template-columns: 1fr;
  }

  .hero-figure {
    width: min(100%, 560px);
  }

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

  .article-aside {
    position: static;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

  .article-body {
    grid-column: 1;
    width: min(100%, var(--reading));
    margin-inline: auto;
  }

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

@media (max-width: 720px) {
  .shell {
    width: min(calc(100% - 32px), var(--shell));
  }

  .header-inner {
    min-height: 92px;
    padding-block: 7px;
  }

  .brand-logo {
    width: 104px;
  }

  .site-nav {
    gap: 16px;
  }

  .site-nav a {
    font-size: 0.65rem;
  }

  .site-nav a:nth-child(2) {
    display: none;
  }

  .manifesto {
    min-height: auto;
  }

  .manifesto h1 {
    font-size: clamp(3rem, 15vw, 5.2rem);
  }

  .essay-heading h2 {
    font-size: clamp(2.5rem, 11vw, 4rem);
  }

  .article-aside {
    display: block;
  }

  .aside-links {
    margin-top: 18px;
  }

  .article-body blockquote {
    padding-left: 20px;
    border-left-width: 5px;
  }

  .takeaways {
    margin-inline: -16px;
  }

  .about h2 {
    font-size: clamp(3.6rem, 18vw, 5.8rem);
  }

  .footer-inner {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .footer-inner p:last-child {
    text-align: left;
  }
}

@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;
  }
}


/* PHP edition components */
.essay-heading h2 a {
  color: inherit;
  text-decoration: none;
}

.sidebar-logo {
  display: block;
  margin-bottom: 28px;
  text-decoration: none;
}

.sidebar-logo img {
  display: block;
  width: 100%;
  height: auto;
}

.take-panel {
  padding-top: 16px;
  border-top: 3px solid var(--ink);
}

.footer-brand {
  display: block;
  width: min(210px, 100%);
}

.footer-brand img {
  display: block;
  width: 100%;
  height: auto;
}

.video-embed {
  position: relative;
  min-height: 360px;
  margin: 2.4em 0;
  overflow: hidden;
  border: 2px solid var(--ink);
  background: var(--ink);
  color: var(--white);
  font-family: Arial, Helvetica, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.video-placeholder {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: clamp(28px, 6vw, 58px);
  background:
    radial-gradient(circle at 82% 22%, rgba(51, 72, 255, 0.55), transparent 32%),
    linear-gradient(135deg, #12151a 0%, #202634 100%);
}

.video-kicker {
  margin-bottom: 12px;
  color: #ff8b73;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.video-placeholder strong {
  max-width: 520px;
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  letter-spacing: -0.04em;
  line-height: 1;
}

.video-placeholder p {
  max-width: 680px;
  margin: 14px 0 22px;
  color: #c7c9cb;
  font-family: inherit;
  font-size: 0.85rem;
  line-height: 1.5;
}

.video-placeholder p a {
  color: var(--white);
  font-weight: 800;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.video-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.video-load,
.video-allow,
.video-remove {
  border: 0;
  padding: 13px 20px;
  background: var(--signal);
  color: var(--white);
  cursor: pointer;
  font: inherit;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.video-allow {
  border: 1px solid #656c78;
  background: transparent;
}

.video-load:hover,
.video-load:focus-visible,
.video-allow:hover,
.video-allow:focus-visible,
.video-remove:hover,
.video-remove:focus-visible {
  background: var(--white);
  color: var(--ink);
}

.video-embed iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
}

.video-controls {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  border-top: 1px solid #383d45;
}

.video-controls p {
  margin: 0;
  color: #c7c9cb;
  font-family: inherit;
  font-size: 0.74rem;
  line-height: 1.45;
}

.video-remove {
  flex: 0 0 auto;
  padding: 10px 14px;
  background: #303640;
}

.single-essay {
  padding-top: clamp(48px, 7vw, 88px);
}

.single-essay .essay {
  padding-top: 0;
}

.single-essay .article-end {
  margin-bottom: 0;
}

@media (max-width: 980px) {
  .sidebar-logo {
    width: min(240px, 100%);
    margin-bottom: 0;
  }
}

@media (max-width: 720px) {
  .sidebar-logo {
    width: min(210px, 70%);
    margin-bottom: 28px;
  }

  .video-embed,
  .video-placeholder {
    min-height: 300px;
  }

  .video-controls {
    align-items: flex-start;
    flex-direction: column;
  }

  .video-actions {
    width: 100%;
    flex-direction: column;
  }

  .video-actions button {
    width: 100%;
  }

  .site-header {
    border-bottom: 0;
  }

  .header-inner {
    width: 100%;
    min-height: auto;
    justify-content: center;
    padding-block: 24px 20px;
  }

  .brand {
    width: min(75vw, 360px);
    align-items: center;
  }

  .brand-logo {
    width: 100%;
  }

  .site-nav {
    display: none;
  }

  .article-aside {
    display: none;
  }

  .mobile-essay-links {
    grid-column: 1;
    display: flex;
    width: min(100%, var(--reading));
    flex-direction: column;
    gap: 12px;
    margin: 8px auto 0;
    padding-top: 24px;
    border-top: 3px solid var(--ink);
  }

  .mobile-essay-links span {
    margin-bottom: 5px;
    color: var(--signal-dark);
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.15em;
    text-transform: uppercase;
  }

  .mobile-essay-links a {
    width: fit-content;
    color: var(--ink);
    font-size: 0.78rem;
    font-weight: 850;
    line-height: 1.4;
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;
  }

  .footer-inner {
    justify-items: center;
    align-items: center;
    gap: 28px;
    text-align: center;
  }

  .footer-brand {
    width: min(50vw, 240px);
  }

  .footer-meta {
    align-items: center;
  }

  .footer-links {
    justify-content: center;
  }

  .footer-inner p:last-child {
    text-align: center;
  }
}
