.page-home {
  --home-gold-deep: #D4AF37;
  --home-red: #E63946;
  --home-deep: #0B1B3A;
  --home-nebula: #1E2A4A;
  --home-moon: #F4F6FA;
  --home-white: #FFFFFF;
  --home-constellation: #2A3B5C;
  position: relative;
  overflow-x: hidden;
  background: var(--home-deep);
  color: var(--home-moon);
  font-family: var(--font-body);
  line-height: 1.75;
}

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

.page-home .section-head {
  margin-bottom: 32px;
}

.page-home .section-head__eyebrow {
  font-family: var(--font-number);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--home-gold-deep);
  margin: 0 0 12px;
}

.page-home .section-head__desc {
  margin: 14px 0 0;
  max-width: 660px;
  font-size: 1rem;
  color: rgba(244, 246, 250, 0.78);
  line-height: 1.8;
}

/* ===== 首屏：星空看台 ===== */
.page-home .hero-stand {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 84px;
  overflow: hidden;
  isolation: isolate;
  background: var(--home-deep);
}

.page-home .hero-stand__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.page-home .hero-stand__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-home .hero-stand__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(11, 27, 58, 0.72) 0%, rgba(11, 27, 58, 0.3) 45%, var(--home-deep) 96%),
    linear-gradient(90deg, rgba(11, 27, 58, 0.88) 0%, rgba(11, 27, 58, 0.25) 58%, rgba(11, 27, 58, 0.55) 100%);
}

.page-home .hero-stand__stars {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    radial-gradient(2px 2px at 18% 32%, rgba(255, 255, 255, 0.9), transparent),
    radial-gradient(2px 2px at 42% 68%, rgba(255, 255, 255, 0.7), transparent),
    radial-gradient(1px 1px at 58% 22%, rgba(255, 255, 255, 0.85), transparent),
    radial-gradient(1px 1px at 76% 48%, rgba(255, 255, 255, 0.65), transparent),
    radial-gradient(2px 2px at 12% 78%, rgba(255, 255, 255, 0.55), transparent),
    radial-gradient(1px 1px at 88% 34%, rgba(255, 255, 255, 0.8), transparent),
    radial-gradient(1px 1px at 52% 84%, rgba(255, 255, 255, 0.6), transparent),
    radial-gradient(2px 2px at 68% 12%, rgba(255, 255, 255, 0.7), transparent);
  animation: pageHomeStarPulse 4s ease-in-out infinite alternate;
}

@keyframes pageHomeStarPulse {
  0% { opacity: 0.55; }
  100% { opacity: 1; }
}

.page-home .hero-stand__shooting-star {
  position: absolute;
  top: 16%;
  left: 22%;
  width: 140px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--home-gold-deep), transparent);
  transform: rotate(-24deg);
  opacity: 0;
  z-index: 0;
  animation: pageHomeShoot 8s ease-in-out infinite 2s;
}

@keyframes pageHomeShoot {
  0% { transform: translateX(0) rotate(-24deg); opacity: 0; }
  8% { opacity: 1; }
  22% { transform: translateX(280px) rotate(-24deg); opacity: 0; }
  100% { transform: translateX(280px) rotate(-24deg); opacity: 0; }
}

.page-home .breadcrumb-wrap {
  position: absolute;
  top: 20px;
  left: 0;
  right: 0;
  z-index: 6;
}

.page-home .breadcrumb-wrap .breadcrumb__list {
  justify-content: flex-start;
  padding-left: 0;
}

.page-home .breadcrumb-wrap .breadcrumb__link {
  color: rgba(244, 246, 250, 0.65);
  transition: color 0.3s ease;
}

.page-home .breadcrumb-wrap .breadcrumb__link:hover {
  color: var(--home-gold-deep);
}

.page-home .breadcrumb-wrap .breadcrumb__current {
  color: var(--home-gold-deep);
}

.page-home .hero-stand__frame {
  position: absolute;
  inset: 18px;
  z-index: 3;
  pointer-events: none;
}

.page-home .hero-stand__corner {
  position: absolute;
  width: 28px;
  height: 28px;
  border-color: var(--home-gold-deep);
  border-style: solid;
}

.page-home .hero-stand__corner--tl { top: 0; left: 0; border-width: 3px 0 0 3px; }
.page-home .hero-stand__corner--tr { top: 0; right: 0; border-width: 3px 3px 0 0; }
.page-home .hero-stand__corner--bl { bottom: 0; left: 0; border-width: 0 0 3px 3px; }
.page-home .hero-stand__corner--br { bottom: 0; right: 0; border-width: 0 3px 3px 0; }

.page-home .hero-stand__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  width: 100%;
  align-items: center;
}

.page-home .hero-stand__kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-number);
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  color: var(--home-gold-deep);
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: var(--radius-pill);
  padding: 8px 18px;
  margin: 0 0 24px;
  background: rgba(11, 27, 58, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.page-home .hero-stand__kicker::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--home-red);
  box-shadow: 0 0 10px rgba(230, 57, 70, 0.8);
}

.page-home .hero-stand__title {
  margin: 0 0 20px;
  font-family: var(--font-title);
  font-weight: 900;
  font-size: clamp(3.1rem, 12vw, 6.8rem);
  line-height: 1.08;
  letter-spacing: 0.04em;
  color: var(--home-white);
  text-shadow: 0 8px 40px rgba(11, 27, 58, 0.55);
}

.page-home .hero-stand__title-line {
  display: block;
}

.page-home .hero-stand__title-line--gold {
  color: transparent;
  background: linear-gradient(120deg, var(--c-shooter-gold) 0%, var(--home-gold-deep) 55%, #f9e6a8 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.page-home .hero-stand__lead {
  font-family: var(--font-title);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--home-moon);
  margin: 0 0 8px;
}

.page-home .hero-stand__text {
  font-size: 1rem;
  color: rgba(244, 246, 250, 0.85);
  max-width: 32em;
  margin: 0 0 32px;
  line-height: 1.9;
}

.page-home .hero-stand__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.page-home .hero-stand__scoreboard {
  background: rgba(30, 42, 74, 0.65);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 20px 60px rgba(11, 27, 58, 0.5);
}

.page-home .hero-stand__score {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--home-constellation);
  margin-bottom: 18px;
}

.page-home .hero-stand__score-label {
  font-family: var(--font-title);
  font-size: 0.9rem;
  color: var(--home-moon);
}

.page-home .hero-stand__score .score-display__number {
  font-family: var(--font-number);
  font-size: 3.4rem;
  font-weight: 800;
  color: var(--c-shooter-gold);
  line-height: 1;
}

.page-home .hero-stand__score-unit {
  font-family: var(--font-title);
  font-size: 1rem;
  color: var(--home-moon);
}

.page-home .hero-stand__stats {
  display: grid;
  gap: 14px;
}

.page-home .hero-stand__stats .data-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 4px 12px;
}

.page-home .hero-stand__stats .data-panel__label {
  font-family: var(--font-title);
  font-size: 0.82rem;
  color: rgba(244, 246, 250, 0.6);
  grid-column: 1 / -1;
}

.page-home .hero-stand__stats .data-panel__number {
  font-family: var(--font-number);
  font-size: 2rem;
  font-weight: 700;
  color: var(--home-gold-deep);
  line-height: 1.1;
}

.page-home .hero-stand__stats .data-panel__desc {
  font-size: 0.75rem;
  color: rgba(244, 246, 250, 0.6);
  text-align: right;
  line-height: 1.5;
}

.page-home .hero-stand__scroll {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
}

.page-home .hero-stand__scroll-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-family: var(--font-title);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(244, 246, 250, 0.7);
  text-decoration: none;
}

.page-home .hero-stand__scroll-line {
  width: 2px;
  height: 42px;
  background: linear-gradient(180deg, var(--home-gold-deep), transparent);
  animation: pageHomeScrollPulse 1.8s ease-in-out infinite;
}

@keyframes pageHomeScrollPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

/* ===== 热门赛程 ===== */
.page-home .hot-matches {
  background: var(--home-deep);
  position: relative;
}

.page-home .hot-matches .hot-tabs {
  display: flex;
  gap: 6px;
  width: fit-content;
  border: 1px solid var(--home-constellation);
  border-radius: var(--radius-pill);
  padding: 5px;
  margin-bottom: 28px;
  background: var(--home-nebula);
}

.page-home .hot-tabs .tab-item {
  appearance: none;
  -webkit-appearance: none;
  border: 0;
  background: transparent;
  color: var(--home-moon);
  font-family: var(--font-title);
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.2;
  padding: 9px 20px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
}

.page-home .hot-tabs .tab-item:hover {
  background: rgba(212, 175, 55, 0.12);
}

.page-home .hot-tabs .tab-item.is-active,
.page-home .hot-tabs .tab-item[aria-selected="true"] {
  background: var(--home-gold-deep);
  color: var(--home-deep);
}

.page-home .match-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 28px;
}

.page-home .match-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--home-nebula);
  border: 1px solid var(--home-constellation);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.page-home .match-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 175, 55, 0.5);
  box-shadow: 0 14px 36px rgba(11, 27, 58, 0.45), 0 0 0 1px rgba(212, 175, 55, 0.15);
}

.page-home .match-card__media {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.page-home .match-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.page-home .match-card:hover .match-card__media img {
  transform: scale(1.05);
}

.page-home .match-card__media .tag {
  position: absolute;
  top: 12px;
  left: 12px;
}

.page-home .match-card__body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px;
  flex: 1;
}

.page-home .match-card__teams {
  display: flex;
  align-items: center;
  gap: 8px;
}

.page-home .match-card__team {
  flex: 1;
  font-family: var(--font-title);
  font-size: 1rem;
  font-weight: 700;
  color: var(--home-white);
}

.page-home .match-card__team:last-child {
  text-align: right;
}

.page-home .match-card__vs {
  flex-shrink: 0;
  font-family: var(--font-number);
  font-size: 0.8rem;
  color: var(--home-gold-deep);
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: var(--radius-pill);
  padding: 2px 9px;
}

.page-home .match-card__meta {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  padding-top: 10px;
  border-top: 1px solid var(--home-constellation);
  font-size: 0.8rem;
  color: rgba(244, 246, 250, 0.6);
}

.page-home .hot-matches__more,
.page-home .team-db__more,
.page-home .latest-news__more {
  margin-top: 28px;
}

/* ===== 品牌简报 ===== */
.page-home .brand-brief {
  background: linear-gradient(120deg, var(--home-nebula) 0%, var(--home-deep) 100%);
  border-top: 1px solid rgba(212, 175, 55, 0.18);
  border-bottom: 1px solid rgba(212, 175, 55, 0.18);
  padding: 52px 0;
}

.page-home .brand-brief__inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}

.page-home .brand-brief__title {
  font-family: var(--font-title);
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1.4;
  color: var(--home-white);
  margin: 0 0 10px;
}

.page-home .brand-brief__text {
  color: rgba(244, 246, 250, 0.8);
  max-width: 760px;
  margin: 0;
  font-size: 0.98rem;
}

/* ===== 球队资料库 ===== */
.page-home .team-db {
  background: var(--home-moon);
  color: var(--home-deep);
}

.page-home .team-db .section-head__eyebrow {
  color: var(--home-red);
}

.page-home .team-db .section-head__desc {
  color: rgba(11, 27, 58, 0.75);
}

.page-home .team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 24px;
}

.page-home .team-group {
  min-width: 0;
}

.page-home .team-card {
  appearance: none;
  -webkit-appearance: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 20px 12px 16px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(11, 27, 58, 0.1);
  border-radius: var(--radius-md);
  cursor: pointer;
  font-family: var(--font-title);
  text-align: center;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.page-home .team-card:hover {
  transform: translateY(-3px);
  border-color: rgba(212, 175, 55, 0.65);
  box-shadow: var(--shadow-card);
}

.page-home .team-card__badge {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: contain;
  background: var(--home-white);
  padding: 4px;
  box-shadow: 0 2px 8px rgba(11, 27, 58, 0.1);
}

.page-home .team-card__name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--home-deep);
}

.page-home .team-card__league {
  font-family: var(--font-number);
  font-size: 0.72rem;
  color: var(--home-red);
  background: rgba(230, 57, 70, 0.08);
  border-radius: var(--radius-pill);
  padding: 2px 10px;
}

.page-home .team-panel {
  background: rgba(255, 255, 255, 0.92);
  border-radius: var(--radius-md);
  margin-top: 6px;
  overflow: hidden;
}

.page-home .team-card__detail {
  margin: 0;
  padding: 14px 16px;
  font-size: 0.86rem;
  line-height: 1.7;
  color: rgba(11, 27, 58, 0.82);
  border-left: 3px solid var(--home-gold-deep);
}

/* ===== 联赛导航 ===== */
.page-home .league-nav {
  background: var(--home-nebula);
}

.page-home .league-nav__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 8px;
}

.page-home .league-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 24px 20px;
  background: rgba(11, 27, 58, 0.55);
  border: 1px solid var(--home-constellation);
  border-radius: var(--radius-md);
  text-decoration: none;
  color: var(--home-moon);
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.page-home .league-card:hover,
.page-home .league-card:focus-visible {
  transform: translateY(-4px);
  border-color: var(--home-gold-deep);
  background: rgba(11, 27, 58, 0.8);
  box-shadow: 0 10px 30px rgba(11, 27, 58, 0.5), 0 0 0 1px rgba(212, 175, 55, 0.15);
}

.page-home .league-card__icon {
  font-size: 1.7rem;
  line-height: 1.4;
}

.page-home .league-card__title {
  font-family: var(--font-title);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--home-white);
  margin: 0;
}

.page-home .league-card__desc {
  font-size: 0.82rem;
  color: rgba(244, 246, 250, 0.68);
  margin: 0;
  line-height: 1.6;
}

.page-home .league-card__arrow {
  position: absolute;
  top: 22px;
  right: 20px;
  font-family: var(--font-number);
  color: var(--home-gold-deep);
  transition: transform 0.3s ease;
}

.page-home .league-card:hover .league-card__arrow {
  transform: translateX(4px);
}

/* ===== 历史交锋 ===== */
.page-home .h2h {
  background: var(--home-deep);
}

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

.page-home .h2h__content {
  display: grid;
  gap: 28px;
}

.page-home .timeline {
  position: relative;
  display: grid;
  gap: 26px;
  margin: 4px 0 0 8px;
  padding-left: 28px;
  border-left: 2px solid var(--home-constellation);
}

.page-home .timeline__item {
  position: relative;
}

.page-home .timeline__item::before {
  content: '';
  position: absolute;
  left: -37px;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--home-gold-deep);
  box-shadow: 0 0 14px rgba(212, 175, 55, 0.7);
}

.page-home .timeline__season {
  display: inline-block;
  font-family: var(--font-number);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--home-deep);
  background: var(--home-gold-deep);
  border-radius: var(--radius-pill);
  padding: 3px 12px;
  margin-bottom: 8px;
}

.page-home .timeline__title {
  font-family: var(--font-title);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--home-white);
  margin: 0 0 4px;
}

.page-home .timeline__desc {
  font-size: 0.9rem;
  color: rgba(244, 246, 250, 0.7);
  line-height: 1.7;
  margin: 0;
}

.page-home .h2h__stat-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 16px;
  padding: 16px 20px;
  background: var(--home-nebula);
  border-radius: var(--radius-md);
  border: 1px solid rgba(212, 175, 55, 0.18);
  font-size: 0.85rem;
}

.page-home .h2h__stat-label {
  color: rgba(244, 246, 250, 0.55);
}

.page-home .h2h__stat-strip strong {
  color: var(--home-gold-deep);
  font-family: var(--font-number);
  font-size: 0.88rem;
  font-weight: 700;
}

.page-home .h2h__media img {
  border-radius: var(--radius-md);
  border: 1px solid rgba(212, 175, 55, 0.28);
  box-shadow: 0 18px 50px rgba(11, 27, 58, 0.45);
}

/* ===== 会员导出 ===== */
.page-home .export-guide {
  background:
    radial-gradient(ellipse at 18% 0%, rgba(212, 175, 55, 0.14), transparent 48%),
    linear-gradient(160deg, var(--home-nebula) 0%, var(--home-deep) 70%);
}

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

.page-home .export-steps .path-step {
  position: relative;
  background: rgba(11, 27, 58, 0.58);
  border: 1px solid var(--home-constellation);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.page-home .export-steps .path-step:hover {
  transform: translateY(-3px);
  border-color: rgba(212, 175, 55, 0.45);
  background: rgba(11, 27, 58, 0.8);
}

.page-home .path-step__num {
  display: inline-block;
  font-family: var(--font-number);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--home-deep);
  background: var(--c-shooter-gold);
  border-radius: var(--radius-pill);
  padding: 3px 10px;
  margin-bottom: 10px;
}

.page-home .export-guide__note {
  margin-top: 28px;
  padding: 18px 20px;
  border-left: 4px solid var(--home-red);
  background: rgba(230, 57, 70, 0.08);
  border-radius: var(--radius-sm);
  color: rgba(244, 246, 250, 0.85);
  font-size: 0.9rem;
  line-height: 1.7;
}

.page-home .export-guide__note p {
  margin: 0;
}

/* ===== 最新动态 ===== */
.page-home .latest-news {
  background: var(--home-moon);
  color: var(--home-deep);
}

.page-home .latest-news .section-head__eyebrow {
  color: var(--home-red);
}

.page-home .latest-news .section-head__desc {
  color: rgba(11, 27, 58, 0.75);
}

.page-home .latest-news__list {
  border-top: 1px solid rgba(11, 27, 58, 0.1);
}

.page-home .latest-news .news-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  padding: 18px 4px;
  border-bottom: 1px solid rgba(11, 27, 58, 0.1);
  text-decoration: none;
  transition: background 0.3s ease, padding-left 0.3s ease;
}

.page-home .latest-news .news-item:hover {
  background: rgba(11, 27, 58, 0.04);
  padding-left: 12px;
}

.page-home .latest-news .news-item__date {
  display: inline-block;
  font-family: var(--font-number);
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  color: var(--home-red);
  background: rgba(230, 57, 70, 0.08);
  border-radius: var(--radius-pill);
  padding: 2px 10px;
}

.page-home .latest-news .news-item__title {
  font-family: var(--font-title);
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--home-deep);
}

/* ===== 帮助条 ===== */
.page-home .help-strip {
  background: var(--home-deep);
  border-top: 1px solid rgba(212, 175, 55, 0.15);
  padding-bottom: 16px;
}

.page-home .help-strip__list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.page-home .help-strip__link {
  color: rgba(244, 246, 250, 0.75);
  font-size: 0.9rem;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.page-home .help-strip__link:hover {
  color: var(--home-gold-deep);
  border-bottom-color: var(--home-gold-deep);
}

/* ===== 响应式 ===== */
@media (min-width: 768px) {
  .page-home .hero-stand {
    padding-bottom: 88px;
  }

  .page-home .hero-stand__frame {
    inset: 28px;
  }

  .page-home .hero-stand__corner {
    width: 36px;
    height: 36px;
  }

  .page-home .hero-stand__inner {
    grid-template-columns: minmax(0, 7fr) minmax(290px, 4fr);
    gap: 48px;
  }

  .page-home .hero-stand__title {
    font-size: clamp(4rem, 6vw, 7rem);
  }

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

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

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

  .page-home .h2h__layout {
    grid-template-columns: 5fr 6fr;
    align-items: center;
  }

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

  .page-home .brand-brief__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .page-home .latest-news .news-item {
    flex-direction: row;
    align-items: center;
    gap: 16px;
  }

  .page-home .latest-news .news-item__date {
    flex-shrink: 0;
  }

  .page-home .team-card__badge {
    width: 76px;
    height: 76px;
  }
}

@media (min-width: 1024px) {
  .page-home .match-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .page-home .export-steps {
    grid-template-columns: repeat(4, 1fr);
  }
}
