/* ============================================================
   EvoAudio project page (light theme)

   Layout and component structure follow the AuK project page: a white canvas,
   one max-width container, rounded resource buttons, a sticky family rail over
   the demo grid, and a bare drag rail for the slider.

   The palette is the Tencent Hunyuan blue ramp, since the Hunyuan mark sits in
   the header, with a teal accent reserved for verified/answer states so
   "correct" never reads as just another blue.
   ============================================================ */

:root {
  color-scheme: light;

  --brand-blue: #0b57d0;
  --brand-blue-hover: #0943a8;
  --brand-cyan: #00a9e0;
  --brand-pale: #cfe0fb;
  --brand-deep: #0a2e6e;

  --verify: #0f7a63;
  --verify-soft: rgba(15, 122, 99, 0.1);

  --bg: #ffffff;
  --bg-soft: #f5f8fd;
  --bg-card: #ffffff;
  --bg-elev: #eef3fb;
  --bg-hover: #e4edfb;

  --rule: rgba(10, 46, 110, 0.14);
  --rule-strong: rgba(10, 46, 110, 0.3);

  --ink: #16233d;
  --ink-soft: rgba(22, 35, 61, 0.76);
  --ink-faint: rgba(22, 35, 61, 0.52);

  --link: var(--brand-blue);
  --link-hover: var(--brand-blue-hover);

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 18px;
  --container: 1152px;

  --fs-h2: 1.75rem;
  --fs-h3: 1.35rem;
  --fs-lede: 1rem;

  --font-display: "Google Sans", "Noto Sans", system-ui, sans-serif;
  --font-body: "Noto Sans", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", "Fira Code", ui-monospace, Menlo, monospace;
  /* The framework figure is lettered in Comic Sans, so the wordmark follows it.
     Comic Neue is the webfont stand-in for Linux and Android, which ship
     neither Comic Sans nor anything close to it. */
  --font-brand: "Comic Sans MS", "Comic Neue", "Chalkboard SE", cursive;

  --shadow-card: 0 10px 34px rgba(10, 46, 110, 0.1);

  /* Difficulty ramp: L1 calm blue through L5 warm red. Used by the slider
     fill and the per-card level chip so the two always agree. */
  --lvl-1: #2d7ff0;
  --lvl-2: #2aa3b8;
  --lvl-3: #d9a21b;
  --lvl-4: #e07a29;
  --lvl-5: #d2433f;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--link);
  text-decoration: none;
  transition: color 120ms ease;
}
a:hover {
  color: var(--link-hover);
  text-decoration: underline;
}

button {
  font-family: inherit;
  cursor: pointer;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: #fff;
  color: #000;
  padding: 0.5em 1em;
  z-index: 1000;
}
.skip-link:focus {
  top: 0;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* ============ Container ============= */
.container {
  width: 100%;
  margin: 0 auto;
  padding: 0 1.25rem;
  max-width: var(--container);
}

.section {
  padding: 4rem 0;
  border-top: 1px solid var(--rule);
  scroll-margin-top: 120px;
}
.section:first-of-type {
  border-top: none;
}
.section-title {
  margin-bottom: 1rem;
}
.has-text-centered {
  text-align: center;
}

/* ============ Type scale ============= */
.title {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.15;
  margin: 0 0 0.5em;
}
.title.is-3 {
  font-family: var(--font-display);
  font-size: var(--fs-h2);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.005em;
}
.section-lede {
  color: var(--ink-soft);
  font-size: var(--fs-lede);
  line-height: 1.65;
  max-width: 78ch;
  margin: 0 auto 2rem;
}
.content {
  color: var(--ink-soft);
  font-size: var(--fs-lede);
  line-height: 1.7;
}
.content p {
  margin: 0 0 1rem;
}
.has-text-justified {
  text-align: justify;
}

/* ============ Hero ============= */
.hero {
  position: relative;
  background: var(--bg);
  padding: 2.5rem 0 2rem;
  border-bottom: 1px solid var(--rule);
}
.hero__inner {
  text-align: center;
  padding: 0.5rem 0;
}
.publication-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  font-weight: 700;
  margin: 0;
  letter-spacing: -0.01em;
  color: var(--ink);
}
/* The wordmark picks up the mark's own blue-to-green ribbon. Every stop stays
   above 4:1 on white, so the gradient never costs the heading its contrast. */
.publication-title__brand {
  white-space: nowrap;
  font-family: var(--font-brand);
  /* Comic Sans is already loose, so it drops the display face's negative
     tracking. The 1.02em lines its x-height up with the rest of the heading;
     its taller ascenders are the face's own character and are left alone. */
  letter-spacing: 0;
  font-size: 1.02em;
}
@supports (-webkit-background-clip: text) or (background-clip: text) {
  .publication-title__brand {
    background-image: linear-gradient(
      100deg,
      #0b57d0 0%,
      #1b7fc5 38%,
      #1e7d72 68%,
      #2f8f56 100%
    );
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
}
.publication-title__brand::before {
  content: "";
  display: inline-block;
  width: 1.32em;
  height: 0.8em;
  margin-right: 0.14em;
  vertical-align: -0.08em;
  background: url("../assets/figures/label.png") center / contain no-repeat;
}
.publication-subtitle {
  margin: 0.9rem auto 0;
  max-width: 62ch;
  color: var(--ink-soft);
  font-size: 1.05rem;
}
.publication-authors {
  margin: 1.4rem 0 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.publication-links {
  margin: 1.5rem 0 0.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
}
.link-block {
  display: inline-block;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45em;
  height: 2.5em;
  padding: 0 1.1em;
  border: 1px solid var(--rule-strong);
  border-radius: 9999px;
  background: #f2f6fa;
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.95rem;
  transition: background 120ms ease, border-color 120ms ease;
}
.button:hover {
  background: var(--bg-hover);
  border-color: rgba(10, 46, 110, 0.45);
  text-decoration: none;
}
.button.is-disabled {
  opacity: 0.55;
  cursor: not-allowed;
  background: #f6f8fa;
  color: var(--ink-soft);
  border-color: rgba(10, 46, 110, 0.15);
}
.button .icon {
  display: inline-flex;
  align-items: center;
}

/* ============ Affiliations ============= */
.affiliation-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.6rem;
  flex-wrap: wrap;
  margin: 1.9rem 0 0;
}
.affiliation-row img {
  width: auto;
  opacity: 0.94;
}
/* Heights are set per mark rather than shared: each logo has a different
   amount of padding baked into its artwork, so a single max-height leaves
   them looking mismatched. */
.affiliation-row img[data-logo="cuhksz"] {
  max-height: 46px;
}
.affiliation-row img[data-logo="tsinghua"] {
  /* The only file the university publishes is 180x58, so it is held a little
     smaller than its neighbours to stay sharp. */
  max-height: 36px;
}
.affiliation-row img[data-logo="hunyuan"] {
  max-height: 30px;
}

/* ============ Figures ============= */
.figure {
  margin: 2.5rem auto 0;
  text-align: center;
}
.figure img {
  margin: 0 auto;
  width: 100%;
}
.figure--framework img {
  max-width: 1120px;
}
.figure figcaption {
  margin: 1.1rem auto 0;
  color: var(--ink-faint);
  font-size: 0.85rem;
  line-height: 1.6;
  max-width: 96ch;
  text-align: justify;
  /* Justification without hyphenation opens rivers of whitespace at this
     measure, so let the browser break long words. */
  hyphens: auto;
}
.figure figcaption strong {
  color: var(--ink-soft);
}

/* Charts that ship in two aspect ratios; CSS picks one. A single wide SVG
   scaled to phone width leaves the axis labels unreadable. */
.figure--responsive .is-wide {
  display: block;
}
.figure--responsive .is-tall {
  display: none;
}
@media (max-width: 720px) {
  .figure--responsive .is-wide {
    display: none;
  }
  .figure--responsive .is-tall {
    display: block;
  }
}

/* ============ Stat strip ============= */
.stat-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin: 2.25rem 0 0;
}
@media (min-width: 760px) {
  .stat-strip {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
.stat {
  background: var(--bg-soft);
  border: 1px solid var(--rule);
  border-radius: var(--radius-md);
  padding: 0.9rem 1rem;
  text-align: center;
}
.stat__value {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--brand-blue);
  line-height: 1.1;
}
.stat__label {
  margin-top: 0.3rem;
  font-size: 0.8rem;
  color: var(--ink-faint);
  line-height: 1.4;
}

/* ============ Demos ============= */
.demos {
  background: var(--bg-soft);
  padding: 3.5rem 0 4rem;
  border-top: 1px solid var(--rule);
}
.demos__intro {
  margin-bottom: 1.5rem;
}

.family-rail {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  flex-wrap: nowrap;
  gap: 0.5rem;
  padding: 0.7rem max(1.25rem, calc((100vw - var(--container)) / 2 + 1.25rem));
  margin: 0 0 1.5rem;
  background: rgba(245, 248, 253, 0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--rule);
  overflow-x: auto;
  scrollbar-width: thin;
}
.family-rail button {
  flex: 0 0 auto;
  padding: 0.5em 1.1em;
  border-radius: 9999px;
  border: 1px solid var(--rule);
  color: var(--ink-soft);
  font-size: 0.98rem;
  font-weight: 500;
  font-family: var(--font-display);
  background: var(--bg);
  white-space: nowrap;
  transition: background 120ms ease, color 120ms ease, border-color 120ms ease;
}
.family-rail button:hover {
  color: var(--brand-blue);
  border-color: var(--brand-cyan);
}
.family-rail button[aria-selected="true"] {
  color: #fff;
  background: var(--brand-blue);
  border-color: var(--brand-blue);
}
.family-rail button .count {
  opacity: 0.65;
  font-size: 0.82em;
  margin-left: 0.35em;
}

/* --- difficulty slider --------------------------------------------------- */
.difficulty {
  background: var(--bg-card);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: 1.15rem 1.5rem 1.25rem;
  margin: 0 0 1.75rem;
  box-shadow: 0 2px 12px rgba(10, 46, 110, 0.05);
}
.difficulty__head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem 1rem;
  margin-bottom: 0.2rem;
}
.difficulty__title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
  color: var(--ink);
}
.difficulty__readout {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: var(--ink-soft);
}
.difficulty__readout strong {
  color: var(--ink);
}
.difficulty__note {
  margin: 0 0 1.1rem;
  font-size: 0.82rem;
  color: var(--ink-faint);
  line-height: 1.55;
  max-width: 92ch;
}

.slider {
  position: relative;
  display: block;
  width: 100%;
  padding: 0.4rem 0.6rem 0;
}
.slider__labels {
  position: relative;
  height: 2.6rem;
  margin-bottom: 0.35rem;
}
.slider__stop {
  position: absolute;
  bottom: 0;
  transform: translateX(-50%);
  background: transparent;
  border: 0;
  padding: 0.1rem 0.25rem;
  color: var(--ink-faint);
  font-family: var(--font-display);
  font-size: 0.74rem;
  line-height: 1.25;
  cursor: pointer;
  white-space: nowrap;
  text-align: center;
  transition: color 120ms ease;
}
/* The end labels sit at 0% and 100%, so centring them on their tick pushes
   half the text outside the card -- "Near-threshold" is wider than the margin.
   They hug the rail ends instead; the inner three stay centred on their ticks. */
.slider__stop:first-child {
  transform: none;
  text-align: left;
}
.slider__stop:last-child {
  transform: translateX(-100%);
  text-align: right;
}
.slider__stop b {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
}
.slider__stop small {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.66rem;
  opacity: 0.8;
}
.slider__stop:hover {
  color: var(--ink);
}
.slider__stop[aria-pressed="true"] {
  color: var(--ink);
}
.slider__stop[aria-pressed="true"] b {
  color: var(--brand-blue);
}
.slider__rail {
  position: relative;
  height: 20px;
  display: flex;
  align-items: center;
  /* A grab cursor is the affordance that tells people the thumb moves; a
     plain pointer reads as "click a stop" and the drag goes unnoticed. */
  cursor: grab;
  touch-action: none;
  user-select: none;
}
.slider__rail:active {
  cursor: grabbing;
}
.slider__rail:focus-visible {
  outline: 2px solid var(--brand-cyan);
  outline-offset: 6px;
  border-radius: 9999px;
}
.slider__rail::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 5px;
  background: rgba(10, 46, 110, 0.12);
  border-radius: 9999px;
  transform: translateY(-50%);
}
.slider__ticks {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}
.slider__tick {
  position: absolute;
  top: calc(50% + 6px);
  width: 1px;
  height: 4px;
  margin-left: -0.5px;
  background: rgba(10, 46, 110, 0.22);
}
.slider__fill {
  position: absolute;
  left: 0;
  top: 50%;
  height: 5px;
  background: linear-gradient(90deg, var(--lvl-1), var(--lvl-3), var(--lvl-5));
  border-radius: 9999px;
  transform: translateY(-50%);
  pointer-events: none;
}
.slider__thumb {
  position: absolute;
  top: 50%;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  border: 4px solid var(--brand-blue);
  box-shadow: 0 1px 5px rgba(10, 46, 110, 0.28);
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 2;
  transition: border-color 140ms ease;
}

/* --- cards --------------------------------------------------------------- */
.family-intro {
  margin: 0 0 1.25rem;
}
.family-intro h3 {
  font-family: var(--font-display);
  font-size: var(--fs-h3);
  font-weight: 700;
  margin: 0 0 0.35rem;
  color: var(--ink);
}
.family-intro p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
  max-width: 88ch;
}

.demo-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 980px) {
  .demo-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.demo-empty {
  background: var(--bg-card);
  border: 1px dashed var(--rule-strong);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.6;
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--rule);
  border-radius: var(--radius-md);
  padding: 1rem 1.2rem 1.15rem;
  box-shadow: 0 2px 12px rgba(10, 46, 110, 0.05);
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  flex-wrap: wrap;
}
.card__skill {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.02em;
  color: var(--ink-faint);
}
.card__badges {
  display: flex;
  gap: 0.35rem;
  flex-wrap: wrap;
}
.chip {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 0.18em 0.6em;
  border-radius: 9999px;
  border: 1px solid var(--rule);
  color: var(--ink-soft);
  background: var(--bg);
  white-space: nowrap;
}
.chip--level {
  color: #fff;
  border-color: transparent;
}
.chip--level[data-level="1"] { background: var(--lvl-1); }
.chip--level[data-level="2"] { background: var(--lvl-2); }
.chip--level[data-level="3"] { background: var(--lvl-3); }
.chip--level[data-level="4"] { background: var(--lvl-4); }
.chip--level[data-level="5"] { background: var(--lvl-5); }
.chip--dur {
  font-family: var(--font-mono);
  font-weight: 500;
}

.card__question {
  margin: 0;
  font-size: 0.97rem;
  line-height: 1.55;
  color: var(--ink);
  font-weight: 500;
}

.card__clip-label {
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: -0.35rem;
}

.card__options {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.3rem;
}
.card__options li {
  display: flex;
  gap: 0.5em;
  align-items: flex-start;
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.45;
  padding: 0.3em 0.5em;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
}
.card__options li b {
  font-family: var(--font-mono);
  font-weight: 600;
  color: var(--ink-faint);
  flex: 0 0 1.2em;
}
.card.is-revealed .card__options li[data-correct="true"] {
  background: var(--verify-soft);
  border-color: rgba(15, 122, 99, 0.3);
  color: var(--ink);
}
.card.is-revealed .card__options li[data-correct="true"] b {
  color: var(--verify);
}

.card__actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}
.reveal-btn {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 500;
  padding: 0.35em 0.95em;
  border-radius: 9999px;
  border: 1px solid var(--rule-strong);
  background: var(--bg);
  color: var(--ink-soft);
  transition: background 120ms ease, color 120ms ease, border-color 120ms ease;
}
.reveal-btn:hover {
  background: var(--bg-hover);
  color: var(--ink);
}
.card.is-revealed .reveal-btn {
  background: var(--verify);
  border-color: var(--verify);
  color: #fff;
}

.card__detail {
  border-top: 1px solid var(--rule);
  padding-top: 0.7rem;
  display: none;
  flex-direction: column;
  gap: 0.55rem;
}
.card.is-revealed .card__detail {
  display: flex;
}

.detail-row {
  font-size: 0.83rem;
  line-height: 1.55;
  color: var(--ink-soft);
}
.detail-row__label {
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-faint);
  display: block;
  margin-bottom: 0.2rem;
}
.tool-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
}
.tool-chip {
  font-size: 0.72rem;
  font-family: var(--font-mono);
  padding: 0.2em 0.55em;
  border-radius: var(--radius-sm);
  background: var(--bg-elev);
  border: 1px solid var(--rule);
  color: var(--ink-soft);
  white-space: nowrap;
}
.tool-chip[data-core="true"] {
  background: rgba(11, 87, 208, 0.08);
  border-color: rgba(11, 87, 208, 0.22);
  color: var(--brand-deep);
}
.evidence {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  line-height: 1.6;
  color: var(--ink-soft);
  background: var(--bg-soft);
  border-left: 2px solid var(--brand-pale);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 0.5rem 0.7rem;
  overflow-x: auto;
}
.evidence div + div {
  margin-top: 0.2rem;
}
.transcript {
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--ink-soft);
  padding-left: 0.7rem;
  border-left: 2px solid var(--brand-pale);
}

/* ============ Audio player ============= */
.player {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.player__control {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.player__play {
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--brand-blue);
  color: #fff;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 120ms ease;
}
.player__play svg {
  width: 15px;
  height: 15px;
}
.player__play:hover {
  background: var(--brand-blue-hover);
}
.player__play:focus-visible {
  outline: 2px solid var(--brand-cyan);
  outline-offset: 3px;
}
.player__scrubber {
  position: relative;
  flex: 1 1 auto;
  height: 46px;
  display: flex;
  align-items: center;
  cursor: pointer;
  outline: none;
}
.player__scrubber:focus-visible {
  outline: 2px solid var(--brand-cyan);
  outline-offset: 4px;
  border-radius: 6px;
}
.player__wave {
  width: 100%;
  height: 100%;
  display: block;
}
.player__time {
  font-family: var(--font-mono);
  font-size: 0.76rem;
  color: var(--ink-faint);
  min-width: 78px;
  text-align: right;
}
.player__download {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 24px;
  padding: 0;
  background: transparent;
  border: 1px solid var(--rule);
  border-radius: 6px;
  color: var(--ink-faint);
  transition: color 120ms ease, border-color 120ms ease;
}
.player__download:hover {
  color: var(--brand-blue);
  border-color: var(--brand-cyan);
}

/* ============ Footer ============= */
.footer {
  background: var(--bg-soft);
  border-top: 1px solid var(--rule);
  padding: 2.5rem 0;
}
.footer__legal {
  color: var(--ink-faint);
  font-size: 0.85rem;
  margin: 0;
  text-align: center;
  line-height: 1.7;
}

/* ============ Responsive ============= */
@media (max-width: 768px) {
  .hero {
    padding: 1.5rem 0 1.5rem;
  }
  .section {
    padding: 3rem 0;
  }
  .demo-list {
    grid-template-columns: 1fr;
  }
  .difficulty {
    padding: 1rem 1rem 1.15rem;
  }
  .slider {
    padding: 0.4rem 0.2rem 0;
  }
  .slider__stop {
    font-size: 0.66rem;
  }
  /* Five names do not fit across a phone: "Subtle" and "Near-threshold"
     collide. The ticks keep their L1-L5 markers and the readout above the
     rail names whichever level is selected, so nothing is lost. */
  .slider__stop-name {
    display: none;
  }
  .slider__labels {
    height: 1.3rem;
  }
  .affiliation-row {
    gap: 1.6rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
    animation: none !important;
  }
}
