:root {
  --ink: #17232d;
  --ink-soft: #394957;
  --muted: #667682;
  --paper: #ffffff;
  --mist: #f4f7f8;
  --blue-gray: #e5edf3;
  --blue: #2d6f9f;
  --blue-deep: #173a55;
  --teal: #0b8588;
  --teal-soft: #dceff0;
  --purple: #5c2983;
  --purple-soft: #e7dcef;
  --warm: #c45a12;
  --warm-soft: #f9eadb;
  --green: #4f8f5b;
  --line: #d9e0e4;
  --line-dark: #bcc8cf;
  --shadow: 0 18px 45px rgba(23, 35, 45, 0.11);
  --shadow-soft: 0 8px 24px rgba(23, 35, 45, 0.08);
  --radius: 6px;
  --header-height: 64px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 16px);
}

body {
  margin: 0;
  overflow-x: hidden;
  overflow-x: clip;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--blue);
}

a:hover {
  color: var(--purple);
}

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

.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: 8px;
  left: 8px;
  padding: 8px 12px;
  color: white;
  background: var(--ink);
  transform: translateY(-140%);
}

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

.container-main,
.container-wide {
  width: min(100% - 40px, 1140px);
  margin: 0 auto;
}

.container-wide {
  width: min(100% - 40px, 1320px);
}

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(188, 200, 207, 0.75);
  backdrop-filter: blur(12px);
}

.site-nav {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  height: 100%;
  gap: 28px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--ink);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 0;
}

.brand:hover {
  color: var(--teal);
}

.brand img,
.footer-brand img {
  flex: 0 0 auto;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 28px;
}

.nav-links a {
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 650;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--blue);
}

.nav-actions {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}

.nav-icon,
.nav-toggle,
.scroll-top,
.lightbox-close {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  padding: 0;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line-dark);
  border-radius: 50%;
  cursor: pointer;
}

.nav-icon:hover,
.nav-toggle:hover,
.scroll-top:hover,
.lightbox-close:hover {
  color: white;
  background: var(--blue-deep);
  border-color: var(--blue-deep);
}

.hf-logo {
  display: block;
  width: 21px;
  height: auto;
}

.resource-button .hf-logo {
  width: 19px;
}

.nav-toggle {
  display: none;
  justify-self: end;
}

.project-hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: min(900px, 94vh);
  padding: calc(var(--header-height) + 58px) 0 64px;
  overflow: hidden;
  background: #fbfcfd;
  border-bottom: 1px solid var(--line);
}

.hero-backdrop {
  display: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.project-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: var(--blue-deep);
  font-size: 13px;
  font-weight: 750;
  text-transform: uppercase;
}

.project-hero h1 {
  max-width: 1060px;
  margin: 0 auto;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 64px;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: 0;
}

.seed-word {
  color: var(--teal);
}

.hero-statement {
  max-width: 790px;
  margin: 23px auto 24px;
  color: var(--ink-soft);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 27px;
  line-height: 1.35;
}

.authors {
  display: flex;
  max-width: 1040px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
  column-gap: 17px;
  row-gap: 4px;
  color: var(--ink-soft);
  font-size: 17px;
}

.authors strong {
  color: var(--blue-deep);
}

.authors a strong {
  border-bottom: 1px solid rgba(23, 58, 85, 0.35);
}

.authors a:hover strong {
  color: var(--purple);
  border-bottom-color: var(--purple);
}

sup {
  color: var(--purple);
  font-weight: 700;
}

.affiliations {
  display: flex;
  max-width: 980px;
  margin: 14px auto 0;
  flex-wrap: wrap;
  justify-content: center;
  column-gap: 22px;
  row-gap: 2px;
  color: var(--muted);
  font-size: 14px;
}

.author-notes {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.resource-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}

.resource-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 112px;
  min-height: 44px;
  gap: 9px;
  padding: 9px 17px;
  color: var(--ink);
  background: white;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(23, 35, 45, 0.04);
}

.resource-button:hover {
  color: var(--blue-deep);
  border-color: var(--blue);
  transform: translateY(-1px);
}

.resource-button.primary {
  color: white;
  background: var(--blue-deep);
  border-color: var(--blue-deep);
}

.resource-button.primary:hover {
  color: white;
  background: var(--blue);
}

.hero-principles {
  display: flex;
  max-width: 780px;
  margin: 30px auto 0;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-principles span {
  padding: 6px 11px;
  color: var(--ink-soft);
  background: rgba(229, 237, 243, 0.8);
  border: 1px solid rgba(188, 200, 207, 0.82);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 650;
}

.section-band {
  padding: 94px 0;
}

.lead-result {
  padding: 54px 0 68px;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.lead-result .result-figure {
  margin-top: 0;
}

.band-white {
  background: var(--paper);
}

.band-method {
  background: #f8f6fa;
  border-top: 1px solid #e5deea;
  border-bottom: 1px solid #e5deea;
}

.band-evidence {
  background: var(--mist);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.band-citation {
  color: white;
  background: var(--blue-deep);
}

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

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  align-items: end;
  gap: 58px;
}

.centered-heading {
  max-width: 800px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.eyebrow {
  margin: 0 0 9px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.section-heading h2,
.multimodal-copy h2,
.citation-layout h2 {
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 44px;
  line-height: 1.18;
  letter-spacing: 0;
}

.section-heading > p:not(.eyebrow),
.heading-summary {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.split-heading .heading-summary {
  margin: 0;
}

.overview-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.55fr);
  gap: 70px;
  align-items: start;
}

.abstract-copy h3 {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: 19px;
}

.abstract-copy p {
  margin: 0 0 15px;
  color: var(--ink-soft);
  font-size: 17px;
}

.core-insight {
  padding: 8px 0 8px 25px;
  border-left: 4px solid var(--purple);
}

.insight-label {
  margin: 0 0 12px;
  color: var(--purple);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.core-insight blockquote {
  margin: 0 0 18px;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 23px;
  line-height: 1.42;
}

.core-insight > p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.requirement-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 60px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.requirement-item {
  min-height: 180px;
  padding: 28px 32px;
  background: white;
}

.requirement-number {
  display: block;
  margin-bottom: 18px;
  color: var(--line-dark);
  font-size: 13px;
  font-weight: 800;
}

.requirement-item h3 {
  margin: 0 0 7px;
  color: var(--blue-deep);
  font-size: 20px;
}

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

.method-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1140px;
  margin: 0 auto 36px;
  padding: 0;
  list-style: none;
  border-top: 1px solid #d6cadf;
  border-bottom: 1px solid #d6cadf;
}

.method-steps li {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 10px;
  align-items: start;
  min-height: 98px;
  padding: 20px 18px;
  border-right: 1px solid #d6cadf;
}

.method-steps li:last-child {
  border-right: 0;
}

.method-steps li > span {
  display: grid;
  place-items: center;
  width: 29px;
  height: 29px;
  color: white;
  background: var(--purple);
  border-radius: 50%;
  font-weight: 800;
}

.method-steps strong,
.method-steps small {
  display: block;
}

.method-steps strong {
  color: var(--ink);
  font-size: 16px;
}

.method-steps small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
}

.paper-figure,
.evidence-item,
.sokoban-figure {
  margin: 0;
}

.paper-figure {
  max-width: 1180px;
  margin-right: auto;
  margin-left: auto;
}

.figure-zoom {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: zoom-in;
  box-shadow: var(--shadow-soft);
  transform: translateY(0) scale(1);
  transform-origin: center;
  transition:
    transform 280ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 280ms ease,
    border-color 220ms ease;
  will-change: transform;
}

.figure-zoom img {
  width: 100%;
  height: auto;
}

@media (hover: hover) and (pointer: fine) {
  .figure-zoom:hover,
  .figure-zoom:focus-visible {
    z-index: 5;
    border-color: rgba(45, 111, 159, 0.62);
    box-shadow: 0 22px 54px rgba(23, 35, 45, 0.2);
    transform: translateY(-9px) scale(1.5);
  }

  .lead-result .figure-zoom:hover,
  .lead-result .figure-zoom:focus-visible,
  .framework-figure .figure-zoom:hover,
  .framework-figure .figure-zoom:focus-visible {
    transform: translateY(-9px) scale(1.1);
  }

  .case-figure .figure-zoom:hover,
  .case-figure .figure-zoom:focus-visible {
    transform: translateY(-9px) scale(1.4);
  }
}

.zoom-indicator {
  position: absolute;
  top: 11px;
  right: 11px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.93);
  border: 1px solid var(--line);
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(23, 35, 45, 0.1);
}

figcaption {
  max-width: 940px;
  margin: 14px auto 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
  text-align: center;
}

.framework-figure .figure-zoom {
  background: white;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 40px;
}

.metric-card {
  position: relative;
  min-height: 146px;
  padding: 24px 22px 20px;
  overflow: hidden;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.metric-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: var(--blue);
}

.metric-card.purple-accent::before { background: var(--purple); }
.metric-card.teal-accent::before { background: var(--teal); }
.metric-card.warm-accent::before { background: var(--warm); }

.metric-card strong,
.metric-card span,
.metric-card small {
  display: block;
}

.metric-card strong {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 38px;
  line-height: 1;
}

.metric-card span {
  margin-top: 13px;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 700;
}

.metric-card small {
  color: var(--muted);
  font-size: 12px;
}

.result-figure {
  margin-top: 10px;
}

.finding-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
  margin-top: 50px;
}

.finding-list article {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 13px;
}

.finding-mark {
  display: grid;
  place-items: center;
  width: 31px;
  height: 31px;
  color: white;
  background: var(--teal);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 800;
}

.finding-list h3 {
  margin: 1px 0 8px;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.35;
}

.finding-list p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.evidence-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.evidence-item {
  padding: 22px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.evidence-item .figure-zoom {
  box-shadow: none;
}

.evidence-item figcaption {
  margin: 14px 4px 0;
  text-align: left;
}

.dynamics-figure {
  max-width: 900px;
  margin-top: 38px;
}

.dynamics-figure .figure-zoom {
  padding: 18px;
}

.multimodal-subsection {
  margin-top: 76px;
  padding-top: 64px;
  border-top: 1px solid var(--line);
}

.multimodal-layout {
  display: grid;
  grid-template-columns: minmax(340px, 0.8fr) minmax(0, 1.2fr);
  gap: 60px;
  align-items: center;
}

.multimodal-copy > p:not(.eyebrow) {
  margin: 18px 0 0;
  color: var(--ink-soft);
  font-size: 16px;
}

.vision-results {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 32px;
  background: #cddde4;
  border-top: 1px solid #cddde4;
  border-bottom: 1px solid #cddde4;
}

.vision-results div {
  padding: 16px 13px;
  background: #eef5f8;
}

.vision-results span,
.vision-results strong,
.vision-results small {
  display: block;
}

.vision-results span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 750;
  text-transform: uppercase;
}

.vision-results strong {
  margin-top: 3px;
  color: var(--blue-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 27px;
}

.vision-results small {
  color: var(--teal);
  font-size: 10px;
  font-weight: 700;
}

.sokoban-figure .figure-zoom {
  padding: 18px;
}

.case-figure {
  max-width: 1100px;
}

.citation-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.55fr) minmax(0, 1.45fr);
  gap: 70px;
  align-items: start;
}

.citation-layout .eyebrow {
  color: #82d0ca;
}

.citation-layout h2 {
  color: white;
}

.citation-layout > div:first-child > p:not(.eyebrow) {
  color: #cedbe3;
}

.citation-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 22px;
}

.text-link {
  color: white;
  font-size: 14px;
  font-weight: 700;
}

.text-link:hover {
  color: #82d0ca;
}

.text-link svg {
  margin-left: 3px;
  font-size: 11px;
}

.bibtex-block {
  overflow: hidden;
  background: #102b40;
  border: 1px solid #35566d;
  border-radius: var(--radius);
}

.bibtex-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 48px;
  padding: 8px 12px 8px 18px;
  color: #dbe7ee;
  border-bottom: 1px solid #35566d;
  font-size: 13px;
  font-weight: 750;
}

.copy-button {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 10px;
  color: #dbe7ee;
  background: transparent;
  border: 1px solid #557187;
  border-radius: 4px;
  cursor: pointer;
  font-size: 12px;
}

.copy-button:hover,
.copy-button.copied {
  color: var(--blue-deep);
  background: #82d0ca;
  border-color: #82d0ca;
}

.bibtex-block pre {
  margin: 0;
  padding: 20px;
  overflow-x: auto;
  color: #e9f0f4;
  background: transparent;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 12px;
  line-height: 1.55;
  white-space: pre;
}

.site-footer {
  padding: 30px 0;
  color: var(--muted);
  background: #f7f9fa;
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

.site-footer p {
  margin: 0;
  font-size: 12px;
  text-align: center;
}

.template-credit {
  text-align: right !important;
}

.scroll-top {
  position: fixed;
  z-index: 80;
  right: 20px;
  bottom: 20px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 180ms ease, transform 180ms ease;
  box-shadow: var(--shadow-soft);
}

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

.lightbox {
  position: fixed;
  z-index: 500;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 54px 24px 24px;
  background: rgba(10, 18, 24, 0.92);
}

.lightbox[hidden] {
  display: none;
}

.lightbox img {
  max-width: min(1500px, 96vw);
  max-height: 90vh;
  object-fit: contain;
  background: white;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.4);
}

.lightbox-close {
  position: absolute;
  top: 14px;
  right: 18px;
  color: white;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.5);
}

body.lightbox-open {
  overflow: hidden;
}

@media (max-width: 1020px) {
  .project-hero h1 {
    font-size: 52px;
  }

  .hero-statement {
    font-size: 24px;
  }

  .section-heading h2,
  .multimodal-copy h2,
  .citation-layout h2 {
    font-size: 40px;
  }

  .nav-links {
    gap: 18px;
  }

  .split-heading,
  .overview-grid,
  .multimodal-layout,
  .citation-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .split-heading .heading-summary {
    max-width: 760px;
  }

  .method-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .method-steps li:nth-child(2) {
    border-right: 0;
  }

  .method-steps li:nth-child(-n+2) {
    border-bottom: 1px solid #d6cadf;
  }

  .metric-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .template-credit {
    grid-column: 1 / -1;
    text-align: left !important;
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 58px;
  }

  .container-main,
  .container-wide {
    width: min(100% - 28px, 1140px);
  }

  .site-nav {
    grid-template-columns: auto 1fr auto;
    gap: 10px;
  }

  .nav-toggle {
    display: inline-grid;
  }

  .nav-actions {
    display: none;
  }

  .nav-links {
    position: absolute;
    top: calc(var(--header-height) - 1px);
    right: 14px;
    left: 14px;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 8px;
    background: white;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

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

  .nav-links a {
    padding: 10px 12px;
  }

  .project-hero {
    min-height: auto;
    padding: calc(var(--header-height) + 26px) 0 30px;
  }

  .project-kicker {
    gap: 7px;
    margin-bottom: 13px;
    font-size: 10px;
  }

  .project-kicker img {
    width: 23px;
    height: auto;
  }

  .project-hero h1 {
    font-size: 34px;
    line-height: 1.04;
  }

  .section-heading h2,
  .multimodal-copy h2,
  .citation-layout h2 {
    font-size: 34px;
  }

  .hero-statement {
    margin: 14px auto 15px;
    font-size: 18px;
    line-height: 1.3;
  }

  .authors {
    column-gap: 9px;
    row-gap: 1px;
    font-size: 13px;
    line-height: 1.45;
  }

  .affiliations {
    display: flex;
    margin-top: 9px;
    column-gap: 10px;
    row-gap: 0;
    font-size: 11px;
    line-height: 1.4;
  }

  .author-notes {
    margin-top: 4px;
    font-size: 10px;
  }

  .resource-links {
    flex-wrap: nowrap;
    gap: 5px;
    margin-top: 17px;
  }

  .resource-button {
    min-width: 0;
    min-height: 38px;
    flex: 1 1 0;
    gap: 6px;
    padding: 7px 5px;
    font-size: 11px;
  }

  .hero-principles {
    gap: 4px;
    margin-top: 16px;
  }

  .hero-principles span {
    padding: 4px 7px;
    font-size: 9px;
  }

  .section-band {
    padding: 68px 0;
  }

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

  .overview-grid {
    gap: 28px;
  }

  .requirement-grid,
  .method-steps,
  .metric-grid,
  .finding-list,
  .evidence-grid,
  .vision-results {
    grid-template-columns: 1fr;
  }

  .requirement-item {
    min-height: 0;
  }

  .method-steps li {
    border-right: 0;
    border-bottom: 1px solid #d6cadf;
  }

  .method-steps li:last-child {
    border-bottom: 0;
  }

  .metric-card {
    min-height: 120px;
  }

  .finding-list {
    gap: 24px;
  }

  .evidence-item {
    padding: 12px;
  }

  .dynamics-figure .figure-zoom,
  .sokoban-figure .figure-zoom {
    padding: 8px;
  }

  .citation-layout {
    gap: 26px;
  }

  .bibtex-block pre {
    font-size: 10px;
  }

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

  .site-footer p,
  .template-credit {
    text-align: left !important;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
