@font-face {
  font-family: "Inter Tight";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../fonts/inter-tight-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Inter Tight";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../fonts/inter-tight-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --bg: #000000;
  --ink: #ffffff;
  --muted: rgba(255, 255, 255, 0.66);
  --panel: #000000;
  --line: rgba(255, 255, 255, 0.13);
  --lime: #00ff00;
  --accent-text: var(--lime);
  --focus-ring: var(--lime);
  --ink-on-lime: #000000;
}

:root[data-theme="light"] {
  --bg: #ffffff;
  --ink: #000000;
  --muted: rgba(0, 0, 0, 0.66);
  --panel: #ffffff;
  --line: rgba(0, 0, 0, 0.13);
  --accent-text: #000000;
  --focus-ring: #00ff00;
}

.drawer,
.newsletter-page__card,
.site-footer {
  --focus-ring: var(--lime);
}

.newsletter-band {
  --focus-ring: #000000;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: "Inter Tight", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  transition: background 0.45s ease, color 0.45s ease;
}

body.admin-bar .site-header {
  top: 32px;
}

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

a:hover {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: var(--lime);
  text-decoration-thickness: 2px;
  text-underline-offset: 0.2em;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--focus-ring);
  outline-offset: 3px;
}

img {
  height: auto;
  max-width: 100%;
}

.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.screen-reader-text:focus,
.skip-link:focus {
  background: var(--bg);
  clip: auto !important;
  clip-path: none;
  color: var(--ink);
  height: auto;
  left: 12px;
  padding: 12px 16px;
  top: 12px;
  width: auto;
  z-index: 1000;
}

body.drawer-open {
  overflow: hidden;
}

.site-shell {
  min-height: 100vh;
  overflow-x: hidden;
}

@keyframes fzine-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes fzine-blink {
  0%,
  60% {
    opacity: 1;
  }
  61%,
  100% {
    opacity: 0.15;
  }
}

.ticker {
  background: var(--lime);
  border-bottom: 2px solid var(--ink-on-lime);
  color: var(--ink-on-lime);
  display: flex;
  height: 34px;
  overflow: hidden;
  position: relative;
}

.ticker__live {
  align-items: center;
  background: var(--ink-on-lime);
  color: var(--lime);
  display: flex;
  font: 600 12px/1.2 "Inter Tight", Arial, sans-serif;
  gap: 7px;
  letter-spacing: 0.14em;
  padding: 0 14px 0 12px;
  position: relative;
  text-transform: uppercase;
  z-index: 2;
}

.ticker__live span {
  animation: fzine-blink 1.4s steps(1) infinite;
  background: var(--lime);
  border-radius: 50%;
  height: 7px;
  width: 7px;
}

.ticker__track {
  align-items: center;
  animation: fzine-marquee 38s linear infinite;
  display: flex;
  min-width: max-content;
  white-space: nowrap;
}

.ticker:hover .ticker__track {
  animation-play-state: paused;
}

.ticker__track span {
  align-items: center;
  display: inline-flex;
  font: 600 12px/1.2 "Inter Tight", Arial, sans-serif;
  gap: 22px;
  letter-spacing: 0.03em;
  padding: 0 22px;
  text-transform: uppercase;
}

.ticker__track b {
  opacity: 0.4;
}

.site-header {
  background: var(--bg);
  border-bottom: 2px solid var(--ink);
  position: sticky;
  top: 0;
  transition: background 0.45s ease;
  z-index: 40;
}

.site-header__bar {
  align-items: center;
  display: flex;
  gap: 16px;
  justify-content: space-between;
  padding: 14px 24px;
}

.menu-toggle,
.theme-toggle,
.drawer button {
  background: none;
  color: var(--ink);
  cursor: pointer;
}

.menu-toggle {
  align-items: center;
  border: 0;
  display: flex;
  font: 700 16px/1.2 "Inter Tight", Arial, sans-serif;
  gap: 9px;
  letter-spacing: 0.14em;
  padding: 0;
  text-transform: uppercase;
}

.menu-toggle__bars {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.menu-toggle__bars span {
  background: var(--ink);
  display: block;
  height: 2px;
  width: 22px;
}

.menu-toggle__bars span:last-child {
  background: var(--lime);
  width: 14px;
}

.brand {
  align-items: center;
  display: flex;
}

.brand__name {
  display: inline-block;
  font-family: "Gill Sans MT", "Inter Tight", Arial, sans-serif;
  font-size: 34px;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 0.85;
  transform: scale(0.9, 1.1);
  transform-origin: center;
}

.brand__logo {
  display: block;
  height: auto;
  max-height: 46px;
  max-width: 220px;
  width: auto;
}

.site-header__actions {
  align-items: center;
  display: flex;
  gap: 10px;
}

.search-link {
  font: 700 16px/1.2 "Inter Tight", Arial, sans-serif;
  letter-spacing: 0;
  text-transform: uppercase;
}

.theme-toggle {
  align-items: center;
  border: 2px solid var(--ink);
  border-radius: 50%;
  display: flex;
  font-size: 15px;
  height: 38px;
  justify-content: center;
  width: 38px;
}

.button,
.newsletter-form button {
  border: 2px solid var(--ink);
  cursor: pointer;
  display: inline-flex;
  font: 700 14px/1.2 "Inter Tight", Arial, sans-serif;
  letter-spacing: 0.02em;
  padding: 11px 16px;
  text-transform: uppercase;
}

.button--hot {
  background: var(--lime);
  color: #000000;
}

.nav-strip {
  display: flex;
  gap: 2px;
  overflow-x: auto;
  padding: 0 20px 12px;
}

.nav-strip ul,
.footer-menu {
  display: contents;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-strip li,
.footer-menu li {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-strip a {
  border-bottom: 3px solid transparent;
  color: var(--ink);
  display: inline-flex;
  font: 700 16px/1.2 "Inter Tight", Arial, sans-serif;
  letter-spacing: 0;
  padding: 8px 13px;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-strip a:hover {
  background: var(--lime);
  border-bottom-color: #000000;
  color: #000000;
  text-decoration: none;
}

.drawer {
  background: rgba(0, 0, 0, 0.55);
  inset: 0;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  transition: opacity 0.25s ease;
  visibility: hidden;
  z-index: 60;
}

.drawer[data-open="true"] {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

.drawer__panel {
  background: var(--ink-on-lime);
  bottom: 0;
  color: #ffffff;
  left: 0;
  max-width: 420px;
  overflow-y: auto;
  padding: 30px 30px 40px;
  position: absolute;
  top: 0;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  width: 86vw;
}

.drawer[data-open="true"] .drawer__panel {
  transform: translateX(0);
}

.drawer__top {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-bottom: 34px;
}

.drawer__top span {
  color: var(--lime);
  font: 600 12px/1 "Inter Tight", Arial, sans-serif;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.drawer__top button {
  border: 0;
  color: #ffffff;
  font-size: 26px;
}

.drawer__nav {
  display: flex;
  flex-direction: column;
}

.drawer__nav-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.drawer__nav-menu li {
  margin: 0;
}

.drawer__nav a {
  color: #ffffff;
  font-family: "Inter Tight", Arial, sans-serif;
  font-size: 34px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.2;
  padding: 7px 0;
  text-transform: uppercase;
}

.drawer__links {
  border-top: 2px solid var(--lime);
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 26px 0 20px;
  padding-top: 20px;
}

.drawer__links a {
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #ffffff;
  font: 700 16px/1.2 "Inter Tight", Arial, sans-serif;
  letter-spacing: 0;
  padding: 9px 13px;
  text-transform: uppercase;
}

.drawer p {
  color: rgba(255, 255, 255, 0.66);
  font-size: 14px;
  line-height: 1.2;
  max-width: 300px;
}

html.js [data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

html.js [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero {
  border-bottom: 2px solid var(--ink);
  display: grid;
  grid-template-columns: 1.15fr 1fr;
}

.hero__media {
  align-items: flex-end;
  background-color: var(--panel);
  background-position: center;
  background-size: cover;
  display: flex;
  min-height: clamp(360px, 52vw, 640px);
  padding: 26px;
  position: relative;
}

.media-frame,
.story-card__image {
  isolation: isolate;
  overflow: hidden;
}

.media-frame::after,
.story-card__image::after {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.28));
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}

.media-frame--hero::after {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.52));
}

.media-frame--article::after {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.01), rgba(0, 0, 0, 0.32));
}

.story-image {
  display: block;
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  width: 100%;
}

.photo-label {
  background: rgba(0, 0, 0, 0.82);
  color: #ffffff;
  font: 400 12px/1.2 "Inter Tight", Arial, sans-serif;
  left: 22px;
  letter-spacing: 0.14em;
  position: absolute;
  text-transform: uppercase;
  top: 22px;
  z-index: 2;
}

.photo-label--bottom {
  bottom: 12px;
  left: 12px;
  top: auto;
}

.cover-badge {
  background: var(--lime);
  color: #000000;
  font: 600 12px/1 "Inter Tight", Arial, sans-serif;
  letter-spacing: 0.04em;
  padding: 7px 11px;
  text-transform: uppercase;
  z-index: 2;
}

.hero__copy {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
  padding: clamp(26px, 4vw, 54px);
}

.kicker {
  align-self: flex-start;
  background: var(--lime);
  color: #000000;
  font: 600 12px/1 "Inter Tight", Arial, sans-serif;
  letter-spacing: 0.04em;
  padding: 5px 8px;
  text-transform: uppercase;
}

.hero h1,
.article__header h1,
.archive-hero h1,
.page-content__header h1 {
  font-family: "Inter Tight", Arial, sans-serif;
  letter-spacing: 0;
  margin: 0;
  text-transform: uppercase;
}

.hero h1 {
  font-size: 34px;
  font-weight: 700;
  line-height: 1.2;
  max-width: 16ch;
}

.hero p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.5;
  margin: 0;
  max-width: 46ch;
}

.hero__meta {
  align-items: center;
  color: var(--ink);
  display: flex;
  font: 600 12px/1.2 "Inter Tight", Arial, sans-serif;
  gap: 14px;
  letter-spacing: 0.06em;
}

.hero__meta span:nth-child(2),
.hero__meta span:nth-child(3) {
  color: var(--muted);
}

.hero__meta a {
  background: var(--lime);
  color: #000000;
  margin-left: auto;
  padding: 5px 8px;
  text-transform: uppercase;
}

.feature-grid,
.feed-grid {
  display: grid;
  gap: 1px;
}

.feature-grid {
  border-bottom: 2px solid var(--ink);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.feed-grid {
  background: var(--line);
  border: 1px solid var(--line);
  grid-template-columns: repeat(auto-fill, minmax(268px, 1fr));
}

.story-card {
  background: var(--bg);
  color: var(--ink);
  display: flex;
  flex-direction: column;
  min-width: 0;
}

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

.story-card__image {
  aspect-ratio: 4 / 3;
  background-color: var(--panel);
  background-position: center;
  background-size: cover;
  position: relative;
}

a.story-card__image {
  display: block;
}

.story-card--feature .story-card__image {
  aspect-ratio: 16 / 10;
}

.story-card__cat {
  background: var(--lime);
  color: #000000;
  font: 600 12px/1 "Inter Tight", Arial, sans-serif;
  left: 10px;
  letter-spacing: 0.1em;
  padding: 4px 7px;
  position: absolute;
  text-transform: uppercase;
  top: 10px;
  z-index: 2;
}

.story-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 9px;
  padding: 16px 16px 22px;
}

.story-card--feature .story-card__body {
  gap: 11px;
  padding: 20px 22px 26px;
}

.story-card h3 {
  font-family: "Inter Tight", Arial, sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2;
  margin: 0;
}

.story-card--feature h3 {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
}

.story-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}

.story-card--feature p {
  font-size: 14px;
}

.meta-line {
  color: var(--muted);
  font: 400 12px/1.2 "Inter Tight", Arial, sans-serif;
  letter-spacing: 0.02em;
  margin-top: auto;
  padding-top: 10px;
  text-transform: uppercase;
}

.feed-section,
.related-section {
  padding: 34px 24px 44px;
}

.section-heading {
  align-items: baseline;
  display: flex;
  gap: 14px;
  margin-bottom: 22px;
}

.section-heading h1,
.section-heading h2,
.related-section h2,
.newsletter-band h2 {
  font-family: "Inter Tight", Arial, sans-serif;
  font-weight: 900;
  line-height: 1.2;
  margin: 0;
  text-transform: uppercase;
}

.section-heading h1,
.section-heading h2 {
  font-size: 40px;
}

.related-section h2 {
  font-size: 40px;
}

.section-heading span {
  background: var(--lime);
  color: #000000;
  font: 600 12px/1 "Inter Tight", Arial, sans-serif;
  letter-spacing: 0.04em;
  padding: 5px 8px;
  text-transform: uppercase;
}

.newsletter-band {
  align-items: center;
  background: var(--lime);
  border: 2px solid var(--ink-on-lime);
  color: var(--ink-on-lime);
  display: grid;
  gap: 30px;
  grid-template-columns: 1.3fr 1fr;
  margin: 34px 24px 40px;
  padding: clamp(30px, 5vw, 60px);
}

.newsletter-band > div > span {
  font: 600 12px/1 "Inter Tight", Arial, sans-serif;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.newsletter-band h2 {
  font-size: 40px;
  line-height: 1.2;
  margin: 12px 0 10px;
  max-width: 11ch;
}

.newsletter-band p {
  font-size: 18px;
  line-height: 1.5;
  margin: 0;
  max-width: 46ch;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.newsletter-form label,
.contact-form label,
.search-form label {
  font: 600 14px/1.2 "Inter Tight", Arial, sans-serif;
  letter-spacing: 0;
  text-transform: uppercase;
}

.newsletter-form input {
  background: transparent;
  border: 2px solid var(--ink-on-lime);
  color: var(--ink-on-lime);
  font: 400 16px/1.2 "Inter Tight", Arial, sans-serif;
  outline: none;
  padding: 16px;
}

.newsletter-form input:focus,
.contact-form input:focus,
.contact-form textarea:focus,
.search-form input:focus {
  border-color: var(--focus-ring);
  outline: 0;
}

.newsletter-form input:focus-visible,
.contact-form input:focus-visible,
.contact-form textarea:focus-visible,
.search-form input:focus-visible {
  outline: 3px solid var(--focus-ring);
  outline-offset: 3px;
}

.form-honeypot {
  height: 0;
  left: -10000px;
  overflow: hidden;
  position: absolute;
  width: 0;
}

.form-status {
  border: 1px solid currentColor;
  font-size: 13px !important;
  line-height: 1.45 !important;
  margin: 4px 0 0 !important;
  padding: 10px 12px;
}

.form-status--success {
  color: currentColor;
}

.form-status--error {
  color: currentColor;
  font-weight: 700;
}

.form-privacy {
  font-size: 12px !important;
  line-height: 1.45 !important;
}

.form-privacy a {
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.newsletter-form input::placeholder {
  color: rgba(0, 0, 0, 0.7);
}

.newsletter-form button {
  background: var(--ink-on-lime);
  color: var(--lime);
  justify-content: center;
  padding: 16px;
}

.article__back {
  padding: 24px 24px 0;
}

.article__back a {
  color: var(--muted);
  font: 700 14px/1.2 "Inter Tight", Arial, sans-serif;
  letter-spacing: 0;
  text-transform: uppercase;
}

.article__header,
.page-content__header {
  margin: 0 auto;
  max-width: 820px;
  padding: 30px 24px 26px;
  text-align: center;
}

.article__header h1 {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
  margin: 16px 0 20px;
}

.article__header p {
  color: var(--muted);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
  margin: 0 auto;
  max-width: 60ch;
}

.article__meta {
  display: flex;
  flex-wrap: wrap;
  font: 400 12px/1.2 "Inter Tight", Arial, sans-serif;
  gap: 14px;
  justify-content: center;
  letter-spacing: 0.06em;
  margin-top: 22px;
}

.article__meta span:nth-child(even) {
  color: var(--muted);
}

.article__image {
  aspect-ratio: 2 / 1;
  background-color: var(--panel);
  background-position: center;
  background-size: cover;
  border-bottom: 2px solid var(--ink);
  border-top: 2px solid var(--ink);
  margin: 0 auto;
  max-width: 1100px;
  position: relative;
  width: 100%;
}

.article__content,
.page-content__body {
  font-size: 18px;
  line-height: 1.5;
  margin: 0 auto;
  max-width: 680px;
  padding: 40px 24px 20px;
}

.article__content p,
.page-content__body p {
  margin: 0 0 26px;
}

.article__content a,
.page-content__body a {
  border-bottom: 1px solid var(--accent-text);
  font-weight: 700;
  line-height: 1.5;
}

.article__content h2,
.page-content__body h2 {
  font-size: 34px;
  font-weight: 700;
  line-height: 1.2;
}

.article__content h3,
.page-content__body h3 {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.2;
}

.article__content h4,
.page-content__body h4 {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
}

.article__content h5,
.page-content__body h5 {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
}

.article__content h6,
.page-content__body h6 {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.2;
}

.share-strip {
  align-items: center;
  border-bottom: 2px solid var(--ink);
  border-top: 2px solid var(--ink);
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 34px 0;
  padding: 18px 0;
}

.share-strip span {
  color: var(--muted);
  font: 600 14px/1.2 "Inter Tight", Arial, sans-serif;
  letter-spacing: 0;
  text-transform: uppercase;
}

.share-strip a,
.share-strip button {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ink);
  cursor: pointer;
  font: 700 14px/1.2 "Inter Tight", Arial, sans-serif;
  letter-spacing: 0;
  padding: 7px 12px;
  text-transform: uppercase;
}

.share-status {
  color: var(--muted);
  font-size: 12px;
  width: 100%;
}

.archive-hero {
  border-bottom: 2px solid var(--ink);
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: clamp(34px, 6vw, 72px) 24px;
}

.archive-hero span {
  align-self: flex-start;
  background: var(--lime);
  color: #000000;
  font: 600 12px/1 "Inter Tight", Arial, sans-serif;
  letter-spacing: 0.04em;
  padding: 5px 8px;
  text-transform: uppercase;
}

.archive-hero h1 {
  font-size: 40px;
  font-weight: 900;
  line-height: 1.2;
}

.archive-hero p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.5;
  margin: 0;
  max-width: 60ch;
}

.archive-hero--search h1 {
  font-size: 40px;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.archive-hero .search-form {
  max-width: 680px;
  width: 100%;
}

.search-form {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.search-form__row {
  display: flex;
  gap: 8px;
}

.search-form input,
.contact-form input,
.contact-form textarea {
  background: transparent;
  border: 2px solid currentColor;
  border-radius: 0;
  color: inherit;
  font: 400 16px/1.2 "Inter Tight", Arial, sans-serif;
  min-width: 0;
  padding: 12px 14px;
}

.search-form input {
  flex: 1;
}

.search-form button,
.contact-form button {
  background: var(--lime);
  border: 2px solid var(--ink);
  color: #000000;
  cursor: pointer;
  font: 700 14px/1.2 "Inter Tight", Arial, sans-serif;
  letter-spacing: 0;
  padding: 12px 16px;
  text-transform: uppercase;
}

.drawer .search-form {
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
  margin-top: 24px;
  padding-top: 20px;
}

.drawer .search-form button {
  border-color: var(--lime);
}

.results-count {
  color: var(--muted);
  font: 600 14px/1.2 "Inter Tight", Arial, sans-serif;
  letter-spacing: 0;
  text-transform: uppercase;
}

.empty-state {
  margin: 0 auto;
  max-width: 680px;
  padding: 36px 0 56px;
  text-align: center;
}

.page-content__header h1 {
  font-size: 40px;
  font-weight: 900;
  line-height: 1.2;
  margin-top: 16px;
}

.page-content--center {
  min-height: 60vh;
  padding-top: 40px;
  text-align: center;
}

.about-layout {
  border-bottom: 2px solid var(--ink);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
}

.contact-layout {
  display: grid;
  gap: clamp(30px, 6vw, 80px);
  grid-template-columns: minmax(0, 0.8fr) minmax(300px, 1.2fr);
  margin: 0 auto;
  max-width: 1100px;
  padding: clamp(36px, 6vw, 80px) 24px;
}

.contact-layout__copy {
  font-size: 18px;
  line-height: 1.5;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-form textarea {
  min-height: 180px;
  resize: vertical;
}

.contact-form button {
  align-self: flex-start;
  margin-top: 8px;
}

.about-layout__copy {
  border-right: 1px solid var(--line);
  font-size: 18px;
  line-height: 1.5;
  padding: clamp(30px, 4vw, 56px);
}

.about-layout__copy p {
  margin: 0 0 22px;
}

.about-layout__stats {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: clamp(30px, 4vw, 56px);
}

.about-layout__stats div {
  border-bottom: 1px solid var(--line);
  padding-bottom: 16px;
}

.about-layout__stats strong {
  color: var(--ink);
  display: block;
  font-family: "Inter Tight", Arial, sans-serif;
  font-size: 40px;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
}

.about-layout__stats span {
  color: var(--muted);
  display: block;
  font: 600 14px/1.2 "Inter Tight", Arial, sans-serif;
  letter-spacing: 0;
  margin-top: 6px;
  text-transform: uppercase;
}

.newsletter-page {
  align-items: center;
  display: flex;
  justify-content: center;
  min-height: 70vh;
  padding: 40px 24px;
}

.newsletter-page__card {
  background: var(--ink-on-lime);
  border: 2px solid var(--lime);
  color: #ffffff;
  max-width: 640px;
  padding: clamp(30px, 5vw, 58px);
  width: 100%;
}

.newsletter-page__card > span {
  color: var(--lime);
  font: 600 12px/1 "Inter Tight", Arial, sans-serif;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.newsletter-page__card h1 {
  font-family: "Inter Tight", Arial, sans-serif;
  font-size: 40px;
  font-weight: 900;
  line-height: 1.2;
  margin: 16px 0 14px;
  text-transform: uppercase;
}

.newsletter-page__card p {
  color: rgba(255, 255, 255, 0.66);
  font-size: 18px;
  line-height: 1.5;
  margin: 0 0 26px;
}

.newsletter-form--dark input {
  border-color: rgba(255, 255, 255, 0.28);
  color: #ffffff;
}

.newsletter-form--dark input::placeholder {
  color: rgba(255, 255, 255, 0.66);
}

.newsletter-page__card small {
  color: rgba(255, 255, 255, 0.66);
  display: block;
  font-size: 12px;
  margin-top: 16px;
}

.nav-links,
.page-links {
  display: flex;
  gap: 12px;
  justify-content: center;
  padding: 24px;
}

.nav-links a,
.nav-links span,
.page-links a,
.page-links span {
  border: 1px solid var(--line);
  font: 700 14px/1.2 "Inter Tight", Arial, sans-serif;
  padding: 9px 12px;
  text-transform: uppercase;
}

.site-footer {
  background: var(--ink-on-lime);
  color: #ffffff;
  padding: clamp(36px, 5vw, 60px) 24px 30px;
}

.site-footer__grid {
  display: grid;
  gap: 34px;
  grid-template-columns: 1.5fr 1fr 1fr;
  margin: 0 auto;
  max-width: 1200px;
}

.footer-brand {
  display: inline-block;
  font-family: "Gill Sans MT", "Inter Tight", Arial, sans-serif;
  font-size: 44px;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 0.85;
  transform: scale(0.9, 1.1);
  transform-origin: left center;
}

.site-footer h2 {
  color: var(--lime);
}

.site-footer p {
  color: rgba(255, 255, 255, 0.66);
  font-size: 14px;
  line-height: 1.2;
  margin: 14px 0 0;
  max-width: 34ch;
}

.site-footer h2 {
  font: 600 14px/1.2 "Inter Tight", Arial, sans-serif;
  letter-spacing: 0.04em;
  margin: 0 0 16px;
  text-transform: uppercase;
}

.site-footer a {
  color: #ffffff;
  display: block;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  padding: 5px 0;
}

.socials {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.socials:empty {
  display: none;
}

.socials a {
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  display: flex;
  font: 700 14px/1.2 "Inter Tight", Arial, sans-serif;
  height: 40px;
  justify-content: center;
  width: 40px;
}

.site-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.66);
  display: flex;
  flex-wrap: wrap;
  font: 400 13px/1.2 "Inter Tight", Arial, sans-serif;
  gap: 10px;
  justify-content: space-between;
  letter-spacing: 0.08em;
  margin: 34px auto 0;
  max-width: 1200px;
  padding-top: 20px;
  text-transform: uppercase;
}

@media (max-width: 860px) {
  body.admin-bar .site-header {
    top: 46px;
  }

  .site-header__bar {
    align-items: stretch;
    flex-wrap: wrap;
  }

  .brand {
    order: -1;
    width: 100%;
  }

  .hero,
  .feature-grid,
  .newsletter-band,
  .about-layout,
  .contact-layout,
  .site-footer__grid {
    grid-template-columns: 1fr;
  }

  .about-layout__copy {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .hero__copy {
    padding: 28px 24px 36px;
  }

  .newsletter-band {
    margin-left: 16px;
    margin-right: 16px;
  }
}

@media (max-width: 560px) {
  .site-header__actions .button {
    display: none;
  }

  .brand__name {
    font-size: 30px;
  }

  .hero h1 {
    font-size: 28px;
  }

  .hero p,
  .article__content,
  .page-content__body,
  .contact-layout__copy,
  .about-layout__copy {
    font-size: 16px;
    line-height: 1.5;
  }

  .story-card h3 {
    font-size: 16px;
  }

  .story-card--feature h3 {
    font-size: 22px;
  }

  .section-heading h1,
  .section-heading h2,
  .archive-hero h1,
  .archive-hero--search h1,
  .page-content__header h1,
  .newsletter-page__card h1 {
    font-size: 32px;
    line-height: 1.2;
  }

  .article__header h1 {
    font-size: 32px;
    line-height: 1.2;
  }

  .article__header p {
    font-size: 18px;
    line-height: 1.2;
  }

  .drawer__nav a {
    font-size: 24px;
    line-height: 1.2;
  }

  .drawer__links a {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
  }

  .button,
  .search-form button,
  .contact-form button {
    font-size: 12px;
    line-height: 1.2;
  }

  .newsletter-form button {
    font-size: 18px;
    line-height: 1.2;
  }

  .article__content h2,
  .page-content__body h2 {
    font-size: 30px;
  }

  .article__content h3,
  .page-content__body h3 {
    font-size: 24px;
  }

  .article__content h4,
  .page-content__body h4 {
    font-size: 20px;
  }

  .article__content h5,
  .page-content__body h5 {
    font-size: 18px;
  }

  .article__content h6,
  .page-content__body h6 {
    font-size: 16px;
    font-weight: 900;
    line-height: 1.5;
  }

  .site-footer a {
    font-size: 16px;
    font-weight: 600;
  }

  .search-link {
    display: none;
  }

  .search-form__row {
    align-items: stretch;
    flex-direction: column;
  }

  .feed-section,
  .related-section {
    padding-left: 16px;
    padding-right: 16px;
  }
}

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

  .ticker__track {
    animation: none !important;
  }

  html.js [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
