/* ==========================================================================
   乐动体育LD 全站共享样式 /assets/site.css
   Site Kit · e936ab128da0d9b7 · 33c2c5816b3b322378cad43128595231
   ========================================================================== */

/* 1. 变量与基础 Reset
   ========================================================================== */
:root {
  --deep-blue: #0b1d3a;
  --steel: #123a5f;
  --orange: #ff6b1a;
  --crimson: #e8501a;
  --gold: #c9a227;
  --cream: #f7f3ea;
  --mist: #e8edf2;
  --ink: #2b201a;
  --white: #ffffff;

  --font-display: "Archivo Black", "Space Grotesk", "PingFang SC", "Microsoft YaHei", sans-serif;
  --font-body: "Inter", "PingFang SC", "Microsoft YaHei", sans-serif;
  --font-serif: "Source Han Serif SC", "Noto Serif CJK SC", "Songti SC", serif;
  --font-mono: "JetBrains Mono", ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;

  --container: 1240px;
  --radius: 8px;
  --shadow-sm: 0 1px 2px rgba(11, 29, 58, 0.05), 0 6px 18px rgba(11, 29, 58, 0.05);
  --shadow-md: 0 14px 34px -10px rgba(11, 29, 58, 0.22);
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);

  --header-h: 76px;
  --header-h-sm: 62px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.75;
  background: var(--cream);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
}

main {
  display: block;
}

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

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

ul,
ol {
  list-style: none;
}

button {
  font: inherit;
  border: 0;
  background: none;
  cursor: pointer;
  color: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  font-weight: 900;
  line-height: 1.18;
  letter-spacing: -0.01em;
}

::selection {
  background: var(--orange);
  color: var(--deep-blue);
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
  box-shadow: 0 0 0 2px var(--deep-blue);
}

/* 2. 内容容器与分区
   ========================================================================== */
.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.section {
  padding-block: clamp(48px, 8vw, 88px);
}

.section--tight {
  padding-block: clamp(32px, 5vw, 48px);
}

.section--dark {
  background: var(--deep-blue);
  color: var(--cream);
  position: relative;
}

.section--dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(90deg, transparent 0 63px, rgba(255, 255, 255, 0.03) 63px 64px);
  pointer-events: none;
}

.section--mist {
  background: var(--mist);
  color: var(--ink);
}

/* 3. 文字组件
   ========================================================================== */
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
}

.kicker::before {
  content: "";
  width: 24px;
  height: 2px;
  background: currentColor;
}

.display-title {
  font-family: var(--font-display);
  font-size: clamp(2.7rem, 8vw, 6rem);
  line-height: 0.96;
  letter-spacing: -0.02em;
  font-weight: 900;
  max-width: 14ch;
}

.lede {
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  line-height: 1.85;
  max-width: 62ch;
  color: rgba(43, 32, 26, 0.72);
}

.section--dark .lede,
.page-hero .lede {
  color: rgba(247, 243, 234, 0.82);
}

.section-title {
  font-size: clamp(1.6rem, 3.2vw, 2.2rem);
}

.section-title[data-index]::before {
  content: attr(data-index);
  display: inline-block;
  margin-right: 12px;
  font-family: var(--font-mono);
  font-size: 0.6em;
  color: var(--orange);
  background: rgba(255, 107, 26, 0.1);
  border: 1px solid rgba(255, 107, 26, 0.2);
  padding: 2px 8px;
  border-radius: 4px;
  vertical-align: middle;
}

.section--dark .section-title {
  color: var(--cream);
}

/* 4. 按钮
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 6px;
  transition: background-color 0.16s var(--ease), color 0.16s var(--ease), transform 0.16s var(--ease), box-shadow 0.16s var(--ease);
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(0);
}

.btn--primary {
  background: var(--orange);
  color: var(--deep-blue);
  box-shadow: 0 4px 14px rgba(255, 107, 26, 0.25);
}

.btn--primary:hover {
  background: #ff8038;
  box-shadow: 0 8px 20px rgba(255, 107, 26, 0.35);
}

.btn--ghost {
  background: transparent;
  color: var(--deep-blue);
  border-color: currentColor;
}

.section--dark .btn--ghost,
.page-hero .btn--ghost {
  color: var(--cream);
}

.btn--ghost:hover {
  color: var(--orange);
  border-color: var(--orange);
}

.btn--small {
  padding: 10px 16px;
  font-size: 13px;
}

/* 5. 无障碍跳转与通用工具
   ========================================================================== */
.skip-to-content {
  position: absolute;
  top: -48px;
  left: 12px;
  z-index: 200;
  background: var(--orange);
  color: var(--deep-blue);
  font-weight: 700;
  padding: 10px 16px;
  border-radius: 6px;
  transition: top 0.15s var(--ease);
}

.skip-to-content:focus-visible {
  top: 8px;
}

.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* 6. 页头
   ========================================================================== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11, 29, 58, 0.97);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--cream);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.header__progress {
  position: absolute;
  top: 0;
  left: 0;
  height: 3px;
  width: var(--progress, 0%);
  background: linear-gradient(90deg, var(--orange) 0%, var(--gold) 100%);
  z-index: 2;
}

.header__inner {
  position: relative;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  flex: none;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--steel);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  position: relative;
  flex: none;
}

.brand-mark::after {
  content: "";
  position: absolute;
  right: 5px;
  bottom: 5px;
  width: 5px;
  height: 5px;
  background: var(--gold);
}

.brand-mark__ld {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 15px;
  letter-spacing: -0.02em;
  color: var(--orange);
  line-height: 1;
}

.brand-mark--footer {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(201, 162, 39, 0.5);
}

.header__brand-type {
  display: grid;
  gap: 2px;
  line-height: 1.2;
}

.header__brand-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.header__brand-sub {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--gold);
}

.header__nav {
  display: flex;
  align-items: center;
  gap: clamp(8px, 2vw, 28px);
}

.header__nav-list {
  display: flex;
  align-items: center;
  gap: 2px;
  counter-reset: header-nav;
}

.header__nav-item {
  counter-increment: header-nav;
}

.header__nav-link {
  position: relative;
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  padding: 10px 10px 12px;
  font-size: 15px;
  font-weight: 600;
  color: rgba(247, 243, 234, 0.78);
  transition: color 0.15s var(--ease);
}

.header__nav-link::before {
  content: counter(header-nav, decimal-leading-zero);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.02em;
  color: var(--orange);
  opacity: 0.75;
}

.header__nav-link::after {
  content: "";
  position: absolute;
  left: 8px;
  right: 8px;
  bottom: 2px;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), var(--gold));
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.18s var(--ease);
}

.header__nav-link:hover {
  color: var(--white);
}

.header__nav-link:hover::after {
  transform: scaleX(0.4);
}

.header__nav-link[aria-current="page"] {
  color: var(--white);
}

.header__nav-link[aria-current="page"]::after {
  transform: scaleX(1);
}

.header__nav-cta {
  flex: none;
}

.header__actions {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: none;
}

.header__cta-btn {
  flex: none;
}

.header__toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  transition: border-color 0.15s var(--ease);
}

.header__toggle:hover {
  border-color: var(--orange);
}

.header__toggle-line {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: transform 0.16s var(--ease), opacity 0.16s var(--ease);
}

.header__toggle[aria-expanded="true"] .header__toggle-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.header__toggle[aria-expanded="true"] .header__toggle-line:nth-child(2) {
  opacity: 0;
}

.header__toggle[aria-expanded="true"] .header__toggle-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* 页头桌面端：三栏网格，导航真正居中 */
@media (min-width: 992px) {
  .header__inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
  }

  .header__brand {
    justify-self: start;
  }

  .header__nav {
    justify-self: center;
  }

  .header__actions {
    justify-self: end;
  }

  .header__nav-cta {
    display: none;
  }

  .header__cta-btn {
    display: inline-flex;
  }
}

/* 页头移动端：抽屉导航 */
@media (max-width: 991.98px) {
  .header__inner {
    height: var(--header-h-sm);
  }

  .header__nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin-left: 0;
    background: var(--deep-blue);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 24px 40px -20px rgba(0, 0, 0, 0.6);
    padding: 8px 24px 24px;
    display: grid;
    gap: 0;
    max-height: calc(100vh - var(--header-h-sm));
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity 0.18s var(--ease), transform 0.18s var(--ease), visibility 0.18s;
  }

  .header__nav[data-open] {
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .header__nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
  }

  .header__nav-item {
    width: 100%;
  }

  .header__nav-link {
    width: 100%;
    justify-content: flex-start;
    padding: 14px 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    font-size: 16px;
  }

  .header__nav-link::after {
    left: 10px;
    right: auto;
    width: 48px;
  }

  .header__nav-cta {
    display: flex;
    margin-top: 18px;
  }

  .header__cta-btn {
    display: none;
  }

  .header__toggle {
    display: inline-flex;
  }
}

/* 7. 页脚
   ========================================================================== */
.footer {
  position: relative;
  background: var(--deep-blue);
  color: rgba(247, 243, 234, 0.7);
  border-top: 4px solid var(--crimson);
}

.footer::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
}

.footer__inner {
  max-width: var(--container);
  margin-inline: auto;
  padding: clamp(40px, 6vw, 64px) 24px 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 48px;
}

.footer__brand-col,
.footer__nav-col,
.footer__contact-col {
  display: grid;
  align-content: start;
  align-items: start;
  gap: 10px;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 6px;
}

.footer__brand-type {
  display: grid;
  gap: 2px;
}

.footer__brand-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 900;
  color: var(--white);
}

.footer__brand-sub {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--gold);
}

.footer__tagline {
  font-family: var(--font-serif);
  font-size: 15px;
  color: rgba(247, 243, 234, 0.82);
}

.footer__trust {
  font-size: 13px;
  line-height: 1.8;
  color: rgba(247, 243, 234, 0.58);
  max-width: 36ch;
}

.footer__heading {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  margin-bottom: 6px;
}

.footer__links {
  display: grid;
  gap: 10px;
}

.footer__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(247, 243, 234, 0.76);
  transition: color 0.15s var(--ease), transform 0.15s var(--ease);
}

.footer__link::before {
  content: "›";
  font-family: var(--font-mono);
  color: var(--orange);
}

.footer__link:hover {
  color: var(--white);
  transform: translateX(3px);
}

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

.footer__contact-item {
  display: grid;
  gap: 2px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.04);
  border-left: 2px solid var(--crimson);
  border-radius: 0 4px 4px 0;
}

.footer__contact-key {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--gold);
}

.footer__contact-value {
  font-size: 14px;
  color: rgba(247, 243, 234, 0.85);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__bottom-inner {
  max-width: var(--container);
  margin-inline: auto;
  padding: 18px 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 12px;
  color: rgba(247, 243, 234, 0.5);
}

.footer__icp {
  color: rgba(247, 243, 234, 0.7);
}

.footer__note {
  margin-left: auto;
  color: var(--gold);
}

/* 8. 面包屑
   ========================================================================== */
.breadcrumb {
  padding-block: 20px;
  font-size: 14px;
}

.breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.breadcrumb__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  opacity: 0.62;
}

.breadcrumb__item:not(:last-child)::after {
  content: "/";
  font-family: var(--font-mono);
  color: var(--orange);
}

.breadcrumb__item[aria-current="page"] {
  opacity: 1;
  font-weight: 600;
}

.breadcrumb__link {
  color: var(--deep-blue);
}

.breadcrumb__link:hover {
  color: var(--crimson);
  text-decoration: underline;
}

/* 9. 内页封面区
   ========================================================================== */
.page-hero {
  position: relative;
  overflow: hidden;
  background: var(--deep-blue);
  color: var(--cream);
  padding-block: clamp(48px, 8vw, 88px);
}

.page-hero::before {
  content: "";
  position: absolute;
  left: -80px;
  top: -80px;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(201, 162, 39, 0.3);
  transform: rotate(14deg);
}

.page-hero::after {
  content: "";
  position: absolute;
  right: -30px;
  bottom: -60px;
  width: 200px;
  height: 200px;
  background: rgba(255, 107, 26, 0.08);
  clip-path: polygon(0 0, 100% 0, 0 100%);
}

.page-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 16px;
}

.page-hero__title {
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  line-height: 1.02;
  max-width: 18ch;
}

.page-hero__desc {
  max-width: 60ch;
  color: rgba(247, 243, 234, 0.78);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  line-height: 1.8;
}

/* 10. 栅格与卡片
   ========================================================================== */
.grid {
  display: grid;
  gap: 24px;
}

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

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

.card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid rgba(11, 29, 58, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform 0.18s var(--ease), box-shadow 0.18s var(--ease), border-color 0.18s var(--ease);
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(255, 107, 26, 0.35);
}

.card:focus-within {
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}

.card__media {
  border-bottom: 1px solid rgba(11, 29, 58, 0.06);
}

.card__body {
  display: grid;
  gap: 10px;
  flex: 1;
  align-content: start;
  padding: 22px;
}

.card__title {
  font-size: 1.15rem;
}

.card__title a {
  color: inherit;
}

.card__title a:hover {
  color: var(--crimson);
}

.card__excerpt {
  font-size: 14px;
  color: rgba(43, 32, 26, 0.72);
}

.card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  padding-top: 12px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--orange);
}

.card__link::after {
  content: "→";
}

/* 11. 信息块与数据组件
   ========================================================================== */
.panel {
  padding: clamp(20px, 3vw, 32px);
  background: var(--white);
  border: 1px solid rgba(11, 29, 58, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.panel--dark {
  background: var(--steel);
  color: var(--cream);
  border-color: transparent;
  box-shadow: var(--shadow-md);
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 14px;
}

.stat {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 6px;
  padding: 20px 18px;
  background: rgba(11, 29, 58, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
}

.stat::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--orange);
}

.stat__num {
  font-family: var(--font-mono);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  line-height: 1;
  color: var(--gold);
}

.stat__label {
  font-size: 13px;
  letter-spacing: 0.08em;
  color: rgba(247, 243, 234, 0.7);
}

.data-line {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 20px;
  padding-block: 10px;
  border-bottom: 1px dashed rgba(11, 29, 58, 0.12);
  font-size: 14px;
}

.data-line__key {
  color: rgba(43, 32, 26, 0.6);
}

.data-line__value {
  font-family: var(--font-mono);
  font-weight: 600;
  text-align: right;
  color: var(--deep-blue);
}

.tag {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  line-height: 1;
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 107, 26, 0.35);
  color: var(--crimson);
  background: rgba(255, 107, 26, 0.06);
}

.tag--gold {
  border-color: rgba(201, 162, 39, 0.45);
  color: #8a6d12;
  background: rgba(201, 162, 39, 0.1);
}

/* 12. 图片容器与占位
   ========================================================================== */
.media-frame {
  position: relative;
  overflow: hidden;
  background: var(--steel);
  border: 1px solid rgba(11, 29, 58, 0.1);
  border-radius: 8px;
}

.media-frame--16x9 {
  aspect-ratio: 16 / 9;
}

.media-frame--4x3 {
  aspect-ratio: 4 / 3;
}

.media-frame--portrait {
  aspect-ratio: 3 / 4;
}

.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-frame--placeholder {
  background: linear-gradient(135deg, var(--deep-blue) 0%, var(--steel) 100%);
  border-color: rgba(255, 255, 255, 0.06);
}

.media-frame--placeholder::before {
  content: "PHOTO · 现场图片";
  position: absolute;
  inset: 12px;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px dashed rgba(247, 243, 234, 0.22);
  border-radius: 4px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: rgba(247, 243, 234, 0.4);
}

.media-frame--placeholder::after {
  content: "";
  position: absolute;
  top: 32%;
  left: -20px;
  width: 140px;
  height: 1px;
  background: rgba(255, 107, 26, 0.55);
  transform: rotate(-18deg);
}

.media-frame__caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 8px 12px;
  font-size: 12px;
  background: rgba(11, 29, 58, 0.8);
  color: rgba(247, 243, 234, 0.9);
}

/* 13. 链接列表
   ========================================================================== */
.link-list {
  display: grid;
}

.link-list a {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(11, 29, 58, 0.1);
  font-size: 15px;
  transition: color 0.15s var(--ease), padding-left 0.15s var(--ease);
}

.link-list a::after {
  content: "→";
  font-family: var(--font-mono);
  color: var(--orange);
}

.link-list a:hover {
  color: var(--crimson);
  padding-left: 4px;
}

.link-list--dark a {
  border-bottom-color: rgba(255, 255, 255, 0.1);
  color: rgba(247, 243, 234, 0.8);
}

/* 14. 响应式
   ========================================================================== */
@media (min-width: 769px) and (max-width: 1200px) {
  .grid--3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .grid--2,
  .grid--3 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .footer__grid {
    grid-template-columns: 1fr;
  }

  .footer__bottom-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .footer__note {
    margin-left: 0;
  }
}

/* 15. 降低动态偏好
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
