:root {
  color-scheme: light;
  --paper: #f7f4eb;
  --paper-deep: #ece4d3;
  --ink: #20201d;
  --ink-soft: #55534d;
  --muted: #756f63;
  --red: #b8322a;
  --red-deep: #7e211d;
  --green: #365f52;
  --green-soft: #dce9dd;
  --blue: #273f5c;
  --gold: #c8902f;
  --line: rgba(32, 32, 29, 0.16);
  --line-strong: rgba(32, 32, 29, 0.32);
  --shadow: 0 18px 44px rgba(32, 32, 29, 0.14);
  --rail: 232px;
  --max: 1120px;
  --radius: 6px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Microsoft YaHei", "PingFang SC", "Noto Sans CJK SC", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.72;
  letter-spacing: 0;
  background:
    linear-gradient(90deg, rgba(32, 32, 29, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(32, 32, 29, 0.035) 1px, transparent 1px),
    radial-gradient(circle at 84% 12%, rgba(184, 50, 42, 0.1), transparent 24rem),
    radial-gradient(circle at 18% 70%, rgba(54, 95, 82, 0.12), transparent 28rem),
    var(--paper);
  background-size: 34px 34px, 34px 34px, auto, auto, auto;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

img {
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  color: inherit;
}

p,
h1,
h2,
h3 {
  overflow-wrap: anywhere;
}

p {
  margin: 0;
  color: var(--ink-soft);
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.16;
}

h1 {
  max-width: 700px;
  color: var(--red-deep);
  font-size: 4.1rem;
  font-weight: 900;
}

h2 {
  position: relative;
  color: var(--green);
  font-size: 2.1rem;
  font-weight: 900;
}

h2::after {
  display: block;
  width: 72px;
  height: 5px;
  margin-top: 12px;
  background: linear-gradient(90deg, var(--red), var(--gold));
  content: "";
}

h3 {
  color: var(--ink);
  font-size: 1.18rem;
  font-weight: 900;
}

.container {
  width: min(100% - 48px, var(--max));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  color: #fff;
  background: var(--red);
  border-radius: var(--radius);
  transform: translateY(-140%);
  transition: transform 160ms ease;
}

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

.site-header {
  position: fixed;
  inset: 0 auto 0 0;
  z-index: 60;
  width: var(--rail);
  border-right: 1px solid var(--line-strong);
  background:
    linear-gradient(180deg, #fffdf6, #eee5d3);
  box-shadow: 10px 0 34px rgba(32, 32, 29, 0.08);
}

.header-inner {
  display: flex;
  width: 100%;
  min-height: 100%;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  gap: 26px;
  padding: 28px 20px;
}

.brand {
  display: grid;
  gap: 14px;
  justify-items: start;
  padding-bottom: 24px;
  border-bottom: 3px solid var(--ink);
}

.brand img {
  width: 64px;
  height: 64px;
  border: 3px solid var(--ink);
  border-radius: 50%;
  background: var(--ink);
}

.brand span {
  display: grid;
  gap: 4px;
}

.brand strong {
  color: var(--ink);
  font-size: 1.38rem;
  font-weight: 900;
  line-height: 1.12;
}

.brand small {
  color: var(--red);
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 1.35;
}

.site-nav {
  display: grid;
  gap: 8px;
}

.site-nav a {
  position: relative;
  min-height: 42px;
  padding: 10px 12px 10px 34px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.46);
  font-size: 0.96rem;
  font-weight: 800;
  line-height: 1.35;
}

.site-nav a::before {
  position: absolute;
  top: 50%;
  left: 12px;
  width: 10px;
  height: 10px;
  border: 2px solid var(--red);
  border-radius: 50%;
  content: "";
  transform: translateY(-50%);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: #fff;
  background: var(--ink);
  outline: none;
}

.nav-toggle {
  display: none;
}

main,
.site-footer {
  margin-left: var(--rail);
}

.section-band {
  position: relative;
  padding: 92px 0;
  border-bottom: 1px solid var(--line);
}

.hero {
  display: grid;
  min-height: 720px;
  align-items: center;
  overflow: hidden;
  padding: 72px 0;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.72) 0%, rgba(247, 244, 235, 0.92) 48%, rgba(220, 233, 221, 0.65) 100%);
}

.hero::before {
  position: absolute;
  top: 70px;
  right: 7%;
  z-index: 0;
  color: rgba(184, 50, 42, 0.1);
  content: "忍";
  font-size: 19rem;
  font-weight: 900;
  line-height: 1;
}

.hero-media {
  position: relative;
  z-index: 1;
  grid-column: 1;
  grid-row: 1;
  width: min(45vw, 560px);
  margin-left: auto;
  margin-right: 5vw;
  transform: rotate(2deg);
}

.hero-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border: 8px solid #fffdf6;
  border-radius: 28px 6px 28px 6px;
  box-shadow: var(--shadow);
}

.hero-shade {
  display: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  grid-column: 1;
  grid-row: 1;
  width: min(100% - 48px, var(--max));
  margin-inline: auto;
  padding-right: min(48vw, 570px);
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  margin: 0 0 16px;
  padding: 5px 9px;
  color: #fff;
  background: var(--red);
  border-radius: var(--radius);
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1.35;
}

.hero h1 {
  position: relative;
  color: var(--red-deep);
  background: linear-gradient(90deg, var(--red-deep) 0%, var(--ink) 54%, var(--green) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 4px 0 rgba(200, 144, 47, 0.24);
}

.hero h1::after {
  display: block;
  width: 168px;
  height: 8px;
  margin-top: 20px;
  background: linear-gradient(90deg, var(--red), var(--green));
  content: "";
}

.hero-subtitle {
  max-width: 670px;
  margin-top: 24px;
  color: var(--ink);
  font-size: 1.08rem;
  line-height: 1.85;
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 11px 18px;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  font-weight: 900;
  line-height: 1.35;
  box-shadow: 5px 5px 0 var(--ink);
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translate(2px, 2px);
  box-shadow: 3px 3px 0 var(--ink);
  outline: none;
}

.button-primary {
  color: #fff;
  background: var(--red);
}

.button-secondary {
  color: var(--ink);
  background: #fffdf6;
}

.quick-facts {
  position: relative;
  z-index: 4;
  margin-left: var(--rail);
  margin-top: -58px;
}

.facts-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
  border: 3px solid var(--ink);
  background: var(--ink);
  box-shadow: 8px 8px 0 rgba(184, 50, 42, 0.24);
}

.fact-item {
  min-height: 118px;
  padding: 20px;
  background: #fffdf6;
}

.fact-item + .fact-item {
  border-left: 1px solid var(--line-strong);
}

.fact-item span {
  display: block;
  color: var(--red);
  font-size: 0.8rem;
  font-weight: 900;
}

.fact-item strong {
  display: block;
  margin-top: 8px;
  color: var(--ink);
  font-size: 1.05rem;
  line-height: 1.35;
}

.two-column,
.two-column.reverse {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 430px);
  align-items: start;
  gap: 58px;
}

.two-column.reverse {
  grid-template-columns: minmax(300px, 430px) minmax(0, 1fr);
}

.section-copy,
.section-heading,
.content-block,
.route-panel,
.download-notes,
.faq-item {
  position: relative;
}

.section-copy p {
  margin-top: 18px;
}

.section-copy h2,
.section-heading h2 {
  max-width: 820px;
}

.section-heading {
  max-width: 850px;
  margin-bottom: 36px;
}

.section-heading p:last-child {
  margin-top: 14px;
}

.media-panel {
  margin: 0;
  overflow: visible;
  transform: rotate(-1.5deg);
}

.media-panel picture {
  border: 5px solid #fffdf6;
  background: #fffdf6;
  box-shadow: var(--shadow);
}

.media-panel img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  border: 2px solid var(--ink);
}

.media-panel figcaption {
  width: calc(100% - 24px);
  margin: -14px auto 0;
  padding: 10px 12px;
  color: #fff;
  background: var(--green);
  border: 2px solid var(--ink);
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.55;
  transform: rotate(1.5deg);
}

.overview {
  padding-top: 120px;
}

.features {
  background:
    linear-gradient(135deg, rgba(54, 95, 82, 0.1), rgba(184, 50, 42, 0.06)),
    rgba(255, 255, 255, 0.35);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.feature-card {
  min-height: 256px;
  padding: 22px;
  border: 2px solid var(--ink);
  background: #fffdf6;
  box-shadow: 6px 6px 0 rgba(32, 32, 29, 0.12);
}

.feature-card:nth-child(2) {
  background: var(--green-soft);
}

.feature-card:nth-child(3) {
  background: #f4e2dc;
}

.feature-card:nth-child(4) {
  background: #e4ebf3;
}

.feature-index {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  margin-bottom: 28px;
  color: #fff;
  background: var(--ink);
  border-radius: 50%;
  font-size: 0.9rem;
  font-weight: 900;
}

.feature-card p {
  margin-top: 12px;
  color: var(--ink-soft);
}

.strategy {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(200, 144, 47, 0.13));
}

.check-list,
.number-list {
  margin: 22px 0 0;
  padding: 0;
}

.check-list {
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 11px 0 11px 34px;
  color: var(--ink);
  border-bottom: 1px dashed var(--line-strong);
}

.check-list li::before {
  position: absolute;
  top: 15px;
  left: 0;
  width: 18px;
  height: 18px;
  border: 2px solid var(--ink);
  background: var(--gold);
  content: "";
  transform: rotate(45deg);
}

.guide {
  background: #fffdf6;
}

.guide-layout {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  gap: 24px;
}

.route-tabs {
  display: grid;
  align-content: start;
  gap: 10px;
}

.route-tab {
  min-height: 48px;
  padding: 11px 14px;
  color: var(--ink);
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  background: transparent;
  font-weight: 900;
  text-align: left;
  cursor: pointer;
}

.route-tab:hover,
.route-tab:focus-visible,
.route-tab.is-active {
  color: #fff;
  background: var(--red);
  outline: none;
}

.route-panel {
  min-height: 300px;
  padding: 28px;
  border: 2px solid var(--ink);
  background:
    linear-gradient(90deg, rgba(184, 50, 42, 0.07) 1px, transparent 1px),
    linear-gradient(180deg, rgba(32, 32, 29, 0.06) 1px, transparent 1px),
    #fffaf0;
  background-size: 22px 22px;
}

.number-list {
  padding-left: 1.35rem;
  color: var(--ink-soft);
}

.number-list li + li {
  margin-top: 10px;
}

.analysis {
  background: #eef2eb;
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.content-block {
  padding: 30px;
  border-left: 7px solid var(--green);
  background: rgba(255, 253, 246, 0.74);
  box-shadow: inset 0 -1px 0 var(--line);
}

.content-block:nth-child(2) {
  border-left-color: var(--red);
}

.content-block p {
  margin-top: 16px;
}

.updates {
  background: #f4efe4;
}

.timeline {
  position: relative;
  display: grid;
  gap: 0;
  max-width: 860px;
}

.timeline::before {
  position: absolute;
  top: 8px;
  bottom: 8px;
  left: 118px;
  width: 3px;
  background: var(--ink);
  content: "";
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 28px;
  padding: 0 0 28px;
}

.timeline-item::before {
  position: absolute;
  top: 6px;
  left: 110px;
  width: 19px;
  height: 19px;
  border: 3px solid var(--ink);
  background: var(--red);
  content: "";
  transform: rotate(45deg);
}

.timeline-item time {
  color: var(--red);
  font-size: 0.9rem;
  font-weight: 900;
  line-height: 1.35;
}

.timeline-item p {
  margin-top: 8px;
}

.gallery {
  background: #fffdf6;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
}

.gallery-item {
  margin: 0;
  border: 2px solid var(--ink);
  background: #fffdf6;
  box-shadow: 7px 7px 0 rgba(32, 32, 29, 0.12);
}

.gallery-item:nth-child(1),
.gallery-item:nth-child(2),
.gallery-item:nth-child(5) {
  grid-column: span 6;
}

.gallery-item:nth-child(3),
.gallery-item:nth-child(4),
.gallery-item:nth-child(6),
.gallery-item:nth-child(7) {
  grid-column: span 3;
}

.gallery-item:nth-child(2n) {
  transform: translateY(18px);
}

.image-button {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

.image-button:focus-visible {
  outline: 4px solid var(--red);
  outline-offset: -4px;
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  filter: saturate(0.95) contrast(1.05);
}

.gallery-item figcaption {
  min-height: 48px;
  padding: 10px 12px;
  color: var(--ink);
  border-top: 2px solid var(--ink);
  font-size: 0.92rem;
  font-weight: 900;
  line-height: 1.45;
}

.download {
  background:
    linear-gradient(90deg, rgba(184, 50, 42, 0.13), rgba(54, 95, 82, 0.12)),
    var(--paper-deep);
}

.download-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.68fr);
  align-items: start;
  gap: 36px;
}

.download-notes {
  padding: 26px;
  border: 2px solid var(--ink);
  background: #fffdf6;
  box-shadow: 8px 8px 0 rgba(184, 50, 42, 0.18);
}

.download-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.download-notes p + p {
  margin-top: 14px;
}

.download-notes strong {
  color: var(--red-deep);
}

.faq {
  background: #f8f5ee;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  overflow: hidden;
  border: 2px solid var(--ink);
  background: #fffdf6;
}

.faq-item summary {
  min-height: 58px;
  padding: 16px 18px;
  color: var(--ink);
  background: rgba(54, 95, 82, 0.08);
  font-weight: 900;
  cursor: pointer;
}

.faq-item summary:focus-visible {
  outline: 4px solid var(--red);
  outline-offset: -4px;
}

.faq-item p {
  padding: 0 18px 18px;
}

.site-footer {
  padding: 38px 0;
  color: #f7f4eb;
  background: var(--ink);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-footer strong {
  color: #fffdf6;
}

.site-footer p {
  margin-top: 8px;
  color: rgba(247, 244, 235, 0.72);
  font-size: 0.92rem;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.site-footer a {
  color: #fffdf6;
  border-bottom: 1px solid rgba(255, 253, 246, 0.36);
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--gold);
  outline: none;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(32, 32, 29, 0.86);
}

.lightbox[hidden] {
  display: none;
}

.lightbox-inner {
  width: min(100%, 1020px);
  overflow: hidden;
  border: 4px solid #fffdf6;
  background: #fffdf6;
  box-shadow: var(--shadow);
}

.lightbox-header {
  display: flex;
  min-height: 54px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 14px;
  border-bottom: 2px solid var(--ink);
}

.lightbox-caption {
  color: var(--ink);
  font-size: 0.96rem;
  font-weight: 900;
}

.lightbox-close {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: #fff;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  background: var(--red);
  cursor: pointer;
}

.lightbox-close:hover,
.lightbox-close:focus-visible {
  background: var(--ink);
  outline: none;
}

.lightbox img {
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
  background: var(--ink);
}

.reveal,
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1180px) {
  :root {
    --rail: 204px;
  }

  h1 {
    font-size: 3.35rem;
  }

  h2 {
    font-size: 1.86rem;
  }

  .hero-media {
    width: min(43vw, 500px);
    margin-right: 3vw;
  }

  .hero-content {
    padding-right: min(46vw, 510px);
  }

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

  .gallery-item:nth-child(n) {
    grid-column: span 6;
  }
}

@media (max-width: 900px) {
  .site-header {
    position: sticky;
    inset: 0 0 auto;
    width: auto;
    min-height: 68px;
    border-right: 0;
    border-bottom: 2px solid var(--ink);
  }

  .header-inner {
    min-height: 68px;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 10px 16px;
  }

  .brand {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 10px;
    padding-bottom: 0;
    border-bottom: 0;
  }

  .brand img {
    width: 44px;
    height: 44px;
    border-width: 2px;
  }

  .brand strong {
    max-width: 8em;
    overflow: hidden;
    font-size: 1rem;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .brand small {
    max-width: 13em;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .nav-toggle {
    display: inline-flex;
    min-width: 82px;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 12px;
    color: var(--ink);
    border: 2px solid var(--ink);
    border-radius: var(--radius);
    background: #fffdf6;
    font-weight: 900;
    cursor: pointer;
  }

  .nav-toggle-bars,
  .nav-toggle-bars::before,
  .nav-toggle-bars::after {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--red);
    content: "";
  }

  .nav-toggle-bars {
    position: relative;
  }

  .nav-toggle-bars::before,
  .nav-toggle-bars::after {
    position: absolute;
    left: 0;
  }

  .nav-toggle-bars::before {
    top: -6px;
  }

  .nav-toggle-bars::after {
    top: 6px;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 2px);
    right: 12px;
    left: 12px;
    display: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    padding: 12px;
    border: 2px solid var(--ink);
    background: #fffdf6;
    box-shadow: 8px 8px 0 rgba(32, 32, 29, 0.14);
  }

  .site-nav.is-open {
    display: grid;
  }

  main,
  .site-footer,
  .quick-facts {
    margin-left: 0;
  }

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

  .hero {
    min-height: auto;
    padding: 54px 0 72px;
  }

  .hero::before {
    top: 90px;
    right: -18px;
    font-size: 10rem;
  }

  .hero-media {
    grid-row: 2;
    width: min(100% - 48px, 620px);
    margin: 34px auto 0;
  }

  .hero-media img {
    aspect-ratio: 16 / 10;
  }

  .hero-content {
    grid-row: 1;
    padding-right: 0;
  }

  .quick-facts {
    margin-top: -38px;
  }

  .facts-grid,
  .two-column,
  .two-column.reverse,
  .download-layout,
  .content-grid {
    grid-template-columns: 1fr;
  }

  .fact-item + .fact-item {
    border-left: 0;
    border-top: 1px solid var(--line-strong);
  }

  .guide-layout {
    grid-template-columns: 1fr;
  }

  .route-tabs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .route-tab {
    text-align: center;
  }

  .timeline::before {
    left: 10px;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    gap: 6px;
    padding-left: 42px;
  }

  .timeline-item::before {
    left: 1px;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer nav {
    justify-content: flex-start;
  }
}

@media (max-width: 620px) {
  body {
    font-size: 15px;
  }

  .container {
    width: min(100% - 24px, var(--max));
  }

  h1 {
    font-size: 2.12rem;
  }

  h2 {
    font-size: 1.42rem;
  }

  h3 {
    font-size: 1.08rem;
  }

  .site-nav {
    grid-template-columns: 1fr;
  }

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

  .hero {
    padding-top: 40px;
  }

  .hero-content {
    width: min(100% - 24px, var(--max));
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

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

  .feature-grid,
  .route-tabs {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .route-panel,
  .content-block,
  .download-notes {
    padding: 20px;
  }

  .gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
  }

  .gallery-item:nth-child(n) {
    grid-column: auto;
    transform: none;
  }

  .lightbox {
    padding: 12px;
  }
}

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