.page-home {
  --home-mark-size: 150px;
  --home-gap: clamp(16px, 3vw, 32px);
  background: var(--off-white);
  overflow-x: hidden;
}

/* ==================== HERO ==================== */
.page-home .home-hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  background: var(--primary-deep-green);
  color: var(--pure-white);
  overflow: hidden;
  isolation: isolate;
}

.page-home .home-hero__bg {
  position: absolute;
  inset: 0;
  z-index: -3;
}

.page-home .home-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.22;
  transform: scale(1.05);
}

.page-home .home-hero__shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(165deg, rgba(11, 61, 46, 0.38) 0%, rgba(11, 61, 46, 0.76) 55%, var(--primary-deep-green) 94%);
}

.page-home .home-hero::after {
  content: '';
  position: absolute;
  right: -80px;
  bottom: -80px;
  width: 280px;
  height: 280px;
  border: 2px solid rgba(212, 175, 55, 0.3);
  border-radius: 50%;
  z-index: -1;
  pointer-events: none;
}

.page-home .home-hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: 110px;
  padding-bottom: 56px;
}

.page-home .home-hero__crumb {
  font-family: var(--data-font);
  font-size: 0.8125rem;
  letter-spacing: 0.16em;
  color: var(--secondary-gold);
  margin-bottom: 24px;
  text-transform: uppercase;
}

.page-home .home-hero__eyebrow {
  display: inline-block;
  font-family: var(--data-font);
  font-size: 0.875rem;
  letter-spacing: 0.2em;
  color: var(--secondary-gold);
  border: 1px solid rgba(212, 175, 55, 0.45);
  padding: 6px 14px;
  margin-bottom: 18px;
}

.page-home .home-hero__main h1 {
  font-family: var(--heading-font);
  font-size: clamp(2rem, 5.4vw, 4rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  color: var(--pure-white);
}

.page-home .home-hero__lead {
  max-width: 680px;
  font-size: 1.0625rem;
  line-height: 1.9;
  color: rgba(245, 240, 232, 0.88);
  margin-bottom: 28px;
}

.page-home .home-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.page-home .home-hero .btn--ghost {
  border-color: rgba(245, 240, 232, 0.55);
  color: var(--off-white);
}

.page-home .home-hero .btn--ghost:hover {
  background: var(--off-white);
  color: var(--primary-deep-green);
}

/* ---- 章节导览 ---- */
.page-home .home-hero__chapters {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin-top: 56px;
  border-top: 1px solid rgba(212, 175, 55, 0.3);
  padding-top: 24px;
}

.page-home .home-chapter {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid rgba(212, 175, 55, 0.25);
  background: rgba(10, 10, 10, 0.28);
  color: var(--off-white);
  text-decoration: none;
  transition: border-color 0.3s, background 0.3s;
}

.page-home .home-chapter__index {
  font-family: var(--data-font);
  font-weight: 700;
  font-size: 0.8125rem;
  color: var(--secondary-gold);
  flex-shrink: 0;
}

.page-home .home-chapter__label {
  font-family: var(--heading-font);
  font-size: 1.0625rem;
}

.page-home .home-chapter__desc {
  margin-left: auto;
  font-family: var(--body-font);
  font-size: 0.8125rem;
  color: rgba(245, 240, 232, 0.65);
}

.page-home .home-chapter:hover {
  border-color: var(--secondary-gold);
  background: rgba(212, 175, 55, 0.12);
}

/* ==================== 通用区块 ==================== */
.page-home .home-section-head {
  margin-bottom: 40px;
}

.page-home .home-section-head h2 {
  font-family: var(--heading-font);
  font-size: clamp(1.75rem, 3.4vw, 2.75rem);
  line-height: 1.2;
  color: var(--primary-deep-green);
  margin: 18px 0 12px;
}

.page-home .home-section-head p {
  max-width: 640px;
  color: var(--neutral-gray);
  line-height: 1.85;
  font-size: 0.9375rem;
}

.page-home .home-section-head--center {
  text-align: center;
  margin-inline: auto;
}

.page-home .home-section-head--center p {
  margin-inline: auto;
}

.page-home .home-section-head--row p {
  margin-top: 8px;
}

/* ==================== 对阵表 ==================== */
.page-home .home-fixtures {
  position: relative;
  background: var(--off-white);
  padding: 72px 0;
}

.page-home .home-fixtures::before {
  content: '32';
  position: absolute;
  right: 4%;
  top: 40px;
  font-family: var(--data-font);
  font-size: var(--home-mark-size);
  line-height: 1;
  color: rgba(11, 61, 46, 0.06);
  z-index: 0;
  pointer-events: none;
}

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

.page-home .home-fixtures__week {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}

.page-home .home-fixtures__week-label {
  font-family: var(--data-font);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  color: var(--neutral-gray);
  text-transform: uppercase;
  margin-right: 6px;
}

.page-home .home-fixtures__week-tabs {
  display: flex;
  gap: 6px;
}

.page-home .home-fixtures__tab {
  font-family: var(--data-font);
  font-size: 0.875rem;
  padding: 8px 16px;
  border: 1px solid #cfcabf;
  background: var(--pure-white);
  color: var(--neutral-gray);
  cursor: pointer;
  transition: all 0.3s;
}

.page-home .home-fixtures__tab:not(:disabled):hover {
  border-color: var(--primary-deep-green);
  color: var(--primary-deep-green);
}

.page-home .home-fixtures__tab.is-active {
  background: var(--primary-deep-green);
  border-color: var(--primary-deep-green);
  color: var(--secondary-gold);
  font-weight: 700;
}

.page-home .home-fixtures__tab:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.page-home .home-fixtures__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.page-home .home-match {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 20px;
  background: var(--pure-white);
  border: 1px solid #e2dccc;
  border-top-width: 4px;
  border-top-color: var(--secondary-gold);
  position: relative;
  transition: box-shadow 0.3s, transform 0.3s;
}

.page-home .home-match:hover {
  box-shadow: 0 12px 32px rgba(11, 61, 46, 0.12);
  transform: translateY(-2px);
}

.page-home .home-match__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-home .home-match__league {
  font-family: var(--data-font);
  font-size: 0.6875rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--neutral-gray);
}

.page-home .home-match__badge {
  background: var(--accent-brick-red);
  color: var(--off-white);
  font-family: var(--data-font);
  font-size: 0.6875rem;
  padding: 3px 10px;
  letter-spacing: 0.08em;
}

.page-home .home-match__line {
  display: flex;
  align-items: center;
  gap: 12px;
}

.page-home .home-match__team {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.page-home .home-match__team--away {
  text-align: right;
  align-items: flex-end;
}

.page-home .home-match__name {
  font-family: var(--heading-font);
  font-size: 1.125rem;
  color: var(--primary-deep-green);
  line-height: 1.3;
}

.page-home .home-match__rank {
  font-family: var(--data-font);
  font-size: 0.75rem;
  color: var(--neutral-gray);
}

.page-home .home-match__score {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--data-font);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--accent-brick-red);
  background: var(--gold-tint);
  padding: 4px 14px;
  border-radius: 2px;
}

.page-home .home-match__dash {
  color: var(--neutral-gray);
  font-size: 1.5rem;
  font-weight: 400;
}

.page-home .home-match__note {
  border-top: 1px dashed #e0dbd0;
  padding-top: 12px;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--neutral-gray);
}

.page-home .home-fixtures__more {
  margin-top: 32px;
  text-align: center;
}

.page-home .home-fixtures__deco {
  position: absolute;
  right: 0;
  bottom: 24px;
  width: 220px;
  opacity: 0.35;
  z-index: 0;
  border: 1px solid rgba(212, 175, 55, 0.35);
  padding: 6px;
  background: var(--pure-white);
  box-shadow: 0 16px 40px rgba(11, 61, 46, 0.1);
  pointer-events: none;
}

.page-home .home-fixtures__deco img {
  width: 100%;
  height: auto;
  display: block;
}

/* ==================== 战报 ==================== */
.page-home .home-reports {
  position: relative;
  background: var(--light-green-tint);
  padding: 72px 0 80px;
}

.page-home .home-reports::before {
  content: '';
  position: absolute;
  top: -18px;
  left: 0;
  width: 100%;
  height: 36px;
  background: var(--light-green-tint);
  transform: skewY(-1deg);
  transform-origin: left center;
  z-index: 1;
}

.page-home .home-section-head--row p {
  margin-top: 0;
}

.page-home .home-reports__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.page-home .home-report {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: var(--pure-white);
  border: 1px solid #d9d5ca;
  padding: 24px 20px 18px;
  overflow: hidden;
  transition: box-shadow 0.3s, transform 0.3s;
}

.page-home .home-report::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--secondary-gold) 0%, var(--accent-brick-red) 100%);
}

.page-home .home-report:hover {
  box-shadow: 0 12px 32px rgba(11, 61, 46, 0.1);
  transform: translateY(-2px);
}

.page-home .home-report__ribbon {
  position: absolute;
  right: -26px;
  top: 12px;
  background: var(--primary-deep-green);
  color: var(--secondary-gold);
  font-family: var(--data-font);
  font-size: 0.6875rem;
  padding: 4px 30px;
  transform: rotate(35deg);
  letter-spacing: 0.1em;
}

.page-home .home-report__ribbon--promo {
  background: var(--accent-brick-red);
  color: var(--off-white);
}

.page-home .home-report__body h3 {
  font-family: var(--heading-font);
  font-size: 1.1875rem;
  line-height: 1.4;
  color: var(--primary-deep-green);
  margin: 0;
}

.page-home .home-report__body h3 a {
  color: inherit;
  text-decoration: none;
}

.page-home .home-report__body h3 a:hover {
  color: var(--accent-brick-red);
}

.page-home .home-report__summary {
  margin-top: 8px;
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--neutral-gray);
}

.page-home .home-report__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px dashed #e0dbd0;
  padding-top: 12px;
}

.page-home .home-report__league {
  font-family: var(--data-font);
  font-size: 0.75rem;
  color: var(--neutral-gray);
}

.page-home .home-report__speed {
  font-family: var(--data-font);
  font-size: 0.75rem;
  color: var(--primary-deep-green);
  background: var(--gold-tint);
  padding: 3px 10px;
}

/* ==================== 视频集锦 ==================== */
.page-home .home-highlights {
  position: relative;
  background: var(--deep-black);
  color: var(--off-white);
  padding: 88px 0;
  overflow: hidden;
  isolation: isolate;
}

.page-home .home-highlights__bg {
  position: absolute;
  inset: 0;
  z-index: -3;
}

.page-home .home-highlights__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.page-home .home-highlights__veil {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(90deg, rgba(10, 10, 10, 0.94) 0%, rgba(10, 10, 10, 0.55) 60%, rgba(10, 10, 10, 0.75) 100%);
}

.page-home .home-highlights::after {
  content: '';
  position: absolute;
  left: -50px;
  bottom: -50px;
  width: 180px;
  height: 180px;
  border: 2px solid rgba(212, 175, 55, 0.25);
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}

.page-home .home-highlights .container {
  position: relative;
  z-index: 1;
}

.page-home .home-highlights__head h2 {
  font-family: var(--heading-font);
  font-size: clamp(1.75rem, 3.4vw, 2.75rem);
  line-height: 1.2;
  color: var(--off-white);
  margin: 18px 0 12px;
}

.page-home .home-highlights__head p {
  max-width: 620px;
  color: rgba(245, 240, 232, 0.75);
  line-height: 1.85;
  font-size: 0.9375rem;
}

.page-home .home-highlights__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 40px 0;
  border-top: 1px solid rgba(212, 175, 55, 0.3);
  border-bottom: 1px solid rgba(212, 175, 55, 0.3);
  padding: 24px 0;
}

.page-home .home-highlights__stat {
  text-align: center;
  padding: 8px 4px;
}

.page-home .home-highlights__stat .data-text {
  display: block;
  font-family: var(--data-font);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--secondary-gold);
  line-height: 1.2;
}

.page-home .home-highlights__stat-label {
  font-size: 0.8125rem;
  color: rgba(245, 240, 232, 0.65);
  margin-top: 6px;
  display: block;
}

.page-home .home-highlights__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.page-home .home-highlight {
  border: 1px solid rgba(212, 175, 55, 0.3);
  background: rgba(255, 255, 255, 0.06);
  padding: 24px;
  transition: background 0.3s, border-color 0.3s;
  position: relative;
}

.page-home .home-highlight::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--secondary-gold);
}

.page-home .home-highlight:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--secondary-gold);
}

.page-home .home-highlight__tag {
  display: inline-block;
  font-family: var(--data-font);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  color: var(--accent-brick-red);
  background: var(--gold-tint);
  padding: 4px 10px;
  margin-bottom: 12px;
}

.page-home .home-highlight h3 {
  font-family: var(--heading-font);
  font-size: 1.1875rem;
  color: var(--off-white);
  margin-bottom: 8px;
}

.page-home .home-highlight p {
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgba(245, 240, 232, 0.7);
  margin: 0;
}

/* ==================== 伤停检索 ==================== */
.page-home .home-injuries {
  position: relative;
  background: var(--pure-white);
  padding: 76px 0;
}

.page-home .home-injuries::before {
  content: 'INJ';
  position: absolute;
  left: -20px;
  top: 30px;
  font-family: var(--data-font);
  font-size: var(--home-mark-size);
  line-height: 1;
  color: rgba(212, 175, 55, 0.12);
  z-index: 0;
  pointer-events: none;
  letter-spacing: -0.04em;
}

.page-home .home-injuries .container {
  position: relative;
  z-index: 1;
}

.page-home .home-injuries__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
}

.page-home .home-injuries__search {
  background: var(--off-white);
  border: 1px solid #e0dbd0;
  padding: 20px;
  margin: 28px 0;
}

.page-home .home-injuries__group + .home-injuries__group {
  margin-top: 20px;
  border-top: 1px solid #e0dbd0;
  padding-top: 20px;
}

.page-home .home-injuries__label {
  display: block;
  font-family: var(--data-font);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  color: var(--neutral-gray);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.page-home .home-injuries__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.page-home .home-injuries__chip {
  border: 1px solid #cfcabf;
  background: var(--pure-white);
  color: var(--dark-text);
  font-family: var(--body-font);
  font-size: 0.875rem;
  padding: 8px 14px;
  cursor: pointer;
  transition: all 0.3s;
}

.page-home .home-injuries__chip:hover {
  border-color: var(--primary-deep-green);
  color: var(--primary-deep-green);
}

.page-home .home-injuries__chip.is-active {
  background: var(--primary-deep-green);
  border-color: var(--primary-deep-green);
  color: var(--secondary-gold);
  font-weight: 600;
}

.page-home .home-injuries__results {
  border-top: 2px solid var(--primary-deep-green);
}

.page-home .home-injury {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: start;
  padding: 16px 0;
  border-bottom: 1px dashed #e0dbd0;
}

.page-home .home-injury__badge {
  font-family: var(--data-font);
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
  color: var(--off-white);
  background: var(--accent-brick-red);
  padding: 4px 10px;
  white-space: nowrap;
}

.page-home .home-injury__badge--warn {
  background: var(--neutral-gray);
  color: var(--off-white);
}

.page-home .home-injury__info h3 {
  font-family: var(--heading-font);
  font-size: 1rem;
  color: var(--dark-text);
  margin-bottom: 4px;
}

.page-home .home-injury__info p {
  font-size: 0.8125rem;
  color: var(--neutral-gray);
  line-height: 1.6;
  margin: 0;
}

.page-home .home-injury__round {
  font-family: var(--data-font);
  font-size: 0.75rem;
  color: var(--neutral-gray);
  white-space: nowrap;
}

.page-home .home-injuries__more {
  margin-top: 16px;
}

.page-home .home-injuries__more a {
  font-family: var(--body-font);
  font-size: 0.875rem;
  color: var(--primary-deep-green);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 2px solid var(--secondary-gold);
  padding-bottom: 2px;
}

.page-home .home-injuries__more a:hover {
  color: var(--accent-brick-red);
}

.page-home .home-injuries__visual img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border: 1px solid #e0dbd0;
  box-shadow: 18px 18px 0 rgba(11, 61, 46, 0.08);
}

/* ==================== 会员权益 ==================== */
.page-home .home-membership {
  position: relative;
  background: var(--primary-deep-green);
  color: var(--off-white);
  padding: 80px 0 88px;
  overflow: hidden;
}

.page-home .home-membership::before {
  content: 'VIP';
  position: absolute;
  right: 0;
  top: 24px;
  font-family: var(--data-font);
  font-size: var(--home-mark-size);
  line-height: 1;
  color: rgba(212, 175, 55, 0.1);
  z-index: 0;
  pointer-events: none;
}

.page-home .home-membership::after {
  content: '';
  position: absolute;
  left: -60px;
  top: -60px;
  width: 220px;
  height: 220px;
  border: 2px solid rgba(212, 175, 55, 0.18);
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}

.page-home .home-membership .container {
  position: relative;
  z-index: 1;
}

.page-home .home-membership .home-section-head h2 {
  color: var(--off-white);
}

.page-home .home-membership .home-section-head p {
  color: rgba(245, 240, 232, 0.72);
}

.page-home .home-membership__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 36px;
}

.page-home .home-benefit {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(212, 175, 55, 0.25);
  padding: 24px 22px;
  position: relative;
  transition: background 0.3s, border-color 0.3s;
}

.page-home .home-benefit:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(212, 175, 55, 0.6);
}

.page-home .home-benefit__num {
  display: block;
  font-family: var(--data-font);
  font-size: 0.8125rem;
  color: var(--secondary-gold);
  margin-bottom: 10px;
}

.page-home .home-benefit h3 {
  font-family: var(--heading-font);
  font-size: 1.125rem;
  color: var(--off-white);
  margin-bottom: 8px;
}

.page-home .home-benefit p {
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgba(245, 240, 232, 0.7);
  margin: 0;
}

.page-home .home-membership__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 8px;
}

.page-home .home-membership .btn--ghost {
  border-color: rgba(245, 240, 232, 0.5);
  color: var(--off-white);
}

.page-home .home-membership .btn--ghost:hover {
  background: var(--off-white);
  color: var(--primary-deep-green);
}

/* ==================== 侧栏订阅 ==================== */
.page-home .home-side-cta {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 60;
  width: 92px;
  display: none;
  text-align: center;
  background: var(--secondary-gold);
  color: var(--primary-deep-green);
  padding: 16px 10px;
  border-radius: 2px;
  box-shadow: 0 12px 32px rgba(11, 61, 46, 0.25);
}

.page-home .home-side-cta__dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-brick-red);
  margin-bottom: 8px;
  animation: home-cta-pulse 2.4s infinite;
}

@keyframes home-cta-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

.page-home .home-side-cta__title {
  font-family: var(--heading-font);
  font-size: 0.9375rem;
  line-height: 1.4;
  margin-bottom: 12px;
}

.page-home .home-side-cta__link {
  display: inline-block;
  font-family: var(--data-font);
  font-size: 0.8125rem;
  color: var(--off-white);
  background: var(--primary-deep-green);
  padding: 8px 14px;
  text-decoration: none;
  transition: background 0.3s, color 0.3s;
}

.page-home .home-side-cta__link:hover {
  background: var(--accent-brick-red);
  color: var(--off-white);
}

/* ==================== 媒体查询：平板 ==================== */
@media (min-width: 768px) {

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

  .page-home .home-chapter {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 18px 14px;
  }

  .page-home .home-chapter__desc {
    margin-left: 0;
    font-size: 0.75rem;
  }

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

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

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

  .page-home .home-injuries__layout {
    grid-template-columns: 1fr;
  }

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

  .page-home .home-membership__cta {
    justify-content: center;
  }
}

/* ==================== 媒体查询：桌面 ==================== */
@media (min-width: 1024px) {

  .page-home .home-hero {
    min-height: 85vh;
  }

  .page-home .home-hero__content {
    padding-top: 140px;
    padding-bottom: 72px;
  }

  .page-home .home-hero__chapters {
    margin-top: 64px;
    gap: 0;
    border-left: 1px solid rgba(212, 175, 55, 0.25);
  }

  .page-home .home-chapter {
    padding: 22px 18px;
  }

  .page-home .home-fixtures__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .page-home .home-section-head--row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
  }

  .page-home .home-section-head--row p {
    max-width: 440px;
    margin-right: 0;
  }

  .page-home .home-reports__list {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .page-home .home-highlights__stats {
    grid-template-columns: repeat(3, 1fr);
    max-width: 720px;
    margin: 44px 0 48px;
  }

  .page-home .home-highlights .container {
    max-width: 1080px;
    padding-left: 64px;
  }

  .page-home .home-injuries__layout {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: start;
    gap: 56px;
  }

  .page-home .home-injuries__visual {
    position: sticky;
    top: 120px;
  }

  .page-home .home-injuries__visual img {
    max-height: 520px;
    object-fit: cover;
  }

  .page-home .home-membership__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }

  .page-home .home-side-cta {
    display: block;
  }
}

/* ==================== 媒体查询：大屏 ==================== */
@media (min-width: 1400px) {

  .page-home .home-fixtures__deco {
    right: calc((100vw - 1200px) / 2 - 110px);
    width: 260px;
  }

  .page-home .home-side-cta {
    right: 40px;
  }
}
