:root {
  color-scheme: light;
  --bg: #f4f4f6;
  --paper: #ffffff;
  --paper-soft: #eceff3;
  --ink: #1f2733;
  --muted: #586475;
  --slate: #4a5568;
  --slate-deep: #202936;
  --line: #d8dde5;
  --accent: #d9383a;
  --accent-strong: #b9272b;
  --ember: #ff6b00;
  --aqua: #1f9a9a;
  --shadow: 0 20px 50px rgba(31, 39, 51, .14);
  --shadow-hover: 0 26px 64px rgba(31, 39, 51, .2);
  --glow-red: 0 0 0 1px rgba(217, 56, 58, .28), 0 18px 42px rgba(217, 56, 58, .16);
  --glow-aqua: 0 0 0 1px rgba(31, 154, 154, .25), 0 18px 42px rgba(31, 154, 154, .14);
  --ease: cubic-bezier(.2, .8, .2, 1);
  --max: 1180px;
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}

body {
  margin: 0;
  font-family: "Noto Sans SC", "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.75;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

.icon {
  display: inline-block;
  width: 1em;
  height: 1em;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

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

p {
  margin: 0;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 10px;
  z-index: 1000;
  padding: 10px 14px;
  color: #fff;
  background: var(--slate-deep);
  border-radius: var(--radius);
  transform: translateY(-160%);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(244, 244, 246, .9);
  border-bottom: 1px solid rgba(216, 221, 229, .8);
  backdrop-filter: blur(18px);
  transition: background .22s var(--ease), box-shadow .22s var(--ease), border-color .22s var(--ease);
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, .94);
  border-color: rgba(216, 221, 229, .96);
  box-shadow: 0 10px 28px rgba(31, 39, 51, .08);
}

.nav-wrap {
  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;
  color: var(--slate-deep);
  font-weight: 800;
  transition: color .2s var(--ease), transform .2s var(--ease);
}

.brand img {
  width: 48px;
  height: auto;
  object-fit: contain;
  border-radius: 7px;
  border: 1px solid rgba(74, 85, 104, .22);
}

.brand span {
  overflow-wrap: anywhere;
}

.brand:hover,
.brand:focus-visible {
  color: var(--accent);
  transform: translateY(-1px);
}

.site-menu {
  display: flex;
  align-items: center;
  gap: 3px;
  color: var(--slate);
  font-size: 15px;
  font-weight: 700;
}

.site-menu a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 12px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  transition: color .2s var(--ease), border-color .2s var(--ease), background .2s var(--ease), transform .2s var(--ease), box-shadow .2s var(--ease), text-shadow .2s var(--ease);
}

.site-menu a span {
  white-space: nowrap;
}

.site-menu .icon {
  width: 16px;
  height: 16px;
  stroke-width: 2.25;
}

.site-menu a:hover,
.site-menu a:focus-visible,
.site-menu a.is-active {
  color: var(--accent);
  border-color: rgba(217, 56, 58, .62);
  background: transparent;
  text-shadow: 0 0 14px rgba(217, 56, 58, .18);
}

.site-menu .nav-cta {
  margin-left: 8px;
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--ember));
  box-shadow: 0 10px 22px rgba(217, 56, 58, .24);
}

.site-menu .nav-cta:hover,
.site-menu .nav-cta:focus-visible {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(135deg, var(--accent), var(--ember));
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(217, 56, 58, .3);
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .82);
  cursor: pointer;
  transition: color .2s var(--ease), border-color .2s var(--ease), background .2s var(--ease), box-shadow .2s var(--ease);
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
  border-color: rgba(217, 56, 58, .5);
  background: #fff;
  box-shadow: var(--glow-red);
}

.nav-toggle .icon {
  width: 24px;
  height: 24px;
  color: var(--slate-deep);
}

.nav-toggle .icon-close {
  display: none;
}

.nav-toggle[aria-expanded="true"] .icon-menu {
  display: none;
}

.nav-toggle[aria-expanded="true"] .icon-close {
  display: inline-block;
}

.hero {
  position: relative;
  min-height: 76vh;
  overflow: hidden;
  display: grid;
  align-items: end;
  isolation: isolate;
  background: var(--slate-deep);
}

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

.hero picture img {
  object-fit: contain;
  object-position: center center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(21, 26, 36, .92) 0%, rgba(21, 26, 36, .68) 43%, rgba(21, 26, 36, .26) 100%),
    linear-gradient(180deg, rgba(21, 26, 36, .22) 0%, rgba(21, 26, 36, .86) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  padding: 118px 0 46px;
  color: #fff;
}

.eyebrow,
.section-kicker {
  color: var(--accent);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.35;
}

.hero .eyebrow {
  color: #ffd6d0;
}

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

h1 {
  max-width: 900px;
  margin-top: 14px;
  font-size: clamp(30px, 4.6vw, 54px);
  overflow-wrap: anywhere;
}

h2 {
  max-width: 860px;
  margin-top: 10px;
  color: var(--slate-deep);
  font-size: clamp(22px, 2.45vw, 32px);
}

h3 {
  color: var(--slate-deep);
  font-size: 20px;
}

.hero-subtitle {
  max-width: 760px;
  margin-top: 20px;
  color: rgba(255, 255, 255, .9);
  font-size: clamp(17px, 2vw, 21px);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 900;
  line-height: 1.2;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease), background .2s var(--ease), filter .2s var(--ease);
}

.button .icon {
  width: 18px;
  height: 18px;
  stroke-width: 2.35;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-3px);
}

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--ember));
  box-shadow: 0 18px 34px rgba(217, 56, 58, .28);
}

.button-primary:hover,
.button-primary:focus-visible {
  filter: saturate(1.08);
  box-shadow: 0 24px 44px rgba(217, 56, 58, .38);
}

.button-secondary {
  color: #fff;
  background: rgba(255, 255, 255, .13);
  border-color: rgba(255, 255, 255, .38);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: rgba(255, 255, 255, .72);
  background: rgba(255, 255, 255, .18);
  box-shadow: 0 18px 36px rgba(255, 255, 255, .08);
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  width: min(100%, 820px);
  margin: 34px 0 0;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255, 255, 255, .16);
}

.hero-facts div {
  min-width: 0;
  padding: 14px 16px;
  background: rgba(21, 26, 36, .34);
  transition: background .2s var(--ease), box-shadow .2s var(--ease);
}

.hero-facts div:hover {
  background: rgba(217, 56, 58, .18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .16);
}

.hero-facts dt {
  color: rgba(255, 255, 255, .66);
  font-size: 13px;
}

.hero-facts dd {
  margin: 2px 0 0;
  overflow-wrap: anywhere;
  color: #fff;
  font-weight: 900;
}

.section {
  padding: 86px 0;
  background: var(--bg);
}

.section:nth-of-type(even) {
  background: #ffffff;
}

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

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(320px, .72fr);
  gap: 48px;
  align-items: center;
}

.copy-block p:not(.section-kicker),
.content-list p,
.guide-steps p,
.feature-grid p,
.route-card p,
.update-list p,
.faq-list p {
  color: var(--muted);
  font-size: 16px;
}

.copy-block p:not(.section-kicker) {
  margin-top: 18px;
}

.media-frame,
.wide-media,
.gallery-main {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(138, 149, 165, .34);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
  transition: transform .24s var(--ease), box-shadow .24s var(--ease), border-color .24s var(--ease), filter .24s var(--ease);
}

.media-frame img,
.wide-media img,
.gallery-main img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  background: var(--paper-soft);
  transition: filter .24s var(--ease);
}

.media-frame:hover,
.wide-media:hover,
.gallery-main:hover {
  transform: translateY(-4px);
  border-color: rgba(217, 56, 58, .35);
  box-shadow: var(--shadow-hover);
}

.media-frame:hover img,
.wide-media:hover img,
.gallery-main:hover img {
  filter: saturate(1.06) contrast(1.03);
}

.wide-media {
  margin-top: 34px;
}

.route-grid,
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 30px;
}

.route-card,
.feature-grid article,
.content-list article,
.guide-steps article,
.update-list article {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(138, 149, 165, .26);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .78);
  transition: transform .24s var(--ease), box-shadow .24s var(--ease), border-color .24s var(--ease), background .24s var(--ease);
}

.route-card::after,
.feature-grid article::after,
.content-list article::after,
.guide-steps article::after,
.update-list article::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  background: linear-gradient(135deg, rgba(217, 56, 58, .12), transparent 44%, rgba(31, 154, 154, .08));
  transition: opacity .24s var(--ease);
}

.route-card:hover,
.route-card:focus-within,
.feature-grid article:hover,
.feature-grid article:focus-within,
.content-list article:hover,
.content-list article:focus-within,
.guide-steps article:hover,
.guide-steps article:focus-within,
.update-list article:hover,
.update-list article:focus-within {
  transform: translateY(-5px);
  border-color: rgba(217, 56, 58, .38);
  background: #fff;
  box-shadow: var(--glow-red);
}

.route-card:hover::after,
.route-card:focus-within::after,
.feature-grid article:hover::after,
.feature-grid article:focus-within::after,
.content-list article:hover::after,
.content-list article:focus-within::after,
.guide-steps article:hover::after,
.guide-steps article:focus-within::after,
.update-list article:hover::after,
.update-list article:focus-within::after {
  opacity: 1;
}

.route-card,
.feature-grid article {
  padding: 24px;
}

.route-card h3,
.feature-grid h3,
.content-list h3,
.guide-steps h3,
.update-list h3 {
  margin-bottom: 10px;
}

.content-layout,
.guide-layout {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(340px, .8fr);
  gap: 38px;
  margin-top: 32px;
  align-items: start;
}

.content-list {
  display: grid;
  gap: 16px;
}

.content-list article {
  padding: 22px 24px;
  border-left: 4px solid var(--accent);
}

.sticky-media {
  position: sticky;
  top: 96px;
}

.guide-layout {
  grid-template-columns: minmax(320px, .82fr) minmax(0, 1fr);
}

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

.guide-steps article {
  position: relative;
  padding: 22px 22px 22px 78px;
}

.guide-steps span {
  position: absolute;
  left: 22px;
  top: 22px;
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: #fff;
  background: var(--slate-deep);
  font-size: 13px;
  font-weight: 900;
  transition: background .24s var(--ease), transform .24s var(--ease), box-shadow .24s var(--ease);
}

.guide-steps article:hover span,
.guide-steps article:focus-within span {
  transform: translateY(-2px);
  background: var(--accent);
  box-shadow: 0 12px 28px rgba(217, 56, 58, .28);
}

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

.feature-grid article {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .92), rgba(236, 239, 243, .78));
}

.feature-grid article h3::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--ember));
  vertical-align: .08em;
  transition: transform .24s var(--ease), box-shadow .24s var(--ease);
}

.feature-grid article:hover h3::before,
.feature-grid article:focus-within h3::before {
  transform: scale(1.25);
  box-shadow: 0 0 0 5px rgba(217, 56, 58, .12);
}

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

.update-list article {
  padding: 22px;
  background: #fff;
}

.update-list article:nth-child(odd) {
  border-top: 4px solid var(--accent);
}

.update-list article:nth-child(even) {
  border-top: 4px solid var(--aqua);
}

.update-list article:nth-child(even):hover,
.update-list article:nth-child(even):focus-within {
  border-color: rgba(31, 154, 154, .42);
  box-shadow: var(--glow-aqua);
}

.gallery-shell {
  position: relative;
  margin-top: 30px;
}

.gallery-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 20px;
  align-items: start;
}

.gallery-main {
  min-width: 0;
}

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

.gallery-thumb {
  display: block;
  min-width: 0;
  padding: 8px;
  border: 1px solid rgba(138, 149, 165, .32);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .78);
  box-shadow: 0 10px 24px rgba(31, 39, 51, .08);
  cursor: pointer;
  transition: transform .22s var(--ease), box-shadow .22s var(--ease), border-color .22s var(--ease), background .22s var(--ease), filter .22s var(--ease);
}

.gallery-thumb img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: calc(var(--radius) - 2px);
  background: var(--paper-soft);
}

.gallery-thumb:hover,
.gallery-thumb:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(217, 56, 58, .48);
  background: #fff;
  box-shadow: var(--shadow-hover);
}

.gallery-thumb.is-active {
  border-color: rgba(217, 56, 58, .74);
  background: #fff;
  box-shadow: var(--glow-red);
}

.gallery-thumb.is-active img,
.gallery-thumb:hover img,
.gallery-thumb:focus-visible img {
  filter: saturate(1.08) contrast(1.03);
}

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

.faq-list details {
  border: 1px solid rgba(138, 149, 165, .3);
  border-radius: var(--radius);
  background: #fff;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease), transform .2s var(--ease), background .2s var(--ease);
}

.faq-list details:hover,
.faq-list details:focus-within {
  border-color: rgba(217, 56, 58, .34);
  box-shadow: 0 16px 36px rgba(31, 39, 51, .08);
}

.faq-list summary {
  min-height: 58px;
  padding: 17px 54px 17px 20px;
  color: var(--slate-deep);
  font-weight: 900;
  cursor: pointer;
  list-style: none;
  position: relative;
}

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

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

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

.faq-list details[open] {
  border-color: rgba(31, 154, 154, .32);
  box-shadow: var(--glow-aqua);
}

.faq-list p {
  padding: 0 20px 20px;
}

.floating-detail-button {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 13px 22px;
  border: 1px solid rgba(255, 255, 255, .42);
  border-radius: var(--radius);
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--ember));
  box-shadow: 0 18px 36px rgba(217, 56, 58, .34);
  font-weight: 900;
  line-height: 1.2;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease), filter .2s var(--ease);
}

.floating-detail-button:hover,
.floating-detail-button:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 22px 42px rgba(217, 56, 58, .42);
  filter: saturate(1.08);
}

.floating-detail-button .icon {
  width: 18px;
  height: 18px;
  stroke-width: 2.35;
}

.friend-links {
  padding: 34px 0 36px;
  color: #fff;
  background: linear-gradient(120deg, var(--accent-strong), var(--accent), var(--ember));
}

.friend-links-inner {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  text-align: center;
}

.friend-links h2 {
  max-width: none;
  margin: 0;
  color: #fff;
  font-size: 28px;
  line-height: 1.2;
}

.friend-link-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 22px;
}

.friend-link-list a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 126px;
  min-height: 42px;
  padding: 9px 22px;
  border: 1px solid rgba(255, 255, 255, .32);
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, .14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .2);
  font-weight: 800;
  line-height: 1.2;
  transition: transform .2s var(--ease), background .2s var(--ease), border-color .2s var(--ease), box-shadow .2s var(--ease);
}

.friend-link-list a:hover,
.friend-link-list a:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, .68);
  background: rgba(255, 255, 255, .22);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .26), 0 12px 28px rgba(31, 39, 51, .16);
}

.site-footer {
  background: var(--slate-deep);
  color: rgba(255, 255, 255, .82);
}

.footer-inner {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 26px 0;
}

.footer-inner a {
  color: #fff;
  font-weight: 900;
}

@media (max-width: 1040px) {
  .site-menu {
    font-size: 14px;
  }

  .site-menu a {
    padding: 9px 9px;
  }

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

  .sticky-media {
    position: static;
  }

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

@media (max-width: 820px) {
  html {
    scroll-padding-top: 72px;
  }

  .nav-wrap {
    min-height: 64px;
  }

  .brand span {
    max-width: 58vw;
    font-size: 14px;
  }

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

  .site-menu {
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% + 10px);
    display: grid;
    gap: 4px;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .98);
    box-shadow: var(--shadow);
    transform-origin: top;
    transform: scaleY(.94);
    opacity: 0;
    pointer-events: none;
  }

  .site-menu.is-open {
    transform: scaleY(1);
    opacity: 1;
    pointer-events: auto;
  }

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

  .hero {
    min-height: 72vh;
  }

  .hero picture img {
    object-position: center center;
  }

  .hero-content {
    padding-top: 98px;
  }

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

  .section {
    padding: 64px 0;
  }

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

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

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

}

@media (max-width: 560px) {
  .nav-wrap,
  .section-inner,
  .hero-content,
  .footer-inner {
    width: min(100% - 24px, var(--max));
  }

  .hero {
    min-height: 680px;
  }

  h1 {
    font-size: 28px;
  }

  h2 {
    font-size: 22px;
  }

  .hero-actions,
  .footer-inner {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

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

  .gallery-thumbs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .gallery-thumb {
    padding: 6px;
  }

  .route-card,
  .feature-grid article,
  .content-list article,
  .guide-steps article,
  .update-list article {
    padding: 20px;
  }

  .floating-detail-button {
    right: 12px;
    bottom: 14px;
    min-height: 48px;
    padding: 12px 18px;
  }

  .friend-links {
    padding: 30px 0 32px;
  }

  .friend-links h2 {
    font-size: 24px;
  }

  .friend-link-list {
    gap: 10px;
  }

  .friend-link-list a {
    min-width: 0;
    width: calc(50% - 5px);
    padding-inline: 12px;
  }

  .guide-steps article {
    padding-left: 20px;
  }

  .guide-steps span {
    position: static;
    margin-bottom: 12px;
  }
}

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