:root {
  --ink: #171713;
  --ink-soft: #34342f;
  --paper: #f4f5ef;
  --white: #ffffff;
  --line: #c9cbc2;
  --line-dark: #50504a;
  --coral: #ff654f;
  --acid: #d3f36b;
  --blue: #2657db;
  --cyan: #7fd5da;
  --muted: #696961;
  --display: "Bodoni MT", "Baskerville", "Times New Roman", serif;
  --body: "Avenir Next", "Century Gothic", "Trebuchet MS", sans-serif;
  --content: 1180px;
  --reading: 760px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-underline-offset: 0.2em;
  text-decoration-thickness: 1px;
}

a:hover {
  text-decoration-thickness: 2px;
}

button,
input,
textarea {
  font: inherit;
}

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

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--blue);
  transform: translateY(-160%);
}

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

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--white);
  background: rgba(23, 23, 19, 0.96);
  backdrop-filter: blur(14px);
}

.nav-shell {
  width: min(calc(100% - 40px), var(--content));
  min-height: 68px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--white);
  font-weight: 800;
  text-decoration: none;
  line-height: 1;
}

.wordmark-mark {
  width: 31px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.7);
  color: var(--ink);
  background: var(--acid);
  font-family: var(--display);
  font-size: 19px;
  font-weight: 700;
}

.wordmark-text {
  font-size: 14px;
  letter-spacing: 0;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.site-nav a {
  color: #f6f6f1;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.site-nav a:not(.nav-cta):hover {
  color: var(--acid);
}

.site-nav .nav-cta,
.button {
  min-height: 42px;
  padding: 10px 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid var(--ink);
  border-radius: 2px;
  color: var(--ink);
  background: var(--acid);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.site-nav .nav-cta:hover,
.button:hover {
  background: var(--white);
  box-shadow: 4px 4px 0 var(--coral);
  transform: translate(-2px, -2px);
}

.button-dark {
  border-color: var(--white);
  color: var(--white);
  background: transparent;
}

.button-dark:hover {
  color: var(--ink);
  background: var(--white);
}

.menu-toggle {
  width: 42px;
  height: 42px;
  padding: 0;
  display: none;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 2px;
  color: var(--white);
  background: transparent;
  cursor: pointer;
}

.menu-toggle svg {
  width: 21px;
  height: 21px;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
}

.hero {
  position: relative;
  min-height: min(730px, calc(100svh - 92px));
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.17;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.22) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.22) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to right, black, transparent 72%);
}

.hero-shell {
  position: relative;
  width: min(calc(100% - 40px), var(--content));
  min-height: inherit;
  margin: 0 auto;
  padding: 54px 0 46px;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(340px, 0.94fr);
  align-items: center;
  gap: clamp(36px, 7vw, 104px);
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 670px;
}

.eyebrow {
  margin: 0 0 22px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--acid);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 30px;
  height: 2px;
  background: currentColor;
}

.hero h1 {
  max-width: 690px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(62px, 8.5vw, 126px);
  font-weight: 500;
  line-height: 0.8;
  letter-spacing: 0;
}

.hero h1 span {
  display: block;
  color: var(--coral);
  font-style: italic;
}

.hero-lede {
  max-width: 560px;
  margin: 30px 0 0;
  color: #d6d6cf;
  font-size: clamp(17px, 1.8vw, 21px);
  line-height: 1.55;
}

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

.hero-note {
  margin: 24px 0 0;
  color: #a9aaa2;
  font-size: 12px;
}

.hero-media {
  position: relative;
  min-height: 500px;
}

.hero-media::before {
  content: "EW / 01";
  position: absolute;
  right: 4px;
  top: 5px;
  color: var(--cyan);
  font-size: 11px;
  font-weight: 800;
}

.hero-media img {
  position: absolute;
  width: min(94%, 520px);
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: top left;
  border: 1px solid rgba(255, 255, 255, 0.52);
  box-shadow: 14px 14px 0 rgba(38, 87, 219, 0.85);
}

.hero-media img:first-child {
  top: 44px;
  left: 0;
  transform: rotate(-2deg);
}

.hero-media img:last-child {
  right: 0;
  bottom: 30px;
  width: min(78%, 420px);
  box-shadow: -12px 12px 0 rgba(255, 101, 79, 0.88);
  transform: rotate(2deg);
}

.hero-stamp {
  position: absolute;
  z-index: 3;
  right: 10px;
  top: 44%;
  width: 112px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: var(--acid);
  font-family: var(--display);
  font-size: 18px;
  font-style: italic;
  line-height: 1.05;
  text-align: center;
  transform: rotate(-8deg);
}

.article-surface {
  border-bottom: 1px solid var(--ink);
  background: var(--white);
}

.article-surface-shell {
  width: min(100%, var(--content));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  border-right: 1px solid var(--ink);
  border-left: 1px solid var(--ink);
}

.surface-intro {
  padding: 30px;
  border-right: 1px solid var(--ink);
  background: var(--acid);
}

.kicker {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.4;
  text-transform: uppercase;
}

.surface-intro h2,
.section-heading h2,
.publisher-heading h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 500;
  line-height: 1;
}

.surface-intro p:last-child {
  margin: 14px 0 0;
  font-size: 13px;
  line-height: 1.55;
}

.surface-content {
  min-width: 0;
  padding: 24px 30px 28px;
}

.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}

.tab {
  min-height: 37px;
  padding: 7px 12px;
  border: 1px solid var(--line);
  border-radius: 2px;
  color: var(--muted);
  background: transparent;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

.tab[aria-selected="true"] {
  border-color: var(--ink);
  color: var(--white);
  background: var(--ink);
}

.tab-panel[hidden] {
  display: none;
}

.article-links {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 24px;
  list-style: none;
}

.article-links li {
  min-width: 0;
  border-top: 1px solid var(--line);
}

.article-links a {
  min-height: 70px;
  padding: 12px 2px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.article-links a:hover .article-title {
  text-decoration: underline;
  text-decoration-color: var(--coral);
  text-decoration-thickness: 3px;
  text-underline-offset: 4px;
}

.article-title {
  min-width: 0;
  overflow-wrap: anywhere;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
}

.article-meta {
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.arrow-icon {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 1.7;
  fill: none;
}

.section {
  padding: 88px 0;
}

.section-shell {
  width: min(calc(100% - 40px), var(--content));
  margin: 0 auto;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 42px;
}

.section-heading p {
  max-width: 660px;
  margin: 16px 0 0;
  color: var(--muted);
}

.services {
  background: var(--paper);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.service {
  min-width: 0;
  padding: 28px 26px 32px;
  border-right: 1px solid var(--ink);
}

.service:last-child {
  border-right: 0;
}

.service-number {
  color: var(--blue);
  font-family: var(--display);
  font-size: 16px;
  font-style: italic;
}

.service h3 {
  margin: 38px 0 12px;
  font-family: var(--display);
  font-size: 31px;
  font-weight: 500;
  line-height: 1.05;
}

.service p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.service-tag {
  margin-top: 30px;
  display: inline-block;
  padding: 4px 7px;
  color: var(--ink);
  background: var(--cyan);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.method {
  color: var(--white);
  background: var(--blue);
}

.method .kicker,
.method .section-heading p {
  color: #d9e1ff;
}

.method-track {
  counter-reset: method;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.6);
}

.method-step {
  counter-increment: method;
  min-width: 0;
  padding: 24px 22px 12px 0;
}

.method-step::before {
  content: "0" counter(method);
  display: block;
  margin-bottom: 46px;
  color: var(--acid);
  font-family: var(--display);
  font-size: 28px;
  font-style: italic;
}

.method-step h3 {
  margin: 0 0 9px;
  font-size: 16px;
  line-height: 1.3;
}

.method-step p {
  margin: 0;
  color: #d9e1ff;
  font-size: 13px;
}

.team-band {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  border: 1px solid var(--ink);
}

.team-copy {
  padding: 42px;
  color: var(--white);
  background: var(--ink);
}

.team-copy .kicker {
  color: var(--acid);
}

.team-copy h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(39px, 5vw, 68px);
  font-weight: 500;
  line-height: 0.95;
}

.team-copy p {
  max-width: 460px;
  margin: 22px 0 0;
  color: #c7c7c0;
  font-size: 14px;
}

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

.person {
  min-width: 0;
  padding: 42px 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-left: 1px solid var(--ink);
  background: var(--white);
}

.person-monogram {
  width: 74px;
  aspect-ratio: 1;
  margin-bottom: 72px;
  display: grid;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  color: var(--white);
  background: var(--coral);
  font-family: var(--display);
  font-size: 29px;
  font-style: italic;
}

.person:nth-child(2) .person-monogram {
  color: var(--ink);
  background: var(--acid);
}

.person h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 28px;
  font-weight: 500;
  line-height: 1.05;
}

.person p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.publishers {
  padding-top: 20px;
}

.publisher-shell {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(36px, 8vw, 112px);
}

.publisher-heading {
  position: sticky;
  top: 110px;
  align-self: start;
}

.publisher-heading p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.publisher-list {
  border-top: 1px solid var(--ink);
}

.publisher-link {
  min-height: 78px;
  padding: 15px 2px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
}

.publisher-link:hover {
  color: var(--blue);
}

.publisher-link strong {
  display: block;
  overflow-wrap: anywhere;
  font-size: 14px;
}

.publisher-link span {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
}

.contact-band {
  padding: 76px 0;
  color: var(--ink);
  background: var(--acid);
}

.contact-shell {
  width: min(calc(100% - 40px), var(--content));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 44px;
}

.contact-band h2 {
  max-width: 820px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(44px, 7vw, 90px);
  font-weight: 500;
  line-height: 0.9;
}

.contact-band p {
  max-width: 600px;
  margin: 22px 0 0;
}

.contact-band .button {
  min-width: 170px;
  background: var(--white);
}

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

.footer-shell {
  width: min(calc(100% - 40px), var(--content));
  min-height: 116px;
  margin: 0 auto;
  padding: 26px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-size: 12px;
}

.footer-shell a:hover {
  color: var(--acid);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-nav a {
  color: inherit;
  text-decoration: none;
}

/* Article pages */
.article-page {
  background: var(--paper);
}

.reading-progress {
  position: fixed;
  z-index: 70;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--coral);
}

.article-page .shell {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

.article-page .shell > header {
  position: sticky;
  z-index: 50;
  top: 0;
  margin: 0;
  min-height: 68px;
  padding: 0 max(20px, calc((100% - var(--content)) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  background: rgba(23, 23, 19, 0.97);
}

.article-page .shell > header a {
  color: inherit;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.article-page .shell > header a:hover {
  color: var(--acid);
}

.article-page .shell > header::after {
  content: "Field note";
  padding: 4px 7px;
  color: var(--ink);
  background: var(--acid);
  font-size: 10px;
  font-weight: 800;
  line-height: 1.3;
  text-transform: uppercase;
}

.article-page article {
  max-width: var(--reading);
  margin: 0 auto;
  padding: 74px 24px 94px;
  color: var(--ink-soft);
  background: transparent;
  box-shadow: none;
}

.article-page article > h1 {
  max-width: 900px;
  margin: 0 0 18px;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(46px, 7vw, 82px);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: 0;
}

.article-page article > .meta {
  margin: 0 0 48px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--ink);
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.article-page article p {
  margin: 0 0 1.25em;
}

.article-page article > h1 + .meta + p {
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(22px, 3vw, 29px);
  line-height: 1.35;
}

.article-page article h2 {
  margin: 2.3em 0 0.7em;
  padding-top: 0.55em;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(31px, 4vw, 44px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: 0;
}

.article-page article h3 {
  margin: 2em 0 0.55em;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.3;
}

.article-page article ul,
.article-page article ol {
  margin: 0 0 1.6em;
  padding-left: 1.35em;
}

.article-page article li {
  margin-bottom: 0.55em;
}

.article-page article img {
  width: 100% !important;
  height: auto;
  margin: 34px auto;
  border: 1px solid var(--ink) !important;
  border-radius: 2px !important;
  background: var(--white);
  box-shadow: 10px 10px 0 var(--cyan);
}

.article-page article table {
  width: 100% !important;
  margin: 28px 0 36px !important;
  display: table;
  border-collapse: collapse !important;
  font-size: 13px !important;
  line-height: 1.45;
}

.article-page article th,
.article-page article td {
  padding: 10px 11px !important;
  border: 1px solid var(--line-dark) !important;
  color: var(--ink) !important;
  background: var(--white) !important;
  text-align: left;
}

.article-page article th {
  color: var(--white) !important;
  background: var(--ink) !important;
  font-weight: 800;
}

.article-page article blockquote,
.callout {
  margin: 34px 0;
  padding: 22px 24px;
  border-left: 5px solid var(--coral);
  background: var(--white);
}

.article-page article details {
  margin: 0;
  border-top: 1px solid var(--line);
}

.article-page article details:last-of-type {
  border-bottom: 1px solid var(--line);
}

.article-page article summary {
  padding: 16px 34px 16px 0;
  color: var(--ink);
  font-weight: 800;
  cursor: pointer;
}

.article-page article details p {
  padding-right: 28px;
}

.article-page .shell > footer {
  width: min(calc(100% - 40px), var(--content));
  max-width: none;
  margin: 0 auto;
  padding: 27px 0;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--ink);
  color: var(--muted);
  font-size: 12px;
}

.article-page .shell > footer a {
  color: var(--ink);
  font-weight: 800;
}

@media (max-width: 920px) {
  .hero-shell {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
    gap: 34px;
  }

  .hero-media {
    min-height: 420px;
  }

  .hero-stamp {
    width: 92px;
    font-size: 15px;
  }

  .article-surface-shell {
    grid-template-columns: 240px minmax(0, 1fr);
  }

  .surface-intro {
    padding: 24px;
  }

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

  .method-track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 24px;
  }

  .team-band {
    grid-template-columns: 1fr;
  }

  .person:first-child {
    border-left: 0;
  }
}

@media (max-width: 720px) {
  html {
    scroll-padding-top: 76px;
  }

  .nav-shell,
  .section-shell,
  .contact-shell,
  .footer-shell {
    width: min(calc(100% - 28px), var(--content));
  }

  .menu-toggle {
    display: grid;
  }

  .site-nav {
    position: fixed;
    inset: 68px 0 auto;
    padding: 22px 20px 28px;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 5px;
    border-bottom: 1px solid var(--line-dark);
    background: var(--ink);
  }

  .site-nav[data-open="true"] {
    display: flex;
  }

  .site-nav a {
    min-height: 46px;
    padding: 12px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--line-dark);
  }

  .site-nav .nav-cta {
    margin-top: 10px;
    border: 1px solid var(--white);
  }

  .hero {
    min-height: auto;
  }

  .hero-shell {
    min-height: auto;
    padding: 52px 0 42px;
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .hero h1 {
    font-size: clamp(58px, 21vw, 88px);
  }

  .hero-lede {
    margin-top: 22px;
    font-size: 17px;
  }

  .hero-actions {
    margin-top: 24px;
  }

  .hero-actions .button {
    flex: 1 1 140px;
  }

  .hero-note {
    display: none;
  }

  .hero-media {
    min-height: 265px;
  }

  .hero-media img:first-child {
    top: 10px;
    width: 88%;
  }

  .hero-media img:last-child {
    bottom: 4px;
    width: 70%;
  }

  .hero-stamp {
    right: 4px;
    top: 38%;
    width: 78px;
    font-size: 13px;
  }

  .article-surface-shell {
    grid-template-columns: 1fr;
    border-right: 0;
    border-left: 0;
  }

  .surface-intro {
    padding: 26px 20px;
    border-right: 0;
    border-bottom: 1px solid var(--ink);
  }

  .surface-content {
    padding: 22px 20px 24px;
  }

  .article-links a {
    min-height: 64px;
  }

  .section {
    padding: 68px 0;
  }

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

  .service {
    padding: 24px 4px 28px;
    border-right: 0;
    border-bottom: 1px solid var(--ink);
  }

  .service:last-child {
    border-bottom: 0;
  }

  .service h3 {
    margin-top: 22px;
  }

  .method-track {
    grid-template-columns: 1fr;
  }

  .method-step {
    padding: 20px 0;
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr);
    column-gap: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  }

  .method-step::before {
    grid-row: 1 / span 2;
    margin: 0;
  }

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

  .team-copy,
  .person {
    padding: 32px 24px;
  }

  .person {
    border-top: 1px solid var(--ink);
    border-left: 0;
  }

  .person-monogram {
    margin-bottom: 42px;
  }

  .publisher-shell {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .publisher-heading {
    position: static;
  }

  .contact-shell {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .contact-band .button {
    width: 100%;
  }

  .footer-shell {
    min-height: 130px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
  }

  .article-page .shell > header {
    padding: 0 16px;
  }

  .article-page article {
    padding: 48px 18px 72px;
  }

  .article-page article > h1 {
    font-size: clamp(42px, 14vw, 62px);
  }

  .article-page article table {
    display: block;
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .article-page .shell > footer {
    width: calc(100% - 36px);
    flex-direction: column;
  }
}

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