.page-home {
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  overflow-x: hidden;
}

.page-home .breadcrumb {
  padding: 1.5rem 0 0.5rem;
}

.page-home .breadcrumb .current {
  font-family: var(--font-data);
  color: var(--color-accent);
}

.page-home a {
  color: var(--color-accent);
  text-decoration: none;
}

.page-home a:hover {
  color: #9dffc4;
}

.page-home .btn-outline {
  border-color: var(--color-line);
  color: var(--color-text);
  background: transparent;
}

.page-home .btn-solid {
  color: var(--color-bg);
}

/* ===== 首屏拼贴 ===== */
.page-home .home-hero {
  padding: 1.5rem 0 3rem;
  position: relative;
}

.page-home .home-hero-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.page-home .home-hero-brand {
  animation: home-rise 0.5s ease both;
}

.page-home .home-hero-title {
  font-family: var(--font-headline);
  font-weight: 900;
  font-size: clamp(2rem, 6vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 1rem 0 1.25rem;
}

.page-home .home-hero-title-block {
  display: block;
  color: var(--color-accent);
}

.page-home .home-hero-lead {
  font-size: 1rem;
  line-height: 1.9;
  color: var(--color-text-muted);
  max-width: 46ch;
}

.page-home .home-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.page-home .home-hero-facts {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  margin: 1.5rem 0 0;
  padding: 0;
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.page-home .home-hero-facts li {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.page-home .home-hero-facts i {
  width: 6px;
  height: 6px;
  background: var(--color-accent);
  display: inline-block;
  box-shadow: 2px 2px 0 rgba(57, 255, 136, 0.3);
}

.page-home .home-hero-facts li:nth-child(2) i {
  background: var(--color-accent-alt);
  box-shadow: 2px 2px 0 rgba(255, 107, 53, 0.3);
}

.page-home .home-hero-figure {
  margin: 0;
  animation: home-rise 0.5s ease 0.1s both;
}

.page-home .home-hero-img {
  width: 100%;
  max-width: 800px;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid var(--color-line);
  background: var(--color-indigo);
}

/* ===== 现场数据仪表盘 ===== */
.page-home .home-dashboard {
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--color-line);
  padding: 1.25rem;
  animation: home-rise 0.5s ease 0.2s both;
}

.page-home .home-dashboard::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, transparent 50%, var(--color-accent) 50%);
  opacity: 0.3;
  pointer-events: none;
}

.page-home .home-dash-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
  padding-right: 2rem;
}

.page-home .home-dash-title {
  font-size: clamp(1.25rem, 3vw, 1.6rem);
  font-weight: 900;
  letter-spacing: -0.01em;
}

/* 凌晨数据模式 */
.page-home .home-night {
  position: relative;
}

.page-home .home-night-input {
  position: absolute;
  opacity: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  width: 1px;
  height: 1px;
}

.page-home .home-night-label {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  cursor: pointer;
  font-family: var(--font-data);
  font-size: 0.85rem;
  color: var(--color-text-muted);
  border: 1px solid var(--color-line);
  padding: 0.5rem 0.75rem;
  background: rgba(10, 20, 40, 0.6);
  user-select: none;
}

.page-home .home-night-switch {
  width: 34px;
  height: 18px;
  border: 1px solid var(--color-line);
  position: relative;
  background: var(--color-bg);
  transition: background 0.2s ease;
}

.page-home .home-night-switch::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 12px;
  height: 12px;
  background: var(--color-accent-alt);
  transition: transform 0.2s ease;
}

.page-home .home-night-input:focus-visible ~ .home-night-label {
  outline: 2px dashed var(--color-accent);
  outline-offset: 4px;
}

.page-home:has(.home-night-input:checked) .home-night-switch {
  background: var(--color-burgundy);
}

.page-home:has(.home-night-input:checked) .home-night-switch::after {
  transform: translateX(16px);
  background: var(--color-accent);
}

.page-home:has(.home-night-input:checked) .home-dashboard {
  border-color: rgba(255, 107, 53, 0.55);
}

.page-home:has(.home-night-input:checked) .home-dash-title {
  color: var(--color-accent-alt);
}

.page-home:has(.home-night-input:checked) .home-dash-card-value {
  color: var(--color-accent-alt);
}

/* 仪表盘网格与卡片 */
.page-home .home-dash-grid {
  display: grid;
  gap: 1rem;
}

.page-home .home-dash-card {
  background: rgba(10, 20, 40, 0.72);
  border: 1px solid var(--color-line);
  border-top: 3px solid var(--color-accent);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.page-home .home-dash-card--burgundy {
  border-top-color: var(--color-burgundy);
  background: rgba(110, 20, 35, 0.18);
}

.page-home .home-dash-card-label {
  font-family: var(--font-data);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin: 0;
}

.page-home .home-dash-card-value {
  font-family: var(--font-data);
  font-size: clamp(2.2rem, 5vw, 3rem);
  font-weight: 700;
  line-height: 1;
  color: var(--color-accent);
  margin: 0;
  font-variant-numeric: tabular-nums;
}

.page-home .home-dash-unit {
  font-size: 0.45em;
  color: var(--color-text-muted);
  margin-left: 4px;
}

.page-home .home-dash-card-note {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin: 0;
}

.page-home .home-dash-card-meta {
  font-family: var(--font-data);
  font-size: 0.78rem;
  color: var(--color-text-muted);
  margin: 0;
  padding-top: 0.35rem;
  border-top: 1px dashed rgba(244, 247, 251, 0.14);
}

.page-home .home-progress {
  height: 6px;
  background: rgba(244, 247, 251, 0.08);
  margin: 0.5rem 0;
}

.page-home .home-progress span {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--color-accent), #9dffc4);
}

.page-home .home-progress--alt span {
  background: linear-gradient(90deg, var(--color-accent-alt), #ffb08c);
}

.page-home .home-dash-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.25rem;
  font-family: var(--font-data);
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.page-home .home-dash-list li {
  display: inline-flex;
  gap: 0.4rem;
  align-items: baseline;
}

.page-home .home-dash-list strong {
  color: var(--color-text);
  font-size: 1.1rem;
}

.page-home .home-donut {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: conic-gradient(
    #ffd166 0% 83%,
    var(--color-burgundy) 83% 100%
  );
  position: relative;
}

.page-home .home-donut::after {
  content: "";
  position: absolute;
  inset: 18%;
  background: var(--color-bg);
  border-radius: 50%;
}

.page-home .home-donut-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  font-family: var(--font-data);
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

.page-home .home-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 4px;
}

.page-home .home-dot--yellow {
  background: #ffd166;
}

.page-home .home-dot--red {
  background: var(--color-burgundy);
}

.page-home .home-dash-foot {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1rem;
  padding-top: 0.75rem;
  border-top: 1px dashed var(--color-line);
  font-family: var(--font-data);
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.page-home .home-dash-foot p {
  margin: 0;
}

/* ===== 六大联赛切换矩阵 ===== */
.page-home .home-leagues {
  background: var(--color-indigo);
  padding: 3rem 0 4rem;
  position: relative;
  overflow: hidden;
}

.page-home .home-leagues::after {
  content: "";
  position: absolute;
  right: -10%;
  bottom: -10%;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(57, 255, 136, 0.16) 0%, transparent 62%);
  pointer-events: none;
}

.page-home .home-section-head {
  max-width: 780px;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.page-home .home-section-head .section-title {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-top: 0.75rem;
}

.page-home .home-section-head .section-intro {
  color: var(--color-text-muted);
  margin-top: 0.75rem;
  line-height: 1.8;
}

.page-home .home-topology {
  margin: 2rem 0;
  overflow-x: auto;
}

.page-home .home-topology-svg {
  display: block;
  width: 100%;
  max-width: 720px;
  height: auto;
  margin: 0 auto;
}

.page-home .home-league-switcher {
  position: relative;
  z-index: 1;
}

.page-home .home-league-radio {
  position: absolute;
  opacity: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  width: 1px;
  height: 1px;
}

.page-home .home-league-radio:focus-visible ~ .home-league-tabs {
  outline: 2px dashed var(--color-accent);
  outline-offset: 4px;
}

.page-home .home-league-tabs {
  display: flex;
  gap: 0.5rem;
  flex-wrap: nowrap;
  overflow-x: auto;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--color-line);
  margin-bottom: 1.5rem;
  scrollbar-width: thin;
}

.page-home .home-league-tab {
  flex: 0 0 auto;
  font-family: var(--font-data);
  font-size: 0.9rem;
  padding: 0.6rem 1rem;
  border: 1px solid var(--color-line);
  color: var(--color-text-muted);
  cursor: pointer;
  background: transparent;
  transition: border-color 0.15s ease, color 0.15s ease, background 0.15s ease;
}

.page-home #home-league-premier:checked ~ .home-league-tabs label[for="home-league-premier"],
.page-home #home-league-laliga:checked ~ .home-league-tabs label[for="home-league-laliga"],
.page-home #home-league-bundesliga:checked ~ .home-league-tabs label[for="home-league-bundesliga"],
.page-home #home-league-seriea:checked ~ .home-league-tabs label[for="home-league-seriea"],
.page-home #home-league-ligue1:checked ~ .home-league-tabs label[for="home-league-ligue1"],
.page-home #home-league-csl:checked ~ .home-league-tabs label[for="home-league-csl"] {
  border-color: var(--color-accent);
  color: var(--color-accent);
  background: rgba(57, 255, 136, 0.08);
  box-shadow: 0 1px 0 0 var(--color-accent);
}

.page-home .home-league-panel {
  display: none;
  background: rgba(10, 20, 40, 0.5);
  border: 1px solid var(--color-line);
  padding: 1.25rem;
}

.page-home #home-league-premier:checked ~ .home-league-panels .home-league-panel[data-league="premier"],
.page-home #home-league-laliga:checked ~ .home-league-panels .home-league-panel[data-league="laliga"],
.page-home #home-league-bundesliga:checked ~ .home-league-panels .home-league-panel[data-league="bundesliga"],
.page-home #home-league-seriea:checked ~ .home-league-panels .home-league-panel[data-league="seriea"],
.page-home #home-league-ligue1:checked ~ .home-league-panels .home-league-panel[data-league="ligue1"],
.page-home #home-league-csl:checked ~ .home-league-panels .home-league-panel[data-league="csl"] {
  display: grid;
  gap: 1.5rem;
  animation: home-panel-in 0.3s ease both;
}

.page-home .home-league-panel-main {
  min-width: 0;
}

.page-home .home-league-panel-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.page-home .home-league-name {
  font-family: var(--font-headline);
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: -0.01em;
  margin: 0;
}

.page-home .home-league-metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem 1.5rem;
  margin: 0;
}

.page-home .home-league-metrics div {
  border-left: 2px solid var(--color-accent);
  padding-left: 0.75rem;
}

.page-home .home-league-metrics dt {
  font-family: var(--font-data);
  font-size: 0.75rem;
  color: var(--color-text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.page-home .home-league-metrics dd {
  margin: 0.2rem 0 0;
  font-family: var(--font-data);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-text);
  font-variant-numeric: tabular-nums;
}

.page-home .home-league-panel-side {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
  justify-content: center;
  border-top: 1px dashed var(--color-line);
  padding-top: 1rem;
}

.page-home .home-league-update {
  font-family: var(--font-data);
  font-size: 0.85rem;
  color: var(--color-accent);
  margin: 0;
  background: rgba(57, 255, 136, 0.07);
  border: 1px solid rgba(57, 255, 136, 0.25);
  padding: 0.5rem 0.75rem;
}

/* ===== 周末红黄牌对照 ===== */
.page-home .home-weekend {
  background: var(--color-deep-teal);
  padding: 3rem 0 4rem;
}

.page-home .home-weekend-grid {
  display: grid;
  gap: 1.5rem;
  align-items: start;
}

.page-home .home-weekend-card {
  background: rgba(10, 20, 40, 0.55);
  border: 1px solid var(--color-line);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.page-home .home-weekend-card-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.75rem;
}

.page-home .home-weekend-round {
  font-family: var(--font-data);
  font-size: 0.78rem;
  color: var(--color-text-muted);
  letter-spacing: 0.08em;
  margin: 0;
}

.page-home .home-weekend-card-head h3 {
  font-size: 1.25rem;
  font-weight: 900;
  margin: 0.25rem 0 0;
}

.page-home .home-event-timeline {
  list-style: none;
  margin: 0 0 0 10px;
  padding: 0.25rem 0 0.5rem 1.25rem;
  border-left: 2px solid rgba(244, 247, 251, 0.18);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.page-home .home-event-timeline li {
  position: relative;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-text);
}

.page-home .home-event-timeline li::before {
  content: "";
  position: absolute;
  left: -1.42rem;
  top: 0.45em;
  width: 8px;
  height: 8px;
  background: var(--color-text-muted);
  border-radius: 50%;
}

.page-home .home-card-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  font-family: var(--font-data);
  font-size: 0.7rem;
  color: var(--color-bg);
  font-weight: 700;
}

.page-home .home-card-mark--yellow {
  background: #ffd166;
}

.page-home .home-card-mark--red {
  background: #e63946;
  color: var(--color-text);
}

.page-home .home-card-events {
  border-top: 1px dashed var(--color-line);
  padding-top: 0.5rem;
  margin-top: auto;
}

.page-home .home-card-events summary {
  cursor: pointer;
  list-style: none;
  font-family: var(--font-data);
  font-size: 0.85rem;
  color: var(--color-accent);
  padding: 0.25rem 0;
}

.page-home .home-card-events summary::-webkit-details-marker {
  display: none;
}

.page-home .home-card-events summary::before {
  content: "+ ";
}

.page-home .home-card-events[open] summary::before {
  content: "− ";
}

.page-home .home-card-events p {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  margin: 0.5rem 0 0;
  line-height: 1.7;
}

.page-home .home-weekend-compare {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  text-align: center;
  background: rgba(255, 107, 53, 0.08);
  border: 1px dashed rgba(255, 107, 53, 0.55);
  padding: 1.5rem 1rem;
}

.page-home .home-compare-num {
  font-family: var(--font-data);
  font-size: 4rem;
  line-height: 1;
  color: var(--color-accent-alt);
  font-weight: 700;
  margin: 0;
}

.page-home .home-compare-num span {
  font-size: 0.28em;
  color: var(--color-text-muted);
  margin-left: 4px;
}

.page-home .home-compare-label {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin: 0;
}

.page-home .home-compare-mini {
  font-family: var(--font-data);
  font-size: 1rem;
  color: var(--color-text);
  margin: 0;
}

.page-home .home-compare-mini span {
  font-size: 1.4rem;
  color: var(--color-accent-alt);
  font-weight: 700;
}

.page-home .home-compare-note {
  font-family: var(--font-data);
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin: 0;
}

.page-home .home-weekend-compare a {
  margin-top: 0.75rem;
  color: var(--color-accent);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}

.page-home .home-weekend-figure {
  margin: 0;
}

.page-home .home-weekend-figure img {
  width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: cover;
  border: 1px solid var(--color-line);
  background: var(--color-bg);
}

/* ===== 跨设备自动同步 ===== */
.page-home .home-sync {
  background: var(--color-burgundy);
  padding: 3rem 0 4rem;
}

.page-home .home-sync-grid {
  display: grid;
  gap: 2rem;
}

.page-home .home-sync-copy {
  max-width: 640px;
}

.page-home .home-sync-steps {
  list-style: none;
  margin: 1.75rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.page-home .home-sync-steps li {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 0.75rem;
  align-items: start;
  border: 1px solid rgba(244, 247, 251, 0.16);
  background: rgba(10, 20, 40, 0.28);
  padding: 0.85rem;
}

.page-home .home-step-num {
  font-family: var(--font-data);
  font-size: 0.9rem;
  color: var(--color-accent-alt);
  border: 1px solid rgba(255, 107, 53, 0.6);
  width: 2rem;
  height: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.page-home .home-sync-steps h3 {
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 0.25rem;
}

.page-home .home-sync-steps p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin: 0;
  line-height: 1.6;
}

.page-home .home-sync-links {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.page-home .home-sync-figure {
  margin: 0;
}

.page-home .home-sync-figure img {
  width: 100%;
  max-width: 480px;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border: 1px solid rgba(244, 247, 251, 0.2);
  background: var(--color-indigo);
  box-shadow: 18px 18px 0 rgba(0, 0, 0, 0.22);
}

/* ===== 最新战报与内容更新 ===== */
.page-home .home-journal {
  background: var(--color-bg);
  padding: 3rem 0 4rem;
}

.page-home .home-journal-grid {
  display: grid;
  gap: 1rem;
}

.page-home .home-journal-item {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--color-line);
  border-left: 3px solid var(--color-accent);
  padding: 1.1rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.page-home .home-journal-item:nth-child(3n) {
  border-left-color: var(--color-accent-alt);
}

.page-home .home-journal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  font-family: var(--font-data);
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

.page-home .home-journal-date {
  letter-spacing: 0.04em;
}

.page-home .home-journal-title {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.45;
}

.page-home .home-journal-title a {
  color: var(--color-text);
  text-decoration: none;
}

.page-home .home-journal-title a:hover {
  color: var(--color-accent);
}

.page-home .home-journal-excerpt {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

.page-home .home-journal-more {
  margin-top: 2rem;
}

/* ===== 信任声明 ===== */
.page-home .home-trust {
  padding: 2rem 0 3rem;
}

.page-home .notice-box p {
  margin-bottom: 0;
}

.page-home .notice-box a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ===== 动效与动画 ===== */
@keyframes home-rise {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes home-panel-in {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== 桌面端网格增强 ===== */
@media (min-width: 720px) {
  .page-home .home-dash-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .page-home .home-dash-card--wide {
    grid-column: 1 / -1;
  }

  .page-home .home-league-metrics {
    grid-template-columns: repeat(3, 1fr);
  }

  .page-home .home-journal-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .page-home .home-weekend-figure img {
    max-height: 380px;
  }
}

@media (min-width: 860px) {
  .page-home .home-sync-grid {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
  }

  .page-home .home-league-panel {
    grid-template-columns: 2fr 1fr;
  }

  .page-home .home-league-panel-side {
    border-top: 0;
    border-left: 1px dashed var(--color-line);
    padding: 0 0 0 1.5rem;
  }
}

@media (min-width: 960px) {
  .page-home .home-hero-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: var(--gutter);
    align-items: start;
  }

  .page-home .home-hero-brand {
    grid-column: 1 / 6;
  }

  .page-home .home-hero-figure {
    grid-column: 7 / 13;
    margin-top: 3rem;
  }

  .page-home .home-dashboard {
    grid-column: 2 / 13;
    margin-top: 1rem;
  }

  .page-home .home-weekend-grid {
    grid-template-columns: 1fr 0.7fr 1fr;
    grid-template-areas:
      "sat compare sun"
      "figure figure figure";
  }

  .page-home .home-weekend-card--sat {
    grid-area: sat;
  }

  .page-home .home-weekend-compare {
    grid-area: compare;
    align-self: stretch;
  }

  .page-home .home-weekend-card--sun {
    grid-area: sun;
  }

  .page-home .home-weekend-figure {
    grid-area: figure;
  }
}

@media (min-width: 1080px) {
  .page-home .home-dash-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .page-home .home-dash-card--wide {
    grid-column: span 2;
  }
}

/* ===== 减少动效偏好 ===== */
@media (prefers-reduced-motion: reduce) {
  .page-home *,
  .page-home *::before,
  .page-home *::after {
    animation: none !important;
    transition: none !important;
  }
}
