:root {
  --ink: #111311;
  --ink-soft: #343834;
  --paper: #f5f6f3;
  --white: #ffffff;
  --line: #c9cdc7;
  --line-dark: #50544f;
  --signal: #ffd400;
  --signal-red: #e33b2f;
  --blue: #1769aa;
  --content: 1200px;
  --reading: 720px;
  --header-height: 72px;
  --sans: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  --serif: Georgia, "Times New Roman", serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.55;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration-color: var(--signal-red);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

button,
input {
  font: inherit;
  letter-spacing: 0;
}

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

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

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  background: var(--signal);
  color: var(--ink);
  font-weight: 800;
  transform: translateY(-150%);
}

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

.site-header {
  position: relative;
  z-index: 100;
  height: var(--header-height);
  border-bottom: 1px solid var(--line-dark);
  background: var(--ink);
  color: var(--white);
}

.site-header.is-sticky {
  position: sticky;
  top: 0;
}

.header-inner {
  width: min(calc(100% - 48px), var(--content));
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.header-sign {
  width: 38px;
  height: 38px;
  border-radius: 4px;
  object-fit: cover;
}

.wordmark-text {
  display: inline-flex;
  align-items: baseline;
}

.wordmark-code {
  border-bottom: 4px solid var(--signal);
}

.wordmark-four {
  color: var(--signal);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  height: 100%;
}

.site-nav a {
  position: relative;
  display: grid;
  place-items: center;
  height: 100%;
  color: #e9ebe7;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 17px;
  left: 0;
  height: 3px;
  background: var(--signal);
  content: "";
  opacity: 0;
  transform: scaleX(0.2);
  transition: opacity 160ms ease, transform 160ms ease;
}

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.nav-toggle-lines,
.nav-toggle-lines::before,
.nav-toggle-lines::after {
  display: block;
  width: 23px;
  height: 2px;
  margin: auto;
  background: currentColor;
  content: "";
  transition: transform 180ms ease;
}

.nav-toggle-lines::before {
  transform: translateY(-7px);
}

.nav-toggle-lines::after {
  transform: translateY(5px);
}

.nav-open .nav-toggle-lines {
  background: transparent;
}

.nav-open .nav-toggle-lines::before {
  transform: translateY(2px) rotate(45deg);
}

.nav-open .nav-toggle-lines::after {
  transform: rotate(-45deg);
}

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

.home-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 43%;
  filter: contrast(1.06);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 11, 10, 0.92) 0%, rgba(10, 11, 10, 0.5) 46%, rgba(10, 11, 10, 0.12) 75%), linear-gradient(0deg, rgba(10, 11, 10, 0.66) 0%, transparent 42%);
}

.hero-content {
  position: absolute;
  left: max(24px, calc((100% - var(--content)) / 2));
  bottom: 92px;
  max-width: 720px;
}

.eyebrow,
.section-code {
  margin: 0 0 18px;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.25;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-block;
  padding: 7px 9px 6px;
  background: var(--signal);
  color: var(--ink);
}

.hero-content h1 {
  margin: 0;
  font-size: 108px;
  font-weight: 900;
  line-height: 0.88;
}

.hero-content > p:last-child {
  margin: 24px 0 0;
  color: #eff1ed;
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1.35;
}

.hero-scroll {
  position: absolute;
  right: max(24px, calc((100% - var(--content)) / 2));
  bottom: 0;
  width: 116px;
  height: 72px;
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--signal);
  color: var(--ink);
  font-size: 11px;
  font-weight: 900;
  text-decoration: none;
}

.hero-scroll span:last-child {
  font-size: 23px;
}

.latest-section,
.archive-section {
  width: min(calc(100% - 48px), var(--content));
  margin: 0 auto;
  padding: 100px 0;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 44px;
  border-bottom: 1px solid var(--ink);
}

.section-heading h2,
.related h2 {
  margin: 0 0 18px;
  font-size: 52px;
  line-height: 1;
}

.section-code {
  color: var(--signal-red);
}

.post-card {
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: minmax(240px, 0.9fr) minmax(0, 1.1fr);
  min-height: 340px;
}

.post-card:first-child {
  border-top: 0;
}

.post-card-image {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  background: #d9dcd7;
}

.post-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.72) contrast(1.04);
  transition: filter 300ms ease, transform 500ms ease;
}

.post-card:hover .post-card-image img {
  filter: saturate(1) contrast(1.02);
  transform: scale(1.018);
}

.post-card-copy {
  padding: 38px 0 38px 48px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.post-card-copy h3 {
  max-width: 720px;
  margin: 25px 0 12px;
  font-size: 34px;
  line-height: 1.06;
}

.post-card-copy h3 a {
  text-decoration: none;
}

.post-card-copy h3 a:hover {
  text-decoration: underline;
  text-decoration-color: var(--signal-red);
}

.post-card-copy > p {
  max-width: 650px;
  margin: 8px 0;
  color: var(--ink-soft);
}

.post-card-copy .card-deck {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 700;
}

.post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  color: #525751;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.post-meta > * + *::before {
  margin-right: 18px;
  color: var(--signal-red);
  content: "/";
}

.text-link {
  margin-top: auto;
  padding-top: 20px;
  display: inline-flex;
  gap: 10px;
  align-items: center;
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

.text-link span {
  color: var(--signal-red);
  font-size: 19px;
  transition: transform 160ms ease;
}

.text-link:hover span {
  transform: translateX(5px);
}

.post-card-featured {
  grid-template-columns: minmax(0, 1.25fr) minmax(360px, 0.75fr);
  min-height: 570px;
  border-top: 0;
  background: var(--white);
  box-shadow: 10px 10px 0 var(--signal);
}

.post-card-featured .post-card-image {
  min-height: 570px;
}

.post-card-featured .post-card-copy {
  padding: 48px;
}

.post-card-featured .post-card-copy h3 {
  font-size: 43px;
}

.archive-section {
  padding-top: 70px;
}

.archive-heading > div {
  flex: 1;
}

.search-field {
  width: 260px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  border-bottom: 2px solid var(--ink);
}

.search-field input {
  width: 100%;
  padding: 10px 4px;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font-size: 15px;
}

.search-field input::placeholder {
  color: #71766f;
}

.search-field span {
  font-size: 22px;
}

.post-grid {
  border-bottom: 1px solid var(--line);
}

.post-grid .post-card.is-hidden {
  display: none;
}

.empty-state {
  padding: 60px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: 22px;
}

.reading-progress {
  position: fixed;
  z-index: 200;
  top: 0;
  left: 0;
  width: 0;
  height: 4px;
  background: var(--signal-red);
  pointer-events: none;
}

.article-shell {
  padding-top: 75px;
}

.article-header {
  width: min(calc(100% - 48px), 980px);
  margin: 0 auto;
  padding-bottom: 65px;
  border-bottom: 1px solid var(--ink);
}

.back-link {
  display: inline-block;
  margin-bottom: 62px;
  color: #575c56;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
}

.back-link:hover {
  color: var(--ink);
}

.article-header h1 {
  max-width: 940px;
  margin: 30px 0 24px;
  font-size: 68px;
  line-height: 0.98;
}

.article-deck {
  max-width: 760px;
  margin: 0;
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 700;
  line-height: 1.35;
}

.byline {
  margin: 35px 0 0;
  color: #626760;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.article-layout {
  position: relative;
  width: min(calc(100% - 48px), 980px);
  margin: 0 auto;
  padding: 72px 0 100px;
  display: grid;
  grid-template-columns: 150px minmax(0, var(--reading));
  gap: 70px;
}

.article-rail {
  position: sticky;
  top: calc(var(--header-height) + 30px);
  align-self: start;
  display: grid;
  gap: 28px;
}

.rail-code {
  padding-top: 10px;
  border-top: 3px solid var(--signal-red);
  color: #666b65;
  font-size: 11px;
  font-weight: 900;
}

.copy-link {
  padding: 0;
  border: 0;
  background: none;
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
  text-align: left;
  text-decoration: underline;
  text-decoration-color: var(--signal-red);
  text-underline-offset: 4px;
  cursor: pointer;
}

.article-content {
  min-width: 0;
  color: #20231f;
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.78;
}

.article-content p {
  margin: 0 0 1.55em;
}

.article-content h2 {
  margin: 2.25em 0 0.7em;
  font-family: var(--sans);
  font-size: 34px;
  line-height: 1.12;
}

.article-content strong {
  color: var(--ink);
}

.article-content a {
  text-decoration-color: var(--signal-red);
}

.article-content figure {
  width: min(900px, calc(100vw - 48px));
  margin: 3.2em 0 3.2em -50px;
}

.article-content figure img {
  width: 100%;
  max-height: 780px;
  object-fit: contain;
  background: #e6e8e4;
}

.article-content figcaption {
  max-width: var(--reading);
  margin: 10px auto 0;
  color: #666b65;
  font-family: var(--sans);
  font-size: 12px;
  line-height: 1.45;
}

.article-content hr {
  width: 80px;
  margin: 60px 0;
  border: 0;
  border-top: 5px solid var(--signal);
}

.article-footer {
  width: min(calc(100% - 48px), 980px);
  margin: 0 auto;
}

.post-navigation {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.post-navigation a {
  min-height: 150px;
  padding: 28px 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-decoration: none;
}

.post-navigation a + a {
  padding-left: 32px;
  border-left: 1px solid var(--line);
}

.post-navigation span {
  color: #626760;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.post-navigation strong {
  max-width: 370px;
  font-size: 20px;
  line-height: 1.2;
}

.post-nav-newer {
  text-align: right;
  align-items: flex-end;
}

.related {
  width: min(calc(100% - 48px), var(--content));
  margin: 110px auto;
}

.related > h2 {
  padding-bottom: 22px;
  border-bottom: 1px solid var(--ink);
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.related-grid article {
  min-height: 190px;
  padding: 25px 28px 25px 0;
  border-bottom: 1px solid var(--line);
}

.related-grid article + article {
  padding-left: 28px;
  border-left: 1px solid var(--line);
}

.related-grid p {
  margin: 0 0 30px;
  color: #626760;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.related-grid h3 {
  margin: 0;
  font-size: 23px;
  line-height: 1.15;
}

.related-grid a {
  text-decoration: none;
}

.related-grid a:hover {
  text-decoration: underline;
  text-decoration-color: var(--signal-red);
}

.page-hero {
  width: min(calc(100% - 48px), var(--content));
  min-height: 670px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
  align-items: center;
  gap: 70px;
}

.page-hero h1 {
  margin: 0;
  font-size: 70px;
  line-height: 0.98;
}

.page-hero figure {
  align-self: stretch;
  margin: 0;
  overflow: hidden;
}

.page-hero figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-content {
  width: min(calc(100% - 48px), 980px);
  margin: 90px auto 120px;
  display: grid;
  grid-template-columns: 160px minmax(0, 590px) minmax(160px, 1fr);
  gap: 44px;
}

.about-content .lead {
  grid-column: 2 / 4;
  margin: 0 0 34px;
  padding-bottom: 45px;
  border-bottom: 1px solid var(--ink);
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 700;
  line-height: 1.4;
}

.about-content .prose {
  grid-column: 2;
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.75;
}

.about-content .prose p {
  margin: 0 0 1.5em;
}

.about-aside {
  grid-column: 3;
  align-self: start;
  padding-top: 16px;
  border-top: 5px solid var(--signal);
}

.about-aside p {
  margin: 0;
  font-family: var(--serif);
  font-size: 15px;
  font-style: italic;
}

.legal-page {
  width: min(calc(100% - 48px), 980px);
  min-height: 680px;
  margin: 0 auto;
  padding: 100px 0 130px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 100px;
}

.legal-page h1 {
  margin: 0;
  font-size: 68px;
  line-height: 1;
}

.legal-content {
  padding-top: 48px;
  border-top: 1px solid var(--ink);
  font-family: var(--serif);
  font-size: 18px;
}

.legal-content p {
  margin: 0 0 30px;
}

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

.footer-board {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--line-dark);
}

.footer-board > div {
  min-height: 126px;
  padding: 28px max(24px, calc((100vw - var(--content)) / 6));
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid var(--line-dark);
}

.footer-board > div:last-child {
  border-right: 0;
}

.board-label {
  color: #8d938c;
  font-size: 10px;
  font-weight: 900;
}

.footer-board strong {
  color: var(--signal);
  font-size: 18px;
}

.footer-bottom {
  width: min(calc(100% - 48px), var(--content));
  min-height: 110px;
  margin: 0 auto;
  padding: 28px 0;
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr;
  align-items: center;
  gap: 30px;
  color: #aeb3ad;
  font-size: 11px;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom nav {
  display: flex;
  justify-content: flex-end;
  gap: 18px;
}

.footer-bottom a {
  color: var(--white);
  text-decoration: none;
}

.footer-bottom a:hover {
  color: var(--signal);
}

.to-top {
  position: fixed;
  z-index: 90;
  right: 18px;
  bottom: 18px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 0;
  background: var(--signal);
  color: var(--ink);
  font-size: 22px;
  font-weight: 900;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.18);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .hero-content h1 {
    font-size: 82px;
  }

  .post-card-featured {
    grid-template-columns: 1fr 1fr;
    min-height: 500px;
  }

  .post-card-featured .post-card-image {
    min-height: 500px;
  }

  .post-card-featured .post-card-copy {
    padding: 38px;
  }

  .post-card-featured .post-card-copy h3 {
    font-size: 36px;
  }

  .article-header h1,
  .page-hero h1,
  .legal-page h1 {
    font-size: 56px;
  }

  .article-layout {
    grid-template-columns: minmax(0, var(--reading));
    justify-content: center;
  }

  .article-rail {
    position: static;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .rail-code {
    min-width: 120px;
  }

  .article-content figure {
    width: 100%;
    margin-left: 0;
  }

  .page-hero {
    min-height: 610px;
    grid-template-columns: 1fr 0.8fr;
    gap: 40px;
  }

  .about-content {
    grid-template-columns: minmax(0, 1fr) 190px;
  }

  .about-content .lead,
  .about-content .prose {
    grid-column: 1;
  }

  .about-aside {
    grid-column: 2;
    grid-row: 2;
  }
}

@media (max-width: 720px) {
  :root {
    --header-height: 64px;
  }

  body {
    font-size: 16px;
  }

  .header-inner,
  .latest-section,
  .archive-section,
  .article-header,
  .article-layout,
  .article-footer,
  .related,
  .page-hero,
  .about-content,
  .legal-page,
  .footer-bottom {
    width: calc(100% - 32px);
  }

  .nav-toggle {
    display: block;
  }

  .wordmark {
    gap: 8px;
    font-size: 22px;
  }

  .header-sign {
    width: 32px;
    height: 32px;
  }

  .site-nav {
    position: fixed;
    z-index: 99;
    top: var(--header-height);
    right: 0;
    bottom: 0;
    left: 0;
    height: auto;
    padding: 40px 24px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--ink);
  }

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

  .site-nav a {
    height: auto;
    padding: 20px 0;
    display: block;
    border-bottom: 1px solid var(--line-dark);
    font-size: 24px;
  }

  .site-nav a::after {
    display: none;
  }

  .home-hero {
    min-height: 500px;
    height: calc(100svh - 84px);
    max-height: 690px;
  }

  .home-hero-image {
    object-position: center 48%;
  }

  .hero-shade {
    background: linear-gradient(0deg, rgba(10, 11, 10, 0.9) 0%, rgba(10, 11, 10, 0.42) 64%, rgba(10, 11, 10, 0.16) 100%);
  }

  .hero-content {
    left: 16px;
    bottom: 82px;
  }

  .hero-content h1 {
    font-size: 58px;
  }

  .hero-content > p:last-child {
    font-size: 18px;
  }

  .hero-scroll {
    right: 16px;
    width: 104px;
    height: 62px;
  }

  .latest-section,
  .archive-section {
    padding: 72px 0;
  }

  .section-heading {
    margin-bottom: 30px;
  }

  .section-heading h2,
  .related h2 {
    font-size: 38px;
  }

  .post-card,
  .post-card-featured {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .post-card-image,
  .post-card-featured .post-card-image {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

  .post-card-copy,
  .post-card-featured .post-card-copy {
    min-height: 380px;
    padding: 28px 0 34px;
  }

  .post-card-featured .post-card-copy {
    min-height: 430px;
    padding: 28px;
  }

  .post-card-copy h3,
  .post-card-featured .post-card-copy h3 {
    font-size: 31px;
  }

  .post-card-featured {
    box-shadow: 6px 6px 0 var(--signal);
  }

  .archive-heading {
    display: block;
  }

  .search-field {
    width: 100%;
    margin: 12px 0 24px;
  }

  .article-shell {
    padding-top: 44px;
  }

  .article-header {
    padding-bottom: 45px;
  }

  .back-link {
    margin-bottom: 45px;
  }

  .article-header h1,
  .page-hero h1,
  .legal-page h1 {
    font-size: 43px;
  }

  .article-deck {
    font-size: 21px;
  }

  .article-layout {
    padding: 48px 0 70px;
    gap: 45px;
  }

  .article-content {
    font-size: 18px;
    line-height: 1.7;
  }

  .article-content h2 {
    font-size: 29px;
  }

  .article-content figure {
    width: calc(100vw - 32px);
    margin: 2.5em 0;
  }

  .post-navigation {
    grid-template-columns: 1fr;
  }

  .post-navigation a {
    min-height: 120px;
  }

  .post-navigation a + a {
    padding-left: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .related {
    margin-top: 80px;
    margin-bottom: 80px;
  }

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

  .related-grid article {
    min-height: 140px;
  }

  .related-grid article + article {
    padding-left: 0;
    border-left: 0;
  }

  .page-hero {
    min-height: 0;
    padding: 64px 0 0;
    grid-template-columns: 1fr;
  }

  .page-hero figure {
    height: 520px;
  }

  .about-content {
    margin: 70px auto 90px;
    display: block;
  }

  .about-content .lead {
    font-size: 23px;
  }

  .about-aside {
    margin-top: 50px;
  }

  .legal-page {
    min-height: 0;
    padding: 70px 0 90px;
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .legal-content {
    padding-top: 30px;
  }

  .footer-board {
    grid-template-columns: 1fr;
  }

  .footer-board > div {
    min-height: 96px;
    padding: 20px 24px;
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .footer-bottom {
    padding: 34px 0;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .footer-bottom nav {
    margin-top: 15px;
    justify-content: flex-start;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media print {
  .site-header,
  .site-footer,
  .article-rail,
  .post-navigation,
  .related,
  .to-top,
  .reading-progress {
    display: none !important;
  }

  body {
    background: #fff;
    color: #000;
    font-size: 12pt;
  }

  .article-header,
  .article-layout {
    width: 100%;
  }

  .article-layout {
    display: block;
    padding-top: 30px;
  }

  .article-content figure {
    width: 100%;
    margin-left: 0;
    break-inside: avoid;
  }
}
