:root {
  --bg: #f7f4ee;
  --surface: #ffffff;
  --surface-soft: #fbf8f3;
  --ink: #27231f;
  --muted: #6f675f;
  --line: #e5ddd3;
  --wine: #7c2f3b;
  --wine-dark: #5d202b;
  --wine-soft: #f7e9ec;
  --leaf: #3f654e;
  --leaf-soft: #eaf2ec;
  --gold: #a87939;
  --gold-soft: #f5ecdd;
  --navy: #253047;
  --shadow-sm: 0 8px 24px rgba(60, 43, 31, 0.07);
  --shadow-md: 0 18px 45px rgba(60, 43, 31, 0.11);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: Pretendard, "Noto Sans KR", "Apple SD Gothic Neo", system-ui, -apple-system, sans-serif;
  line-height: 1.68;
  word-break: keep-all;
}

img { max-width: 100%; }
a { color: inherit; }
h1, h2, h3, h4, p, dl, dd { margin-top: 0; }
button, a { font: inherit; }

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

.section-kicker,
.eyebrow {
  margin-bottom: 8px;
  color: var(--wine);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.14em;
}

.section-heading { margin-bottom: 30px; }
.section-heading h2 {
  margin-bottom: 10px;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.2;
  letter-spacing: -0.045em;
}
.section-heading > p:last-child { margin-bottom: 0; color: var(--muted); }
.section-heading--center { max-width: 760px; margin-inline: auto; text-align: center; }
.section-heading--split {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  gap: 38px;
  align-items: end;
}
.section-heading--split > p { margin-bottom: 4px; color: var(--muted); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 19px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 150ms ease, box-shadow 150ms ease, background 150ms ease, border-color 150ms ease;
}
.button:hover,
.button:focus-visible { transform: translateY(-2px); }
.button--primary { color: #fff; background: var(--wine); box-shadow: 0 9px 24px rgba(124, 47, 59, 0.22); }
.button--primary:hover,
.button--primary:focus-visible { background: var(--wine-dark); }
.button--ghost { border-color: #d7c8bc; background: rgba(255,255,255,0.72); }
.button--ghost:hover,
.button--ghost:focus-visible { border-color: #bca99a; background: #fff; }
.button--dark { color: #fff; background: var(--navy); }
.button--dark:hover,
.button--dark:focus-visible { background: #151d2d; }

.site-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 8% 8%, rgba(124, 47, 59, 0.10), transparent 28rem),
    radial-gradient(circle at 90% 20%, rgba(168, 121, 57, 0.10), transparent 25rem),
    linear-gradient(180deg, #fffdf9 0%, #f9f5ef 100%);
}

.topbar {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid rgba(124, 47, 59, 0.10);
}
.school-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 850;
  text-decoration: none;
  letter-spacing: -0.02em;
}
.school-brand__mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 13px;
  color: #fff;
  background: var(--wine);
  font-size: 0.76rem;
  font-weight: 900;
}
.topbar__links { display: flex; align-items: center; gap: 24px; }
.topbar__links a {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 750;
  text-decoration: none;
}
.topbar__links a:hover,
.topbar__links a:focus-visible { color: var(--wine); }

.hero-shell {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.72fr);
  gap: clamp(42px, 7vw, 84px);
  align-items: center;
  padding: 72px 0 80px;
}
.hero-copy { min-width: 0; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.hero-badges span {
  padding: 7px 11px;
  border: 1px solid #ddcfc3;
  border-radius: 999px;
  color: #63564c;
  background: rgba(255,255,255,0.7);
  font-size: 0.78rem;
  font-weight: 750;
}
.hero-copy h1 {
  margin-bottom: 23px;
  font-size: clamp(2.6rem, 6.4vw, 5.2rem);
  line-height: 1.02;
  letter-spacing: -0.065em;
  font-weight: 850;
}
.hero-copy h1 strong { color: var(--wine); font-weight: 900; }
.hero-lead {
  max-width: 720px;
  margin-bottom: 28px;
  color: #61584f;
  font-size: clamp(1rem, 2vw, 1.13rem);
}
.hero-lead strong { color: var(--ink); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 32px; }
.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0;
  border-top: 1px solid #ded3c9;
  border-bottom: 1px solid #ded3c9;
}
.hero-facts > div { padding: 16px 14px; }
.hero-facts > div + div { border-left: 1px solid #ded3c9; }
.hero-facts dt {
  margin-bottom: 2px;
  color: var(--wine);
  font-size: 0.73rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}
.hero-facts dd { margin: 0; font-size: 0.9rem; font-weight: 750; }

.cover-card {
  margin: 0;
  padding: 15px;
  border: 1px solid #d9cbbd;
  border-radius: 30px;
  background: rgba(255,255,255,0.86);
  box-shadow: var(--shadow-md);
  transform: rotate(1deg);
}
.cover-card__frame {
  display: grid;
  place-items: center;
  min-height: 420px;
  overflow: hidden;
  border-radius: 20px;
  background: #eee8df;
}
.cover-card img {
  display: block;
  width: 100%;
  max-height: 540px;
  object-fit: contain;
  background: #eee8df;
}
.cover-card figcaption { padding: 15px 8px 3px; }
.cover-card figcaption span {
  display: block;
  margin-bottom: 2px;
  color: var(--wine);
  font-size: 0.75rem;
  font-weight: 850;
}
.cover-card figcaption strong { font-size: 0.96rem; letter-spacing: -0.02em; }

main { padding: 66px 0 90px; }

.project-story {
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}
.project-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.project-step {
  position: relative;
  min-height: 250px;
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface-soft);
}
.project-step--accent { border-color: #d9bcc2; background: #fff7f8; }
.project-step__number {
  display: inline-block;
  margin-bottom: 30px;
  color: #c0a487;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}
.project-step__label {
  margin-bottom: 5px;
  color: var(--wine);
  font-size: 0.76rem;
  font-weight: 850;
}
.project-step h3 { margin-bottom: 10px; font-size: 1.25rem; letter-spacing: -0.03em; }
.project-step p:last-child { margin-bottom: 0; color: var(--muted); font-size: 0.94rem; }
.rights-summary {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 15px;
  align-items: start;
  margin-top: 17px;
  padding: 18px 20px;
  border: 1px solid #d8dbe2;
  border-radius: 17px;
  background: #f7f8fb;
}
.rights-summary__icon {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: #fff;
  background: var(--navy);
  font-size: 0.84rem;
  font-weight: 900;
}
.rights-summary p { margin: 3px 0 0; color: #596174; font-size: 0.88rem; }
.rights-summary a { color: var(--wine); font-weight: 800; }

.play-guide { padding-top: 74px; }
.stage-flow {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  gap: 12px;
  align-items: stretch;
}
.stage-card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}
.stage-card--accent { border-color: #bfd0c2; background: #f4faf5; }
.stage-card__range {
  display: inline-block;
  margin-bottom: 22px;
  color: var(--wine);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.11em;
}
.stage-card__icon {
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  margin-bottom: 22px;
  border-radius: 20px;
  color: #fff;
  background: var(--wine);
  font-weight: 900;
}
.stage-card--accent .stage-card__icon { background: var(--leaf); }
.stage-card h3 { margin-bottom: 9px; font-size: 1.5rem; letter-spacing: -0.04em; }
.stage-card p { margin: 0; color: var(--muted); }
.stage-flow__connector { display: grid; place-items: center; color: var(--wine); font-size: 2rem; font-weight: 900; }
.stage-tip {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: center;
  margin-top: 16px;
  padding: 22px 25px;
  border: 1px solid #dcc5ca;
  border-radius: var(--radius-md);
  background: var(--wine-soft);
}
.stage-tip__badge {
  padding: 8px 10px;
  border-radius: 10px;
  color: #fff;
  background: var(--wine);
  font-size: 0.75rem;
  font-weight: 900;
}
.stage-tip h3 { margin-bottom: 5px; font-size: 1.08rem; }
.stage-tip p { margin: 0; color: #6d555a; }

.original-teaser {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 38px;
  align-items: center;
  margin-top: 74px;
  padding: 34px 38px;
  border-radius: var(--radius-lg);
  color: #f8f6f2;
  background:
    radial-gradient(circle at 85% 20%, rgba(255,255,255,0.10), transparent 20rem),
    var(--navy);
  box-shadow: var(--shadow-md);
}
.original-teaser .section-kicker { color: #dfbd8a; }
.original-teaser h2 { margin-bottom: 10px; font-size: clamp(1.7rem, 4vw, 2.45rem); letter-spacing: -0.045em; }
.original-teaser p { margin: 0; color: #cdd2dd; }
.original-teaser__actions { display: flex; flex-direction: column; align-items: flex-start; gap: 14px; }
.original-teaser__actions span { color: #e7dfd3; font-size: 0.9rem; }
.original-teaser .button--dark { background: #fff; color: var(--navy); }
.original-teaser .button--dark:hover,
.original-teaser .button--dark:focus-visible { background: #f3eee6; }

.works { padding-top: 78px; }
.game-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.game-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 136px;
  gap: 24px;
  min-height: 238px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 23px;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}
.game-card:hover,
.game-card:focus-visible {
  transform: translateY(-4px);
  border-color: #caa7ae;
  box-shadow: var(--shadow-md);
  outline: none;
}
.game-card__body { display: flex; flex-direction: column; min-width: 0; }
.game-card__index {
  margin-bottom: 13px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.13em;
}
.game-card h3 { margin-bottom: 7px; font-size: 1.55rem; letter-spacing: -0.04em; }
.game-card__note { margin-bottom: 18px; color: var(--muted); font-size: 0.91rem; }
.game-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: auto;
  color: var(--wine);
  font-size: 0.9rem;
  font-weight: 850;
}
.game-card__qr {
  align-self: center;
  padding: 9px;
  border: 1px solid #e2d9cf;
  border-radius: 17px;
  background: #fff;
}
.qr-code,
.qr-code img,
.qr-code canvas { width: 116px !important; height: 116px !important; }
.qr-code img,
.qr-code canvas { display: block !important; }
.qr-caption { display: block; margin-top: 7px; color: var(--muted); text-align: center; font-size: 0.69rem; font-weight: 750; }
.noscript { padding: 18px; border: 1px solid var(--line); border-radius: 15px; background: var(--surface); }

.original-guide {
  margin-top: 88px;
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: 32px;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}
.original-guide__heading { margin-bottom: 28px; }
.source-badge {
  justify-self: end;
  min-width: 250px;
  padding: 14px 17px;
  border: 1px solid #e1d1bc;
  border-radius: 15px;
  background: var(--gold-soft);
}
.source-badge span { display: block; margin-bottom: 2px; color: #927044; font-size: 0.72rem; font-weight: 850; }
.source-badge strong { font-size: 0.92rem; }

.library-banner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: center;
  padding: 24px;
  border: 1px solid #bfd2c3;
  border-radius: var(--radius-md);
  background: var(--leaf-soft);
}
.library-banner__mark {
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  border-radius: 18px;
  color: #fff;
  background: var(--leaf);
  font-weight: 900;
}
.library-banner__eyebrow { margin-bottom: 3px; color: var(--leaf); font-size: 0.74rem; font-weight: 900; }
.library-banner h3 { margin-bottom: 5px; font-size: 1.35rem; }
.library-banner p:last-child { margin: 0; color: #536358; }

.content-nav {
  position: sticky;
  top: 12px;
  z-index: 10;
  display: flex;
  gap: 8px;
  width: fit-content;
  max-width: 100%;
  margin: 26px auto 0;
  padding: 7px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,0.92);
  box-shadow: var(--shadow-sm);
}
.content-nav a {
  padding: 8px 13px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  text-decoration: none;
}
.content-nav a:hover,
.content-nav a:focus-visible { color: #fff; background: var(--wine); }

.info-section { scroll-margin-top: 90px; padding-top: 58px; }
.info-section + .info-section { margin-top: 48px; border-top: 1px solid var(--line); }
.info-section__heading {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  align-items: center;
  margin-bottom: 22px;
}
.info-section__number {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  color: #fff;
  background: var(--wine);
  font-weight: 900;
}
.info-section__heading .section-kicker { margin-bottom: 1px; }
.info-section__heading h3 { margin: 0; font-size: 1.65rem; letter-spacing: -0.04em; }
.credit-chip {
  padding: 7px 10px;
  border-radius: 999px;
  color: #7d653f;
  background: var(--gold-soft);
  font-size: 0.71rem;
  font-weight: 850;
}

.fact-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 11px;
  margin: 0;
}
.fact-card {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: var(--surface-soft);
}
.fact-card--wide { grid-column: 1 / -1; }
.fact-card dt { margin-bottom: 6px; color: var(--wine); font-size: 0.73rem; font-weight: 900; }
.fact-card dd { margin: 0; font-weight: 800; line-height: 1.45; }
.fact-card small { color: var(--muted); font-weight: 600; }
.plot-card {
  margin-top: 14px;
  padding: 24px 26px;
  border-left: 4px solid var(--wine);
  border-radius: 0 18px 18px 0;
  background: #fff7f8;
}
.plot-card__label { margin-bottom: 9px; color: var(--wine); font-size: 0.76rem; font-weight: 900; letter-spacing: 0.08em; }
.plot-card p { margin-bottom: 12px; }
.plot-card p:last-child { margin-bottom: 0; }
.plot-card__note { padding-top: 12px; border-top: 1px dashed #d9bdc3; color: var(--muted); font-size: 0.82rem; }

.character-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 13px; }
.character-card {
  padding: 23px;
  border: 1px solid var(--line);
  border-radius: 19px;
  background: var(--surface-soft);
}
.character-card--primary { border-color: #d8bdc2; background: #fff8f9; }
.character-card__meta { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 15px; }
.character-card__meta span {
  padding: 5px 8px;
  border-radius: 999px;
  color: #6f6359;
  background: #eee8e1;
  font-size: 0.69rem;
  font-weight: 800;
}
.character-card--primary .character-card__meta span:first-child { color: var(--wine); background: var(--wine-soft); }
.character-card h4 { margin-bottom: 8px; font-size: 1.38rem; letter-spacing: -0.035em; }
.character-card > p { margin-bottom: 0; color: var(--muted); }
.character-card__notice {
  margin-top: 17px;
  padding: 12px 13px;
  border-radius: 12px;
  color: #71565b;
  background: #f7e9ec;
  font-size: 0.78rem;
  font-weight: 700;
}

.context-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
.context-card {
  min-height: 230px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface-soft);
}
.context-card__index { display: block; margin-bottom: 28px; color: var(--gold); font-size: 0.74rem; font-weight: 900; letter-spacing: 0.1em; }
.context-card h4 { margin-bottom: 8px; font-size: 1.13rem; letter-spacing: -0.03em; }
.context-card p { margin: 0; color: var(--muted); font-size: 0.9rem; }

.credits {
  margin-top: 78px;
  overflow: hidden;
  border-radius: 32px;
  color: #f7f5f1;
  background: var(--navy);
}
.credits__header { max-width: 760px; padding: 42px 42px 20px; }
.credits__header .section-kicker { color: #d9b77f; }
.credits__header h2 { margin-bottom: 8px; font-size: clamp(1.8rem, 4vw, 2.7rem); letter-spacing: -0.045em; }
.credits__header > p:last-child { margin: 0; color: #bcc4d1; }
.credits-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: 18px;
  background: rgba(255,255,255,0.12);
  border-top: 1px solid rgba(255,255,255,0.12);
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.credit-card { padding: 28px 32px; background: #29344b; }
.credit-card--school { background: #31443b; }
.credit-card__type { display: block; margin-bottom: 8px; color: #d7b985; font-size: 0.72rem; font-weight: 900; letter-spacing: 0.08em; }
.credit-card h3 { margin-bottom: 7px; font-size: 1.25rem; }
.credit-card p { margin-bottom: 13px; color: #c7ced9; font-size: 0.9rem; }
.credit-card a { color: #fff; font-size: 0.82rem; font-weight: 800; text-decoration-thickness: 1px; text-underline-offset: 4px; }
.copyright-notice { padding: 23px 42px 30px; }
.copyright-notice p { margin: 0; color: #bfc7d2; font-size: 0.82rem; }
.copyright-notice strong { color: #fff; }

.site-footer { margin-top: 72px; border-top: 1px solid var(--line); background: #efe9e0; }
.site-footer__inner {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 0;
}
.site-footer strong { display: block; margin-bottom: 2px; }
.site-footer p { margin: 0; color: var(--muted); font-size: 0.82rem; }
.site-footer a { color: var(--wine); font-size: 0.84rem; font-weight: 850; text-decoration: none; }

@media (max-width: 980px) {
  .hero-shell { grid-template-columns: minmax(0, 1fr) minmax(280px, 0.58fr); gap: 40px; }
  .cover-card__frame { min-height: 340px; }
  .project-steps { grid-template-columns: 1fr 1fr; }
  .project-step--accent { grid-column: 1 / -1; min-height: auto; }
  .fact-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .context-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 820px) {
  .topbar__links { display: none; }
  .hero-shell { grid-template-columns: 1fr; padding-top: 48px; }
  .cover-card { width: min(520px, 100%); justify-self: center; transform: none; }
  .section-heading--split { grid-template-columns: 1fr; gap: 12px; }
  .source-badge { justify-self: start; }
  .stage-flow { grid-template-columns: 1fr; }
  .stage-flow__connector { min-height: 40px; transform: rotate(90deg); }
  .original-teaser { grid-template-columns: 1fr; gap: 20px; }
  .game-grid { grid-template-columns: 1fr; }
  .character-grid { grid-template-columns: 1fr; }
  .original-guide { padding: 30px 25px; }
}

@media (max-width: 640px) {
  .section-shell,
  .topbar,
  .hero-shell,
  .site-footer__inner { width: min(100% - 28px, 1160px); }
  .topbar { min-height: 64px; }
  .school-brand__mark { width: 38px; height: 38px; }
  .hero-shell { padding: 38px 0 52px; }
  .hero-copy h1 { font-size: clamp(2.45rem, 13vw, 4rem); }
  .hero-facts { grid-template-columns: 1fr; }
  .hero-facts > div { display: flex; justify-content: space-between; gap: 16px; padding: 12px 4px; }
  .hero-facts > div + div { border-left: 0; border-top: 1px solid #ded3c9; }
  .cover-card { padding: 10px; border-radius: 22px; }
  .cover-card__frame { min-height: 280px; border-radius: 15px; }
  main { padding-top: 42px; }
  .project-story { padding: 24px 18px; }
  .project-steps { grid-template-columns: 1fr; }
  .project-step--accent { grid-column: auto; }
  .rights-summary { grid-template-columns: 1fr; }
  .stage-card { padding: 23px; }
  .stage-tip { grid-template-columns: 1fr; }
  .original-teaser { padding: 27px 23px; }
  .game-card { grid-template-columns: 1fr; text-align: center; }
  .game-card__body { align-items: center; }
  .game-card__qr { justify-self: center; }
  .original-guide { width: 100%; border-inline: 0; border-radius: 0; padding-inline: 18px; }
  .library-banner { grid-template-columns: 1fr; }
  .library-banner__mark { width: 56px; height: 56px; }
  .content-nav { position: static; width: 100%; overflow-x: auto; justify-content: flex-start; border-radius: 14px; }
  .content-nav a { white-space: nowrap; }
  .info-section__heading { grid-template-columns: auto 1fr; }
  .credit-chip { grid-column: 2; justify-self: start; }
  .fact-grid,
  .context-grid { grid-template-columns: 1fr; }
  .fact-card--wide { grid-column: auto; }
  .credits { width: 100%; border-radius: 0; }
  .credits__header { padding: 32px 22px 17px; }
  .credits-grid { grid-template-columns: 1fr; }
  .credit-card { padding: 24px 22px; }
  .copyright-notice { padding: 22px; }
  .site-footer__inner { align-items: flex-start; flex-direction: column; }
}

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