:root {
  --moss: #d2e7d6;
  --moss-soft: #e8f3e7;
  --forest: #1a3322;
  --forest-2: #102116;
  --pink: #ff4d94;
  --pink-soft: #ffd2e5;
  --gold: #c9ab64;
  --ink: #16221a;
  --muted: #5b6b61;
  --paper: #fbfff8;
  --teal: #6fa69a;
  --shadow: 0 18px 44px rgba(16, 33, 22, 0.18);
  --max: 1180px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(135deg, rgba(26, 51, 34, 0.07) 0 1px, transparent 1px 32px),
    var(--moss);
  color: var(--ink);
  font-family: "Microsoft YaHei", "PingFang SC", "Noto Sans SC", Arial, sans-serif;
  line-height: 1.75;
  text-rendering: optimizeLegibility;
}

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

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.icon {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

p {
  margin: 0 0 1em;
}

strong {
  color: var(--forest);
  font-weight: 700;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  z-index: 100;
  background: var(--pink);
  color: #fff;
  padding: 10px 14px;
  border-radius: 8px;
  transition: top 180ms ease;
}

.skip-link:focus {
  top: 12px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(26, 51, 34, 0.96);
  color: #f6fff4;
  border-bottom: 1px solid rgba(255, 77, 148, 0.42);
  backdrop-filter: blur(12px);
}

.site-header.is-scrolled {
  box-shadow: 0 10px 28px rgba(16, 33, 22, 0.24);
}

.site-nav {
  width: min(100% - 32px, var(--max));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-weight: 800;
}

.brand img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 8px;
  border: 2px solid var(--pink);
  box-shadow: 0 0 0 4px rgba(255, 77, 148, 0.14);
}

.brand-text {
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid transparent;
  color: rgba(246, 255, 244, 0.88);
  transition: color 180ms ease, border-color 180ms ease, background-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.nav-links a .icon {
  width: 16px;
  height: 16px;
  flex-basis: 16px;
  color: var(--pink-soft);
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a.is-active {
  color: var(--pink-soft);
  border-color: var(--pink);
  background: rgba(255, 77, 148, 0.06);
  box-shadow: inset 0 0 0 1px rgba(255, 77, 148, 0.16), 0 0 14px rgba(255, 77, 148, 0.16);
  outline: none;
}

.nav-links .nav-cta {
  background: var(--pink);
  color: #fff;
  font-weight: 800;
  margin-left: 6px;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.nav-links .nav-cta:hover,
.nav-links .nav-cta:focus-visible {
  background: #ff2f82;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.22);
  transform: translateY(-2px);
  box-shadow: 0 0 18px rgba(255, 77, 148, 0.38);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  padding: 10px;
  position: relative;
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: currentColor;
  margin: 5px 0;
  transform-origin: center;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 72svh;
  overflow: hidden;
  color: #fff;
  display: grid;
  align-items: center;
}

.hero-media,
.hero-media img,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media img {
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(16, 33, 22, 0.92), rgba(16, 33, 22, 0.62) 48%, rgba(16, 33, 22, 0.34)),
    linear-gradient(0deg, rgba(16, 33, 22, 0.52), rgba(16, 33, 22, 0.06) 50%);
}

.hero-content {
  position: relative;
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  padding: 72px 0 58px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--pink-soft);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.section-kicker {
  color: var(--pink);
}

.hero h1 {
  max-width: 820px;
  margin: 0 0 18px;
  color: #fff;
  font-size: 56px;
  line-height: 1.12;
  letter-spacing: 0;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.36);
}

.hero-subtitle {
  max-width: 720px;
  font-size: 20px;
  color: rgba(255, 255, 255, 0.9);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-weight: 800;
  line-height: 1.2;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background-color 180ms ease, color 180ms ease;
}

.button .icon {
  width: 18px;
  height: 18px;
}

.button-primary {
  background: var(--pink);
  color: #fff;
  box-shadow: 0 0 24px rgba(255, 77, 148, 0.32);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #ff2f82;
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(255, 77, 148, 0.32);
  outline: 3px solid rgba(255, 77, 148, 0.28);
}

.button-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.08);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  border-color: var(--pink);
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(16, 33, 22, 0.2);
  outline: none;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 180px));
  gap: 12px;
  max-width: 620px;
  margin: 0;
}

.hero-meta div {
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(16, 33, 22, 0.62);
}

.hero-meta dt {
  font-size: 13px;
  color: var(--pink-soft);
}

.hero-meta dd {
  margin: 2px 0 0;
  font-weight: 800;
}

.quick-strip {
  background: var(--forest);
  color: #fff;
  border-top: 1px solid rgba(255, 77, 148, 0.44);
  border-bottom: 1px solid rgba(255, 77, 148, 0.36);
}

.quick-strip-inner {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 14px 0;
}

.quick-strip span {
  padding: 7px 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
}

.section {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  padding: 82px 0;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(330px, 0.78fr);
  gap: 44px;
  align-items: center;
}

.guide-section {
  grid-template-columns: minmax(330px, 0.86fr) minmax(0, 1fr);
}

.section-copy h2,
.section-heading h2,
.final-cta h2 {
  margin: 0 0 18px;
  color: var(--forest);
  font-size: 34px;
  line-height: 1.26;
  letter-spacing: 0;
}

.section-copy p,
.section-heading p {
  color: var(--muted);
  font-size: 17px;
}

.media-panel,
.wide-figure {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--forest);
  box-shadow: var(--shadow);
  border: 1px solid rgba(26, 51, 34, 0.18);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.media-panel img,
.wide-figure img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform 360ms ease, filter 360ms ease;
}

.media-panel:hover,
.wide-figure:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 77, 148, 0.46);
  box-shadow: 0 22px 52px rgba(16, 33, 22, 0.24);
}

.media-panel:hover img,
.wide-figure:hover img {
  transform: scale(1.035);
  filter: saturate(1.06) contrast(1.04);
}

.media-panel figcaption,
.wide-figure figcaption,
.gallery-slide figcaption {
  padding: 12px 14px;
  color: rgba(255, 255, 255, 0.82);
  background: var(--forest);
  font-size: 14px;
}

.dark-band {
  width: 100%;
  max-width: none;
  padding: 82px max(16px, calc((100% - var(--max)) / 2));
  background:
    linear-gradient(135deg, rgba(255, 77, 148, 0.08), transparent 38%),
    var(--forest);
  color: #fff;
}

.dark-band .section-heading {
  max-width: 780px;
}

.dark-band h2,
.dark-band h3 {
  color: #fff;
}

.dark-band .section-heading p,
.dark-band .content-card p {
  color: rgba(255, 255, 255, 0.78);
}

.content-grid,
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 32px;
}

.content-card,
.feature-card,
.timeline-item {
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.07);
  padding: 20px;
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease, background-color 200ms ease;
}

.content-card:hover,
.content-card:focus-within {
  transform: translateY(-5px);
  border-color: rgba(255, 77, 148, 0.56);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.18);
}

.content-card h3,
.feature-card h3,
.timeline-item h3,
.guide-list h3 {
  margin: 0 0 10px;
  color: var(--forest);
  font-size: 20px;
  line-height: 1.35;
  letter-spacing: 0;
}

.content-card h3 {
  color: #fff;
}

.content-card p,
.feature-card p,
.timeline-item p,
.guide-list p {
  margin: 0;
  color: var(--muted);
}

.wide-figure {
  margin-top: 28px;
}

.routes-section .section-heading,
.feature-band .section-heading,
.gallery-section .section-heading,
.updates-section .section-heading,
.faq-section .section-heading {
  max-width: 820px;
  margin-bottom: 28px;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.timeline-item {
  position: relative;
  background: var(--paper);
  border-color: rgba(26, 51, 34, 0.12);
  box-shadow: 0 10px 26px rgba(26, 51, 34, 0.08);
}

.timeline-item:hover,
.timeline-item:focus-within {
  transform: translateY(-5px);
  border-color: rgba(255, 77, 148, 0.44);
  box-shadow: 0 18px 38px rgba(26, 51, 34, 0.14);
}

.timeline-step {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  border-radius: 8px;
  background: var(--forest);
  color: var(--pink-soft);
  font-weight: 900;
}

.media-panel-left {
  order: 0;
}

.guide-list {
  display: grid;
  gap: 14px;
}

.guide-list article {
  border-left: 4px solid var(--pink);
  background: var(--paper);
  padding: 18px 18px 18px 20px;
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(26, 51, 34, 0.08);
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease, background-color 200ms ease;
}

.guide-list article:hover,
.guide-list article:focus-within {
  transform: translateX(6px);
  background: #fff;
  box-shadow: 0 18px 34px rgba(26, 51, 34, 0.14);
}

.feature-band {
  width: 100%;
  max-width: none;
  padding: 82px max(16px, calc((100% - var(--max)) / 2));
  background: linear-gradient(180deg, var(--moss-soft), #f6fff4);
}

.feature-card {
  background: var(--forest);
  border-color: rgba(255, 77, 148, 0.2);
  box-shadow: var(--shadow);
}

.feature-card:hover,
.feature-card:focus-within {
  transform: translateY(-5px);
  border-color: var(--pink);
  box-shadow: 0 20px 44px rgba(16, 33, 22, 0.26), 0 0 24px rgba(255, 77, 148, 0.16);
}

.feature-card h3 {
  color: #fff;
}

.feature-card p {
  color: rgba(255, 255, 255, 0.78);
}

.gallery {
  position: relative;
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) 52px;
  align-items: center;
  gap: 14px;
}

.gallery-track {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
  background: var(--forest);
  border: 1px solid rgba(26, 51, 34, 0.16);
  transition: border-color 220ms ease, box-shadow 220ms ease;
}

.gallery-track:hover {
  border-color: rgba(255, 77, 148, 0.48);
  box-shadow: 0 22px 52px rgba(16, 33, 22, 0.22);
}

.gallery-slide {
  display: none;
  margin: 0;
}

.gallery-slide.is-active {
  display: block;
}

.gallery-slide img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform 360ms ease, filter 360ms ease;
}

.gallery-track:hover .gallery-slide.is-active img {
  transform: scale(1.025);
  filter: saturate(1.06) contrast(1.04);
}

.gallery-button {
  width: 52px;
  height: 52px;
  border: 1px solid rgba(26, 51, 34, 0.16);
  border-radius: 8px;
  background: var(--forest);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.gallery-button .icon {
  width: 24px;
  height: 24px;
}

.gallery-button:hover,
.gallery-button:focus-visible {
  border-color: var(--pink);
  box-shadow: 0 0 18px rgba(255, 77, 148, 0.28);
  outline: none;
}

.update-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: updates;
}

.update-list li {
  counter-increment: updates;
  position: relative;
  min-height: 118px;
  padding: 20px 20px 20px 60px;
  border-radius: 8px;
  background: var(--paper);
  border: 1px solid rgba(26, 51, 34, 0.12);
  box-shadow: 0 12px 28px rgba(26, 51, 34, 0.08);
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease, background-color 200ms ease;
}

.update-list li:hover,
.update-list li:focus-within {
  transform: translateY(-4px);
  border-color: rgba(255, 77, 148, 0.42);
  background: #fff;
  box-shadow: 0 18px 36px rgba(26, 51, 34, 0.14);
}

.update-list li::before {
  content: counter(updates, decimal-leading-zero);
  position: absolute;
  left: 18px;
  top: 20px;
  color: var(--pink);
  font-weight: 900;
}

.faq-section {
  padding-top: 52px;
}

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

.faq-list details {
  border-radius: 8px;
  background: var(--paper);
  border: 1px solid rgba(26, 51, 34, 0.14);
  box-shadow: 0 10px 24px rgba(26, 51, 34, 0.07);
  overflow: hidden;
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease, background-color 200ms ease;
}

.faq-list details:hover,
.faq-list details[open] {
  border-color: rgba(255, 77, 148, 0.42);
  box-shadow: 0 16px 32px rgba(26, 51, 34, 0.12);
}

.faq-list details:hover {
  transform: translateY(-2px);
}

.faq-list summary {
  cursor: pointer;
  padding: 18px 52px 18px 18px;
  color: var(--forest);
  font-weight: 800;
  list-style: none;
  position: relative;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--pink);
  font-size: 24px;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list p {
  margin: 0;
  padding: 0 18px 18px;
  color: var(--muted);
}

.final-cta {
  width: min(100% - 32px, var(--max));
  margin: 24px auto 76px;
  padding: 34px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 77, 148, 0.14), transparent 48%),
    var(--forest);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 77, 148, 0.22);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.final-cta:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 77, 148, 0.5);
  box-shadow: 0 24px 54px rgba(16, 33, 22, 0.26);
}

.final-cta h2 {
  color: #fff;
}

.final-cta p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
}

.friend-links {
  width: 100%;
  padding: 46px 16px;
  background:
    linear-gradient(180deg, rgba(210, 231, 214, 0.9), rgba(210, 231, 214, 0.72)),
    var(--moss);
  border-top: 1px solid rgba(26, 51, 34, 0.12);
  text-align: center;
}

.friend-links h2 {
  margin: 0 0 18px;
  color: var(--forest);
  font-size: 28px;
  line-height: 1.25;
  letter-spacing: 0;
}

.friend-link-list {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.friend-link-list a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 9px 22px;
  border-radius: 999px;
  background: var(--paper);
  color: var(--forest);
  border: 1px solid rgba(26, 51, 34, 0.1);
  box-shadow: 0 10px 24px rgba(26, 51, 34, 0.12);
  font-weight: 800;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.friend-link-list a:hover,
.friend-link-list a:focus-visible {
  color: var(--pink);
  border-color: var(--pink);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(255, 77, 148, 0.2);
  outline: none;
}

.site-footer {
  background: var(--forest-2);
  color: rgba(255, 255, 255, 0.72);
  padding: 34px 16px;
  font-size: 14px;
}

.footer-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  gap: 20px;
}

.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: left;
}

.footer-brand img {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  border: 1px solid rgba(255, 77, 148, 0.46);
  object-fit: cover;
}

.footer-brand strong,
.footer-brand span {
  display: block;
}

.footer-brand strong {
  color: #fff;
  font-size: 17px;
}

.footer-brand span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 18px;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.72);
  transition: color 180ms ease;
}

.footer-nav a:hover,
.footer-nav a:focus-visible {
  color: var(--pink-soft);
  outline: none;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 18px;
  text-align: center;
}

.footer-bottom p {
  margin: 4px 0;
}

:focus-visible {
  outline: 3px solid rgba(255, 77, 148, 0.5);
  outline-offset: 3px;
}

@media (max-width: 1040px) {
  .content-grid,
  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 860px) {
  .site-nav {
    min-height: 66px;
  }

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

  .nav-links {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 74px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 12px;
    border-radius: 8px;
    background: var(--forest);
    border: 1px solid rgba(255, 77, 148, 0.32);
    box-shadow: var(--shadow);
  }

  .nav-links a {
    justify-content: flex-start;
  }

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

  .nav-links .nav-cta {
    margin-left: 0;
    text-align: center;
  }

  .hero {
    min-height: 74svh;
  }

  .hero h1 {
    font-size: 42px;
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .hero-meta {
    grid-template-columns: 1fr;
  }

  .split-section,
  .guide-section {
    grid-template-columns: 1fr;
  }

  .guide-section .media-panel-left {
    order: 2;
  }

  .update-list {
    grid-template-columns: 1fr;
  }

  .final-cta {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  .brand-text {
    font-size: 16px;
  }

  .hero-content {
    padding: 54px 0 44px;
  }

  .hero h1 {
    font-size: 34px;
  }

  .hero-media img {
    object-position: 58% center;
  }

  .section,
  .dark-band,
  .feature-band {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .section-copy h2,
  .section-heading h2,
  .final-cta h2 {
    font-size: 27px;
  }

  .content-grid,
  .feature-grid,
  .timeline {
    grid-template-columns: 1fr;
  }

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

  .gallery-button {
    width: 100%;
  }

  .gallery-prev {
    order: 2;
  }

  .gallery-next {
    order: 3;
  }

  .final-cta {
    padding: 24px;
  }
}

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