.page-home {
  --home-gap: clamp(14px, 2vw, 22px);
  --home-pad-y: clamp(52px, 8vw, 108px);
  color: var(--mist-100);
  font-family: var(--f-body);
  overflow-x: clip;
}

.page-home .sf-section {
  padding-top: var(--home-pad-y);
  padding-bottom: var(--home-pad-y);
}

/* ---------- 首屏 ---------- */

.page-home .home-hero {
  padding-top: clamp(20px, 4vw, 44px);
  padding-bottom: clamp(40px, 7vw, 88px);
  position: relative;
}

.page-home .home-hero__crumbs {
  margin-bottom: 18px;
}

.page-home .home-hero__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 16px;
  margin-bottom: 20px;
}

.page-home .home-hero__brandtag {
  font-family: var(--f-cond);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.14em;
  color: var(--flare-500);
  border: 2px solid var(--flare-500);
  padding: 3px 10px;
  line-height: 1;
}

.page-home .home-hero__season {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--mist-400);
}

.page-home .home-hero__title {
  font-family: var(--f-cond);
  font-weight: 800;
  font-size: clamp(44px, 10vw, 96px);
  line-height: 0.92;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
  max-width: 13ch;
}

.page-home .home-hero__hl {
  color: var(--flare-500);
  display: inline-block;
  position: relative;
  padding-right: 0.06em;
}

.page-home .home-hero__hl::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 6%;
  height: 4px;
  background: var(--volt-400);
  opacity: 0.5;
}

.page-home .home-hero__lead {
  max-width: 48ch;
  font-size: 16px;
  line-height: 1.7;
  color: var(--mist-400);
  margin: 0 0 clamp(24px, 4vw, 40px);
}

/* 拼贴 */

.page-home .home-collage {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--home-gap);
  margin-bottom: clamp(24px, 4vw, 36px);
}

.page-home .home-collage__photo {
  margin: 0;
  position: relative;
  overflow: hidden;
  border: var(--bd) solid var(--ink-700);
  box-shadow: var(--sh-hard);
  background: var(--ink-800);
}

.page-home .home-collage__photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-home .home-collage__photo--main {
  aspect-ratio: 8 / 5;
}

.page-home .home-collage__photo--sub {
  aspect-ratio: 4 / 3;
}

.page-home .home-collage__photo figcaption {
  position: absolute;
  left: 0;
  bottom: 0;
  background: var(--flare-500);
  color: var(--ink-950);
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 5px 11px;
  line-height: 1.4;
}

.page-home .home-collage__score {
  background: var(--flare-500);
  color: var(--ink-950);
  border: var(--bd) solid var(--ink-950);
  box-shadow: var(--sh-hard);
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  justify-content: center;
  min-height: 150px;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 18px), calc(100% - 18px) 100%, 0 100%);
}

.page-home .home-collage__score-k {
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.78;
}

.page-home .home-collage__score-num {
  font-family: var(--f-mono);
  font-weight: 800;
  font-size: clamp(52px, 12vw, 78px);
  line-height: 0.9;
  letter-spacing: -0.05em;
  margin: 0;
  display: flex;
  align-items: baseline;
  gap: 2px;
}

.page-home .home-collage__score-sep {
  font-size: 0.55em;
  opacity: 0.7;
  padding: 0 2px;
}

.page-home .home-collage__score-m {
  font-family: var(--f-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.page-home .home-collage__bracket {
  background: var(--ink-800);
  border: var(--bd) solid var(--ink-700);
  box-shadow: var(--sh-soft);
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 150px;
}

.page-home .home-collage__bracket-k {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--mist-400);
  text-transform: uppercase;
}

.page-home .home-collage__bracket ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
  font-family: var(--f-mono);
  font-size: 13px;
}

.page-home .home-collage__bracket li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 7px;
  border-bottom: 1px dashed var(--ink-700);
  color: var(--mist-100);
}

.page-home .home-collage__bracket li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.page-home .home-collage__bracket li span:last-child {
  color: var(--volt-400);
  font-weight: 800;
}

.page-home .home-collage__pulse {
  background: var(--ink-900);
  border: var(--bd) solid var(--volt-700);
  padding: 18px 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 150px;
  justify-content: center;
}

.page-home .home-collage__pulse-k {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--mist-400);
  text-transform: uppercase;
}

.page-home .home-collage__pulse svg {
  display: block;
  width: 100%;
  height: 56px;
  overflow: visible;
}

.page-home .home-collage__pulse polyline {
  fill: none;
  stroke: var(--volt-400);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 6px rgba(22, 224, 198, 0.45));
}

.page-home .home-collage__pulse-m {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--volt-400);
  letter-spacing: 0.04em;
}

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

/* ---------- 两条线 ---------- */

.page-home .home-lines {
  background: var(--ink-900);
  border-top: var(--bd) solid var(--ink-700);
  border-bottom: var(--bd) solid var(--ink-700);
}

.page-home .home-lines__head,
.page-home .home-scores__head,
.page-home .home-entries__head,
.page-home .home-recap__head,
.page-home .home-local__head {
  display: grid;
  gap: 10px;
  max-width: 64ch;
  margin-bottom: clamp(26px, 4vw, 44px);
}

.page-home .home-lines__idx,
.page-home .home-scores__idx,
.page-home .home-entries__idx,
.page-home .home-recap__idx,
.page-home .home-local__idx,
.page-home .home-partners__idx {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--flare-500);
}

.page-home .home-lines__head h2,
.page-home .home-scores__head h2,
.page-home .home-entries__head h2,
.page-home .home-recap__head h2,
.page-home .home-local__head h2,
.page-home .home-partners__head h2 {
  font-family: var(--f-cond);
  font-weight: 800;
  font-size: clamp(30px, 5.6vw, 52px);
  line-height: 1.02;
  letter-spacing: -0.01em;
  margin: 0;
}

.page-home .home-lines__head p,
.page-home .home-scores__head p,
.page-home .home-entries__head p,
.page-home .home-recap__head p,
.page-home .home-local__head p,
.page-home .home-partners__head p {
  margin: 0;
  font-size: 15px;
  line-height: 1.75;
  color: var(--mist-400);
  max-width: 60ch;
}

.page-home .home-lines__grid {
  display: grid;
  gap: var(--home-gap);
}

.page-home .home-line {
  background: var(--ink-800);
  border: var(--bd) solid var(--ink-700);
  box-shadow: var(--sh-hard);
  padding: clamp(20px, 3vw, 30px);
  position: relative;
  display: grid;
  gap: 16px;
  align-content: start;
}

.page-home .home-line::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 60px;
  height: 4px;
  background: var(--flare-500);
}

.page-home .home-line--alt::before {
  background: var(--volt-400);
}

.page-home .home-line__t {
  font-family: var(--f-cond);
  font-weight: 800;
  font-size: 26px;
  letter-spacing: 0.02em;
  margin: 0;
  color: var(--mist-100);
}

.page-home .home-line__spec {
  display: grid;
  gap: 0;
  margin: 0;
}

.page-home .home-line__spec > div {
  display: grid;
  gap: 5px;
  padding: 13px 0;
  border-bottom: 1px dashed var(--ink-700);
}

.page-home .home-line__spec > div:first-child {
  padding-top: 0;
}

.page-home .home-line__spec > div:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.page-home .home-line__spec dt {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--volt-400);
}

.page-home .home-line--alt .home-line__spec dt {
  color: var(--flare-300);
}

.page-home .home-line__spec dd {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: var(--mist-100);
}

/* ---------- 本轮赛果 ---------- */

.page-home .home-scores {
  background: var(--ink-950);
}

.page-home .home-scores__grid {
  display: grid;
  gap: var(--home-gap);
}

.page-home .home-scores__board {
  background: var(--flare-500);
  color: var(--ink-950);
  border: var(--bd) solid var(--ink-950);
  box-shadow: var(--sh-hard);
  padding: clamp(20px, 3vw, 30px);
  display: grid;
  gap: 14px;
  align-content: center;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 22px), calc(100% - 22px) 100%, 0 100%);
}

.page-home .home-scores__board-k {
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.78;
}

.page-home .home-scores__match {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 12px;
}

.page-home .home-scores__team {
  font-family: var(--f-cond);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: 0.01em;
  flex: 1 1 auto;
}

.page-home .home-scores__team--away {
  text-align: right;
}

.page-home .home-scores__num {
  font-family: var(--f-mono);
  font-weight: 800;
  font-size: clamp(48px, 11vw, 72px);
  line-height: 0.9;
  letter-spacing: -0.05em;
}

.page-home .home-scores__sep {
  font-family: var(--f-mono);
  font-weight: 800;
  font-size: clamp(22px, 4vw, 30px);
  opacity: 0.6;
}

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

.page-home .home-scores__rows {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 2px;
}

.page-home .home-scores__rows li {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 14px;
  padding: 13px 16px;
  background: var(--ink-800);
  border-left: 3px solid var(--ink-700);
  transition: border-color 160ms ease, background 160ms ease;
}

.page-home .home-scores__rows li:hover,
.page-home .home-scores__rows li:focus-within {
  border-left-color: var(--flare-500);
  background: var(--ink-700);
}

.page-home .home-scores__rank {
  font-family: var(--f-mono);
  font-weight: 800;
  font-size: 16px;
  color: var(--flare-500);
  min-width: 26px;
}

.page-home .home-scores__name {
  font-size: 15px;
  font-weight: 600;
  color: var(--mist-100);
  min-width: 5.5em;
}

.page-home .home-scores__pts {
  font-family: var(--f-mono);
  font-weight: 800;
  font-size: 15px;
  color: var(--volt-400);
}

.page-home .home-scores__rows .home-scores__chips {
  margin-left: auto;
}

.page-home .home-scores__media {
  margin: 0;
  position: relative;
  border: var(--bd) solid var(--ink-700);
  box-shadow: var(--sh-soft);
  background: var(--ink-800);
  overflow: hidden;
}

.page-home .home-scores__media img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.page-home .home-scores__media figcaption {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--mist-100);
  background: rgba(10, 14, 13, 0.82);
  padding: 7px 12px;
  border-top: 2px solid var(--volt-700);
}

/* ---------- 两个入口 ---------- */

.page-home .home-entries {
  background: var(--ink-900);
  border-top: var(--bd) solid var(--ink-700);
  border-bottom: var(--bd) solid var(--ink-700);
}

.page-home .home-entries__grid {
  display: grid;
  gap: var(--home-gap);
}

.page-home .home-entry {
  display: grid;
  gap: 12px;
  align-content: start;
  padding: clamp(22px, 3.4vw, 34px);
  background: var(--ink-800);
  border: var(--bd) solid var(--ink-700);
  box-shadow: var(--sh-hard);
  text-decoration: none;
  color: inherit;
  position: relative;
  overflow: hidden;
  transition: transform 180ms ease, border-color 180ms ease;
}

.page-home .home-entry::after {
  content: "";
  position: absolute;
  right: -30px;
  top: -30px;
  width: 120px;
  height: 120px;
  border: 2px solid var(--flare-500);
  transform: rotate(45deg);
  opacity: 0.5;
  pointer-events: none;
}

.page-home .home-entry--alt::after {
  border-color: var(--volt-400);
}

.page-home .home-entry:hover,
.page-home .home-entry:focus-visible {
  transform: translate(-2px, -2px);
  border-color: var(--flare-500);
}

.page-home .home-entry--alt:hover,
.page-home .home-entry--alt:focus-visible {
  border-color: var(--volt-400);
}

.page-home .home-entry__k {
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--flare-500);
}

.page-home .home-entry--alt .home-entry__k {
  color: var(--volt-400);
}

.page-home .home-entry__t {
  font-family: var(--f-cond);
  font-weight: 800;
  font-size: clamp(24px, 3.6vw, 32px);
  line-height: 1.08;
  margin: 0;
  color: var(--mist-100);
  max-width: 22ch;
}

.page-home .home-entry__d {
  margin: 0;
  font-size: 15px;
  line-height: 1.75;
  color: var(--mist-400);
  max-width: 52ch;
}

.page-home .home-entry__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
  font-size: 14px;
}

.page-home .home-entry__list li {
  position: relative;
  padding-left: 18px;
  color: var(--mist-100);
  line-height: 1.6;
}

.page-home .home-entry__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 8px;
  height: 2px;
  background: var(--flare-500);
}

.page-home .home-entry--alt .home-entry__list li::before {
  background: var(--volt-400);
}

.page-home .home-entry__go {
  margin-top: 6px;
  font-family: var(--f-mono);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--flare-500);
  border-bottom: 2px solid var(--flare-500);
  padding-bottom: 3px;
  justify-self: start;
}

.page-home .home-entry--alt .home-entry__go {
  color: var(--volt-400);
  border-bottom-color: var(--volt-400);
}

/* ---------- 复盘 ---------- */

.page-home .home-recap {
  background: var(--ink-950);
}

.page-home .home-recap__list {
  display: grid;
  gap: 2px;
}

.page-home .home-recap__item {
  display: grid;
  grid-template-columns: 44px 1fr;
  grid-template-areas:
    "num body"
    ".  meta";
  gap: 10px 16px;
  padding: clamp(18px, 2.6vw, 26px) clamp(16px, 2.4vw, 24px);
  background: var(--ink-800);
  border-left: 3px solid var(--ink-700);
  text-decoration: none;
  color: inherit;
  transition: border-color 160ms ease, background 160ms ease;
}

.page-home .home-recap__item:hover,
.page-home .home-recap__item:focus-visible {
  border-left-color: var(--flare-500);
  background: var(--ink-700);
}

.page-home .home-recap__idx-num {
  grid-area: num;
  font-family: var(--f-mono);
  font-weight: 800;
  font-size: 20px;
  color: var(--flare-500);
  line-height: 1.1;
}

.page-home .home-recap__body {
  grid-area: body;
  display: grid;
  gap: 8px;
}

.page-home .home-recap__t {
  font-family: var(--f-serif);
  font-weight: 600;
  font-size: clamp(19px, 2.6vw, 24px);
  line-height: 1.34;
  margin: 0;
  color: var(--mist-100);
}

.page-home .home-recap__d {
  margin: 0;
  font-size: 15px;
  line-height: 1.75;
  color: var(--mist-400);
  max-width: 68ch;
}

.page-home .home-recap__meta {
  grid-area: meta;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--mist-400);
}

.page-home .home-recap__more {
  margin-top: clamp(20px, 3vw, 30px);
}

/* ---------- 本地 ---------- */

.page-home .home-local {
  background: var(--ink-900);
  border-top: var(--bd) solid var(--ink-700);
  border-bottom: var(--bd) solid var(--ink-700);
}

.page-home .home-local__media {
  margin: 0 0 clamp(24px, 4vw, 40px);
  position: relative;
  border: var(--bd) solid var(--ink-700);
  box-shadow: var(--sh-hard);
  background: var(--ink-800);
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 30px), calc(100% - 30px) 100%, 0 100%);
}

.page-home .home-local__media img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 2 / 1;
  object-fit: cover;
}

.page-home .home-local__media figcaption {
  position: absolute;
  left: 0;
  bottom: 0;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--ink-950);
  background: var(--volt-400);
  padding: 6px 12px;
}

.page-home .home-local__grid {
  display: grid;
  gap: var(--home-gap);
}

.page-home .home-local__card {
  background: var(--ink-800);
  border: var(--bd) solid var(--ink-700);
  box-shadow: var(--sh-soft);
  padding: clamp(20px, 3vw, 28px);
  display: grid;
  gap: 14px;
  align-content: start;
}

.page-home .home-local__card--alt {
  background: var(--surface-050);
  border-color: var(--ink-950);
  color: var(--ink-950);
}

.page-home .home-local__k {
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--volt-400);
}

.page-home .home-local__card--alt .home-local__k {
  color: var(--volt-700);
}

.page-home .home-local__t {
  font-family: var(--f-cond);
  font-weight: 800;
  font-size: clamp(22px, 3.2vw, 28px);
  line-height: 1.14;
  margin: 0;
  color: var(--mist-100);
}

.page-home .home-local__card--alt .home-local__t {
  color: var(--ink-950);
}

.page-home .home-local__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 14px;
  font-family: var(--f-mono);
  font-size: 14px;
}

.page-home .home-local__list li {
  padding: 8px 10px;
  border: 1px solid var(--ink-700);
  color: var(--mist-100);
  letter-spacing: 0.02em;
}

.page-home .home-local__card--alt .home-local__list li {
  border-color: rgba(10, 14, 13, 0.25);
  color: var(--ink-950);
  background: rgba(10, 14, 13, 0.05);
}

/* ---------- 长期 ---------- */

.page-home .home-partners {
  background: var(--ink-950);
}

.page-home .home-partners__inner {
  display: grid;
  gap: clamp(22px, 3.4vw, 36px);
  border: var(--bd) solid var(--ink-700);
  box-shadow: var(--sh-hard);
  background: var(--ink-900);
  padding: clamp(24px, 4vw, 44px);
  position: relative;
  overflow: hidden;
}

.page-home .home-partners__inner::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--flare-500) 0%, var(--flare-500) 46%, var(--volt-400) 46%, var(--volt-400) 100%);
}

.page-home .home-partners__stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--home-gap);
  margin: 0;
}

.page-home .home-partners__stat {
  padding: 14px 14px 16px;
  background: var(--ink-800);
  border-left: 3px solid var(--flare-500);
}

.page-home .home-partners__stat:nth-child(even) {
  border-left-color: var(--volt-400);
}

.page-home .home-partners__stat dt {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mist-400);
  margin-bottom: 6px;
}

.page-home .home-partners__stat dd {
  margin: 0;
  font-family: var(--f-mono);
  font-weight: 800;
  font-size: clamp(30px, 5vw, 42px);
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--mist-100);
}

.page-home .home-partners__stat dd small {
  font-size: 0.36em;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--mist-400);
  margin-left: 4px;
  vertical-align: baseline;
}

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

/* ---------- 响应式 ---------- */

@media (min-width: 720px) {
  .page-home .home-lines__grid,
  .page-home .home-entries__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .page-home .home-recap__item {
    grid-template-columns: 56px 1fr auto;
    grid-template-areas: "num .page-home meta";
    align-items: start;
  }

  .page-home .home-recap__meta {
    padding-top: 6px;
    white-space: nowrap;
  }
}

@media (min-width: 900px) {
  .page-home .home-scores__grid {
    grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
    align-items: start;
  }

  .page-home .home-scores__board {
    grid-column: 1 / -1;
  }

  .page-home .home-scores__media {
    position: sticky;
    top: calc(var(--bar-h) + 24px);
  }
}

@media (min-width: 960px) {
  .page-home .home-collage {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }

  .page-home .home-collage__photo--main {
    grid-column: 1 / span 7;
    grid-row: 1;
    aspect-ratio: 7 / 4;
  }

  .page-home .home-collage__photo--sub {
    grid-column: 8 / span 5;
    grid-row: 1;
    aspect-ratio: 5 / 4;
  }

  .page-home .home-collage__score {
    grid-column: 1 / span 4;
    grid-row: 2;
  }

  .page-home .home-collage__bracket {
    grid-column: 5 / span 4;
    grid-row: 2;
  }

  .page-home .home-collage__pulse {
    grid-column: 9 / span 4;
    grid-row: 2;
  }

  .page-home .home-hero__lead {
    font-size: 17px;
  }
}

@media (min-width: 1180px) {
  .page-home .home-scores__grid {
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-home .home-entry,
  .page-home .home-recap__item,
  .page-home .home-scores__rows li {
    transition: none;
  }

  .page-home .home-entry:hover,
  .page-home .home-entry:focus-visible {
    transform: none;
  }
}
