.page-home {
  --home-title-size: clamp(3rem, 9vw, 7.5rem);
  --home-section-pad: clamp(3.5rem, 8vw, 7rem) 0;
  --home-panel-radius: 18px;
  background: var(--c-night);
  color: var(--c-paper);
  overflow-x: hidden;
}

.page-home .container {
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
}

.page-home .section-head {
  position: relative;
  margin-bottom: 1.8rem;
}

.page-home .section-head__index {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-family: var(--f-mono);
  font-size: .82rem;
  letter-spacing: .18em;
  color: var(--c-orange);
  border: 1px solid rgba(247, 127, 0, .4);
  border-radius: var(--radius-pill);
  padding: .32rem .85rem;
  margin-bottom: .9rem;
}

.page-home .section-head__index::before {
  content: "";
  width: .4rem;
  height: .4rem;
  background: var(--c-orange);
  border-radius: 50%;
}

.page-home .section-head__title {
  font-family: var(--f-display);
  font-size: clamp(1.8rem, 4.2vw, 3rem);
  line-height: 1.25;
  letter-spacing: .02em;
  color: var(--c-paper);
  margin: 0 0 .65rem;
}

.page-home .section-head__desc {
  color: var(--c-muted);
  max-width: 46rem;
  font-size: .95rem;
  line-height: 1.85;
  margin: 0;
}

.page-home .home-overline {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  font-family: var(--f-mono);
  font-size: .78rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--c-sand);
  margin: 0 0 .7rem;
}

.page-home .home-overline::before {
  content: "";
  width: 2.4rem;
  height: 1px;
  background: var(--c-orange);
}

.page-home .home-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5.5rem 0 2.5rem;
}

.page-home .home-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .48;
}

.page-home .home-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(102deg, rgba(13, 27, 42, .96) 0%, rgba(13, 27, 42, .84) 42%, rgba(27, 38, 59, .62) 100%);
  pointer-events: none;
}

.page-home .home-hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 2.2rem;
  align-items: center;
}

.page-home .home-hero__content {
  min-width: 0;
}

.page-home .home-breadcrumbs {
  margin-bottom: 1.6rem;
}

.page-home .home-breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-home .home-breadcrumbs li {
  font-family: var(--f-mono);
  font-size: .72rem;
  color: var(--c-muted);
}

.page-home .home-breadcrumbs li + li::before {
  content: "/";
  margin-right: .5rem;
  color: var(--c-muted);
}

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

.page-home .home-breadcrumbs a:hover {
  text-decoration: underline;
}

.page-home .home-hero__title {
  font-family: var(--f-display);
  font-size: var(--home-title-size);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: .01em;
  color: var(--c-paper);
  margin: .2rem 0 1.15rem;
}

.page-home .home-hero__dot {
  color: var(--c-orange);
}

.page-home .home-hero__lead {
  font-size: .98rem;
  line-height: 1.9;
  color: rgba(244, 233, 205, .78);
  max-width: 38rem;
  margin: 0 0 1.8rem;
}

.page-home .home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
}

.page-home .home-hero__actions .btn {
  padding: .72rem 1.35rem;
  font-family: var(--f-mono);
  font-size: .82rem;
  border-radius: var(--radius-pill);
  text-decoration: none;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease);
}

.page-home .home-hero__actions .btn--solid {
  background: var(--c-orange);
  color: var(--c-night);
}

.page-home .home-hero__actions .btn--solid:hover {
  background: var(--c-sand);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(247, 127, 0, .32);
}

.page-home .home-hero__actions .btn--ghost {
  border: 1px solid rgba(244, 233, 205, .3);
  color: var(--c-paper);
}

.page-home .home-hero__actions .btn--ghost:hover {
  border-color: var(--c-sand);
  color: var(--c-sand);
  transform: translateY(-2px);
}

.page-home .home-live {
  min-width: 0;
  background: rgba(27, 38, 59, .78);
  border: 1px solid rgba(244, 233, 205, .12);
  border-radius: var(--home-panel-radius);
  padding: 1.2rem 1.25rem;
  backdrop-filter: blur(10px);
  clip-path: polygon(18px 0, 100% 0, 100% calc(100% - 18px), calc(100% - 18px) 100%, 0 100%, 0 18px);
}

.page-home .home-live__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: .75rem;
  padding-bottom: .95rem;
  margin-bottom: .95rem;
  border-bottom: 1px dashed rgba(244, 233, 205, .16);
}

.page-home .home-live__head .tag {
  background: rgba(247, 127, 0, .14);
  color: var(--c-sand);
  border: 1px solid rgba(247, 127, 0, .35);
  font-family: var(--f-mono);
  font-size: .7rem;
  letter-spacing: .14em;
  padding: .28rem .6rem;
  border-radius: var(--radius-pill);
}

.page-home .home-live__range {
  font-family: var(--f-mono);
  font-size: .72rem;
  color: var(--c-muted);
  white-space: nowrap;
}

.page-home .home-live__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: .65rem;
}

.page-home .home-live-item {
  display: grid;
  grid-template-columns: 4.4rem minmax(0, 1fr);
  gap: .1rem .7rem;
  padding: .65rem .7rem;
  background: rgba(13, 27, 42, .55);
  border-radius: var(--radius-sm);
  border-left: 2px solid transparent;
  transition: background .3s var(--ease), border-color .3s var(--ease);
}

.page-home .home-live-item:hover {
  background: rgba(247, 127, 0, .07);
  border-left-color: var(--c-orange);
}

.page-home .home-live-item__round {
  grid-row: span 2;
  font-family: var(--f-mono);
  font-size: .7rem;
  color: var(--c-orange);
  padding-top: .12rem;
}

.page-home .home-live-item__teams {
  font-family: var(--f-mono);
  font-size: .8rem;
  color: var(--c-paper);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.page-home .home-live-item__teams strong {
  font-weight: 600;
  color: var(--c-sand);
}

.page-home .home-live-item__meta {
  font-family: var(--f-mono);
  font-size: .68rem;
  color: var(--c-muted);
}

.page-home .home-live__foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: .75rem;
  margin-top: 1rem;
  padding-top: .85rem;
  border-top: 1px dashed rgba(244, 233, 205, .16);
  font-family: var(--f-mono);
  font-size: .72rem;
  color: var(--c-muted);
}

.page-home .home-live__foot a {
  color: var(--c-sand);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: .35rem;
}

.page-home .home-live__foot a:hover {
  color: var(--c-paper);
}

.page-home .home-timeline {
  position: relative;
  margin-top: 3rem;
  padding: .75rem 0 0;
  max-width: 46rem;
}

.page-home .home-timeline__rule {
  position: absolute;
  left: 0;
  right: 0;
  top: 2.2rem;
  width: 100%;
  height: 2.25rem;
}

.page-home .home-timeline__nodes {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: .5rem;
}

.page-home .home-timeline__node {
  position: relative;
  font-family: var(--f-mono);
  font-size: .72rem;
  color: var(--c-muted);
  text-transform: uppercase;
  letter-spacing: .08em;
  padding-top: 2.6rem;
  white-space: nowrap;
}

.page-home .home-timeline__node::before {
  content: "";
  position: absolute;
  top: 1.15rem;
  left: 0;
  width: .7rem;
  height: .7rem;
  background: var(--c-deep);
  border: 2px solid var(--c-orange);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(247, 127, 0, .1);
}

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

.page-home .home-timeline__node a:hover {
  color: var(--c-sand);
}

.page-home .home-timeline__node--current {
  color: var(--c-paper);
}

.page-home .home-timeline__node--current::before {
  background: var(--c-orange);
  box-shadow: 0 0 0 6px rgba(247, 127, 0, .14), 0 0 20px rgba(247, 127, 0, .7);
}

.page-home .home-section {
  padding: var(--home-section-pad);
}

.page-home .home-section--timeline {
  background: linear-gradient(180deg, var(--c-night) 0%, var(--c-deep) 100%);
}

.page-home .home-match-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1rem;
  margin-top: 2.6rem;
}

.page-home .home-match-card {
  position: relative;
  min-width: 0;
  background: rgba(244, 233, 205, .04);
  border: 1px solid rgba(244, 233, 205, .09);
  border-radius: var(--radius-md);
  padding: 1.2rem 1.25rem;
  transition: border-color .35s var(--ease), background .35s var(--ease), transform .35s var(--ease);
}

.page-home .home-match-card:hover {
  border-color: var(--c-orange);
  background: rgba(247, 127, 0, .07);
  transform: translateY(-3px);
}

.page-home .home-match-card__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1rem;
}

.page-home .home-match-card__top .tag {
  font-family: var(--f-mono);
  font-size: .7rem;
  letter-spacing: .08em;
  color: var(--c-sand);
  background: rgba(247, 127, 0, .1);
  border: 1px solid rgba(247, 127, 0, .25);
  border-radius: var(--radius-pill);
  padding: .28rem .65rem;
}

.page-home .home-match-card__status {
  font-family: var(--f-mono);
  font-size: .68rem;
  color: var(--c-green);
}

.page-home .home-match-card__score {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: .65rem;
}

.page-home .home-match-card__team {
  font-family: var(--f-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--c-paper);
  line-height: 1.4;
}

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

.page-home .home-match-card__goals {
  font-family: var(--f-mono);
  font-size: 1.9rem;
  font-weight: 600;
  color: var(--c-sand);
  letter-spacing: .04em;
}

.page-home .home-match-card__events {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  margin-top: 1rem;
  padding-top: .9rem;
  border-top: 1px dashed rgba(244, 233, 205, .12);
}

.page-home .home-event {
  font-family: var(--f-mono);
  font-size: .68rem;
  padding: .3rem .6rem;
  border-radius: var(--radius-sm);
  background: rgba(244, 233, 205, .08);
  color: var(--c-muted);
}

.page-home .home-event--red {
  color: #ffd9dd;
  background: rgba(230, 57, 70, .2);
}

.page-home .home-event--yellow {
  color: #ffe6b0;
  background: rgba(252, 191, 73, .16);
}

.page-home .home-event--point {
  color: var(--c-sand);
  background: rgba(247, 127, 0, .14);
}

.page-home .home-timeline-board {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 2rem;
  margin-top: 2.6rem;
  padding: 1.4rem 1.5rem;
  background: rgba(13, 27, 42, .65);
  border: 1px solid rgba(244, 233, 205, .08);
  border-radius: var(--radius-md);
}

.page-home .home-timeline-board__lead {
  flex: 1 1 20rem;
  font-family: var(--f-mono);
  font-size: .8rem;
  color: var(--c-sand);
  line-height: 1.7;
  margin: 0;
}

.page-home .home-timeline-board__meta {
  flex: 1 1 20rem;
  font-size: .88rem;
  color: var(--c-muted);
  line-height: 1.8;
  margin: 0;
}

.page-home .home-timeline-board .btn--ghost {
  border: 1px solid rgba(244, 233, 205, .25);
  color: var(--c-paper);
  font-family: var(--f-mono);
  font-size: .78rem;
  padding: .6rem 1.1rem;
  border-radius: var(--radius-pill);
  text-decoration: none;
}

.page-home .home-timeline-board .btn--ghost:hover {
  border-color: var(--c-sand);
  color: var(--c-sand);
}

.page-home .home-section--paper {
  background: var(--c-paper);
  color: var(--c-ink);
}

.page-home .home-section--paper .section-head__index {
  color: var(--c-orange);
  border-color: rgba(43, 45, 66, .2);
}

.page-home .home-section--paper .section-head__index::before {
  background: var(--c-orange);
}

.page-home .home-section--paper .section-head__title {
  color: var(--c-ink);
}

.page-home .home-section--paper .section-head__desc {
  color: rgba(43, 45, 66, .72);
}

.page-home .home-schedule-list {
  margin-top: 2.4rem;
  border-top: 1px solid rgba(43, 45, 66, .16);
}

.page-home .home-schedule-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: .5rem 1.2rem;
  padding: 1.15rem 0;
  border-bottom: 1px dashed rgba(43, 45, 66, .22);
  transition: background .25s var(--ease);
}

.page-home .home-schedule-row:hover {
  background: rgba(247, 127, 0, .05);
}

.page-home .home-schedule-row__time {
  font-family: var(--f-mono);
  font-weight: 600;
  font-size: .85rem;
  color: var(--c-ink);
}

.page-home .home-schedule-row__teams {
  font-weight: 600;
  font-size: 1rem;
  color: var(--c-ink);
}

.page-home .home-schedule-row__meta {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
}

.page-home .home-schedule-chip {
  font-family: var(--f-mono);
  font-size: .7rem;
  color: rgba(43, 45, 66, .72);
  background: rgba(43, 45, 66, .05);
  border-radius: var(--radius-pill);
  padding: .28rem .6rem;
}

.page-home .home-section--standings {
  position: relative;
  padding: var(--home-section-pad);
  background: var(--c-night);
  overflow: hidden;
}

.page-home .home-section__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .16;
  pointer-events: none;
}

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

.page-home .home-standings {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.5rem;
  margin-top: 2.6rem;
}

.page-home .home-standings__chart {
  min-width: 0;
  background: rgba(27, 38, 59, .72);
  border: 1px solid rgba(244, 233, 205, .08);
  border-radius: var(--radius-lg);
  padding: 1.3rem 1.1rem;
}

.page-home .home-chart__title {
  font-family: var(--f-display);
  font-size: 1.15rem;
  color: var(--c-paper);
  margin: 0 0 .9rem;
}

.page-home .home-chart {
  display: block;
  width: 100%;
  height: auto;
  overflow: visible;
}

.page-home .home-chart__grid line {
  stroke: rgba(244, 233, 205, .1);
  stroke-width: 1;
  stroke-dasharray: 3 6;
}

.page-home .home-chart__ticks text {
  font-family: var(--f-mono);
  font-size: 10px;
  fill: var(--c-muted);
  text-anchor: end;
}

.page-home .home-chart__axis {
  font-family: var(--f-mono);
  font-size: 10px;
  fill: var(--c-muted);
  text-anchor: middle;
}

.page-home .home-chart__line {
  fill: none;
  stroke: var(--c-orange);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.page-home .home-chart__dot {
  fill: var(--c-deep);
  stroke: var(--c-orange);
  stroke-width: 2;
}

.page-home .home-chart__value {
  font-family: var(--f-mono);
  font-size: 11px;
  fill: var(--c-paper);
  text-anchor: middle;
}

.page-home .home-chart__tooltip {
  opacity: 0;
  transition: opacity .2s var(--ease);
  pointer-events: none;
}

.page-home .home-chart__point {
  cursor: pointer;
  outline: none;
}

.page-home .home-chart__point:hover .home-chart__tooltip,
.page-home .home-chart__point:focus-visible .home-chart__tooltip {
  opacity: 1;
}

.page-home .home-chart__point:focus-visible .home-chart__dot {
  stroke: var(--c-sand);
  stroke-width: 3;
}

.page-home .home-standings__table {
  min-width: 0;
  background: rgba(27, 38, 59, .6);
  border: 1px solid rgba(244, 233, 205, .08);
  border-radius: var(--radius-lg);
  padding: .65rem .7rem;
  overflow-x: auto;
}

.page-home .home-rank {
  display: grid;
  grid-template-columns: 1.7rem minmax(5.8rem, 1fr) 1.7rem 1.7rem 1.7rem 1.7rem 2.2rem;
  align-items: center;
  gap: .3rem;
  padding: .72rem .55rem;
  border-radius: var(--radius-sm);
  border-bottom: 1px solid rgba(244, 233, 205, .06);
  font-family: var(--f-mono);
  font-size: .76rem;
  color: var(--c-muted);
  min-width: 0;
  white-space: nowrap;
  transition: background .25s var(--ease);
}

.page-home .home-rank:not(.home-rank--head):hover {
  background: rgba(247, 127, 0, .08);
}

.page-home .home-rank--head {
  color: var(--c-sand);
  font-size: .72rem;
}

.page-home .home-rank--featured {
  background: rgba(247, 127, 0, .1);
  border-left: 3px solid var(--c-orange);
  color: var(--c-paper);
}

.page-home .home-rank__pos {
  color: var(--c-sand);
}

.page-home .home-section--verify {
  background: linear-gradient(135deg, var(--c-deep) 0%, var(--c-night) 100%);
}

.page-home .home-verify {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.5rem;
  align-items: center;
  margin-top: 2.6rem;
}

.page-home .home-verify__panel {
  min-width: 0;
  background: rgba(13, 27, 42, .55);
  border: 1px solid rgba(244, 233, 205, .1);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  clip-path: polygon(0 18px, 18px 0, 100% 0, 100% calc(100% - 18px), calc(100% - 18px) 100%, 0 100%);
}

.page-home .home-verify__countdown {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: baseline;
  gap: .6rem;
  padding-bottom: 1rem;
  border-bottom: 1px dashed rgba(244, 233, 205, .18);
}

.page-home .home-verify__countdown-label {
  font-family: var(--f-mono);
  font-size: .76rem;
  color: var(--c-muted);
}

.page-home .home-verify__countdown-value {
  font-family: var(--f-mono);
  font-size: 2.1rem;
  font-weight: 600;
  color: var(--c-sand);
  letter-spacing: .02em;
}

.page-home .home-verify__status {
  font-family: var(--f-mono);
  font-size: .8rem;
  color: var(--c-green);
  margin: .9rem 0 1.1rem;
}

.page-home .home-verify__fields {
  list-style: none;
  margin: 0 0 1.4rem;
  padding: 0;
  display: grid;
  gap: .6rem;
}

.page-home .home-verify__fields li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--f-mono);
  font-size: .82rem;
  color: var(--c-muted);
  padding-bottom: .6rem;
  border-bottom: 1px dotted rgba(244, 233, 205, .12);
}

.page-home .home-verify__fields strong {
  font-size: .95rem;
  color: var(--c-paper);
}

.page-home .home-verify__panel .btn--solid {
  display: inline-block;
  background: var(--c-orange);
  color: var(--c-night);
  font-family: var(--f-mono);
  font-size: .78rem;
  padding: .68rem 1.2rem;
  border-radius: var(--radius-pill);
  text-decoration: none;
  transition: background .3s var(--ease), transform .3s var(--ease);
}

.page-home .home-verify__panel .btn--solid:hover {
  background: var(--c-sand);
  transform: translateY(-2px);
}

.page-home .home-verify__figure {
  margin: 0;
}

.page-home .home-verify__figure img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: var(--radius-md);
  border: 1px solid rgba(244, 233, 205, .12);
}

.page-home .home-section--history {
  background: var(--c-night);
}

.page-home .home-history {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.5rem;
  align-items: center;
  margin-top: 2.6rem;
}

.page-home .home-history__figure {
  margin: 0;
}

.page-home .home-history__figure img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(244, 233, 205, .1);
}

.page-home .home-history__panel {
  min-width: 0;
  background: var(--c-deep);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}

.page-home .home-history__title {
  font-family: var(--f-display);
  font-size: 1.5rem;
  line-height: 1.4;
  margin: 0 0 1.1rem;
  color: var(--c-paper);
}

.page-home .home-history__group {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  margin-bottom: .8rem;
}

.page-home .home-history__chip {
  display: inline-flex;
  align-items: center;
  padding: .5rem .9rem;
  font-family: var(--f-mono);
  font-size: .76rem;
  color: var(--c-paper);
  background: rgba(244, 233, 205, .06);
  border: 1px solid rgba(244, 233, 205, .12);
  border-radius: var(--radius-pill);
  text-decoration: none;
  transition: border-color .25s var(--ease), background .25s var(--ease), color .25s var(--ease);
}

.page-home .home-history__chip:hover {
  border-color: var(--c-sand);
  color: var(--c-sand);
}

.page-home .home-history__chip--current {
  background: var(--c-orange);
  border-color: var(--c-orange);
  color: var(--c-night);
  font-weight: 600;
}

.page-home .home-history__chip--current:hover {
  background: var(--c-sand);
  border-color: var(--c-sand);
  color: var(--c-night);
}

.page-home .home-history__note {
  font-size: .88rem;
  line-height: 1.85;
  color: var(--c-muted);
  margin: 1rem 0 1.4rem;
}

.page-home .home-history__panel .btn--ghost {
  display: inline-block;
  border: 1px solid rgba(244, 233, 205, .25);
  color: var(--c-paper);
  font-family: var(--f-mono);
  font-size: .78rem;
  padding: .6rem 1.1rem;
  border-radius: var(--radius-pill);
  text-decoration: none;
  transition: border-color .25s var(--ease), color .25s var(--ease);
}

.page-home .home-history__panel .btn--ghost:hover {
  border-color: var(--c-sand);
  color: var(--c-sand);
}

@media (min-width: 768px) {
  .page-home .home-hero__inner {
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
    gap: 3rem;
  }

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

  .page-home .home-match-card--featured {
    grid-column: span 2;
  }

  .page-home .home-schedule-row {
    grid-template-columns: 112px minmax(0, 1fr) auto;
    align-items: center;
    gap: 1rem 1.5rem;
  }

  .page-home .home-schedule-row__meta {
    justify-content: flex-end;
  }

  .page-home .home-standings {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
    gap: 1.5rem;
  }

  .page-home .home-verify,
  .page-home .home-history {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
    gap: 2rem;
  }
}

@media (min-width: 1080px) {
  .page-home .home-hero__lead {
    font-size: 1.05rem;
  }

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

  .page-home .home-match-card--featured {
    grid-column: span 1;
  }

  .page-home .home-section_head__desc {
    font-size: 1rem;
  }

  .page-home .home-standings {
    grid-template-columns: minmax(0, 1.25fr) minmax(0, .75fr);
  }

  .page-home .home-verify {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
  }

  .page-home .home-history {
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  }
}
