/* ================= 首页专属样式 ================= */

.page-home {
  --home-gap: clamp(20px, 3vw, 36px);
  --home-line: rgba(232, 180, 74, 0.28);
  display: block;
  background: var(--night);
}

/* ---------- 通用：章节标题组 ---------- */
.page-home .home-head {
  margin-bottom: clamp(26px, 3.6vw, 44px);
}

.page-home .home-head--wide {
  max-width: 78ch;
}

.page-home .home-head__title {
  margin: 10px 0 14px;
  font-size: clamp(24px, 4.4vw, 38px);
  font-weight: 900;
  line-height: 1.18;
  letter-spacing: -0.01em;
  color: var(--paper);
  max-width: 24ch;
}

.page-home .home-head__lede {
  margin: 0;
  max-width: 66ch;
  font-size: clamp(15px, 1.4vw, 16.5px);
  line-height: 1.9;
  color: rgba(245, 241, 232, 0.74);
}

.page-home .home-head--row {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

.page-home .home-head__more {
  align-self: flex-start;
}

/* ---------- 章节壳 ---------- */
.page-home .home-chapter {
  position: relative;
  padding: clamp(48px, 6.5vw, 92px) 0;
}

.page-home .home-chapter::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--home-line) 22%, var(--home-line) 78%, transparent);
}

.page-home .home-chapter--moss {
  background:
    radial-gradient(90% 60% at 8% 0%, rgba(14, 42, 38, 0.9), transparent 70%),
    linear-gradient(180deg, var(--night) 0%, #0A1620 45%, var(--night) 100%);
}

/* ================= 首屏 ================= */
.page-home .home-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: clamp(30px, 5vw, 70px) 0 0;
  background: var(--night);
}

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

.page-home .home-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  filter: saturate(0.8) contrast(1.08);
}

.page-home .home-hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 80% at 10% 0%, rgba(215, 38, 61, 0.3), transparent 62%),
    radial-gradient(80% 60% at 92% 12%, rgba(232, 180, 74, 0.16), transparent 70%),
    linear-gradient(180deg, rgba(11, 16, 32, 0.4) 0%, rgba(11, 16, 32, 0.92) 74%, var(--night) 100%);
}

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

.page-home .home-hero__ctx {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 clamp(16px, 2.4vw, 26px);
  padding: 6px 15px;
  font-size: var(--fs-12);
  letter-spacing: 0.14em;
  color: var(--gold);
  border: 1px solid rgba(232, 180, 74, 0.42);
  border-radius: 999px;
  background: rgba(11, 16, 32, 0.55);
}

.page-home .home-hero__ctx-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 4px rgba(255, 138, 61, 0.2);
  animation: home-pulse 2.4s var(--ease) infinite;
}

@keyframes home-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(0.72); opacity: 0.6; }
}

.page-home .home-hero__title {
  margin: 0 0 16px;
  max-width: 20ch;
  font-size: clamp(27px, 6vw, 54px);
  font-weight: 900;
  line-height: 1.14;
  letter-spacing: -0.015em;
  color: var(--paper);
}

.page-home .home-hero__title em {
  font-style: normal;
  background: linear-gradient(96deg, #F7DC93 0%, var(--gold) 46%, #C08E2E 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.page-home .home-hero__lede {
  margin: 0 0 clamp(28px, 4vw, 46px);
  max-width: 60ch;
  font-size: clamp(15px, 1.5vw, 17px);
  line-height: 1.88;
  color: rgba(245, 241, 232, 0.78);
}

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

/* ---------- 焦点比分牌 ---------- */
.page-home .home-board {
  position: relative;
  padding: clamp(20px, 3vw, 32px);
  border: 1px solid rgba(232, 180, 74, 0.34);
  border-radius: var(--radius);
  background: linear-gradient(155deg, rgba(14, 42, 38, 0.96) 0%, rgba(11, 16, 32, 0.98) 100%);
  box-shadow: 9px 9px 0 rgba(107, 20, 32, 0.6), 0 22px 48px rgba(0, 0, 0, 0.5);
  overflow: hidden;
}

.page-home .home-board::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red) 0%, var(--gold) 46%, transparent 100%);
}

.page-home .home-board__league {
  margin: 12px 0 18px;
  font-size: var(--fs-12);
  letter-spacing: 0.16em;
  color: var(--ash);
}

.page-home .home-board__teams {
  display: flex;
  align-items: baseline;
  gap: 12px;
  font-size: clamp(17px, 2.4vw, 22px);
  font-weight: 800;
  color: var(--paper);
}

.page-home .home-board__vs {
  font-size: var(--fs-12);
  letter-spacing: 0.1em;
  color: var(--steel);
}

.page-home .home-board__team--away {
  color: rgba(245, 241, 232, 0.7);
}

.page-home .home-board__score {
  display: flex;
  align-items: center;
  gap: clamp(8px, 1.6vw, 16px);
  margin: 6px 0 16px;
}

.page-home .home-board__colon {
  font-size: clamp(28px, 5vw, 46px);
  font-weight: 700;
  color: var(--steel);
}

.page-home .home-board__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
}

.page-home .home-board__clock {
  font-size: var(--fs-14);
  color: var(--orange);
  letter-spacing: 0.06em;
}

.page-home .home-board__strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  border-top: 1px solid rgba(232, 180, 74, 0.18);
  padding-top: 16px;
}

.page-home .home-board__strip > div {
  padding-right: 10px;
}

.page-home .home-board__strip dt {
  font-size: var(--fs-12);
  color: var(--ash);
  margin-bottom: 6px;
  letter-spacing: 0.08em;
}

.page-home .home-board__strip dd {
  margin: 0;
  font-size: var(--fs-16);
  font-weight: 700;
  color: var(--paper);
}

/* ---------- 窄赛程卡 ---------- */
.page-home .home-fixtures {
  padding: clamp(18px, 2.6vw, 26px);
  border: 1px solid rgba(74, 90, 120, 0.42);
  border-radius: var(--radius);
  background: rgba(11, 16, 32, 0.72);
  backdrop-filter: blur(3px);
}

.page-home .home-fixtures__list {
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
}

.page-home .home-fixtures__item {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  padding: 12px 0;
  border-top: 1px solid rgba(74, 90, 120, 0.26);
  font-size: var(--fs-14);
}

.page-home .home-fixtures__item:first-child {
  border-top: none;
  padding-top: 4px;
}

.page-home .home-fixtures__time {
  color: var(--gold);
  font-size: var(--fs-14);
  letter-spacing: 0.02em;
}

.page-home .home-fixtures__pair {
  color: var(--paper);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.page-home .home-fixtures__pair i {
  font-style: normal;
  color: var(--steel);
  padding: 0 4px;
  font-size: var(--fs-12);
}

.page-home .home-fixtures__lv {
  font-size: var(--fs-12);
  color: var(--steel);
  border: 1px solid rgba(74, 90, 120, 0.5);
  border-radius: 3px;
  padding: 2px 7px;
  white-space: nowrap;
}

/* ---------- 横向比分带 ---------- */
.page-home .home-ticker {
  position: relative;
  margin-top: clamp(28px, 4vw, 48px);
  padding: 13px 0;
  border-top: 1px solid rgba(232, 180, 74, 0.2);
  border-bottom: 1px solid rgba(232, 180, 74, 0.2);
  background: linear-gradient(90deg, rgba(215, 38, 61, 0.16) 0%, rgba(11, 16, 32, 0.3) 42%, rgba(232, 180, 74, 0.14) 100%);
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 5%, #000 95%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 5%, #000 95%, transparent 100%);
}

.page-home .home-ticker__track {
  display: flex;
  width: max-content;
  animation: home-ticker-roll 48s linear infinite;
}

.page-home .home-ticker:hover .home-ticker__track,
.page-home .home-ticker:focus-within .home-ticker__track {
  animation-play-state: paused;
}

@keyframes home-ticker-roll {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}

.page-home .home-ticker__group {
  display: flex;
  gap: 12px;
  padding-right: 12px;
}

.page-home .home-tick {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 15px;
  border: 1px solid rgba(74, 90, 120, 0.42);
  border-radius: 999px;
  background: rgba(11, 16, 32, 0.72);
  font-size: var(--fs-14);
  color: var(--paper);
  white-space: nowrap;
  transition: transform 260ms var(--ease), border-color 260ms var(--ease);
}

.page-home .home-tick:hover {
  transform: scale(1.06);
  border-color: rgba(232, 180, 74, 0.7);
}

.page-home .home-tick b {
  font-weight: 700;
  font-size: var(--fs-12);
  color: var(--gold);
  letter-spacing: 0.06em;
}

.page-home .home-tick .score-digits {
  font-size: var(--fs-16);
}

/* ================= 四类入口 ================= */
.page-home .home-portals {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.page-home .home-portal {
  position: relative;
  display: block;
  padding: clamp(20px, 2.8vw, 30px);
  border: 1px solid rgba(74, 90, 120, 0.45);
  border-radius: var(--radius);
  background: linear-gradient(160deg, rgba(245, 241, 232, 0.05) 0%, rgba(11, 16, 32, 0.9) 55%);
  text-decoration: none;
  color: var(--paper);
  box-shadow: 6px 6px 0 rgba(107, 20, 32, 0.42);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%);
  transition: transform 280ms var(--ease), border-color 280ms var(--ease), box-shadow 280ms var(--ease);
}

.page-home .home-portal:hover,
.page-home .home-portal:focus-visible {
  transform: translateY(-6px);
  border-color: rgba(232, 180, 74, 0.78);
  box-shadow: 9px 12px 0 rgba(107, 20, 32, 0.5), 0 0 0 1px rgba(232, 180, 74, 0.22) inset;
}

.page-home .home-portal__no {
  display: block;
  font-size: var(--fs-14);
  font-weight: 700;
  letter-spacing: 0.16em;
  color: rgba(232, 180, 74, 0.82);
  margin-bottom: 12px;
}

.page-home .home-portal__title {
  margin: 0 0 10px;
  font-size: clamp(19px, 2.6vw, 24px);
  font-weight: 900;
  letter-spacing: -0.005em;
  color: var(--paper);
}

.page-home .home-portal__desc {
  margin: 0 0 18px;
  font-size: var(--fs-14);
  line-height: 1.85;
  color: rgba(245, 241, 232, 0.7);
}

.page-home .home-portal__go {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: var(--fs-14);
  font-weight: 700;
  color: var(--gold);
  border-bottom: 1px solid rgba(232, 180, 74, 0.45);
  padding-bottom: 3px;
}

.page-home .home-portal--a {
  border-left: 3px solid var(--red);
}

.page-home .home-portal--d {
  border-left: 3px solid var(--gold);
}

/* ================= 筛选演示 ================= */
.page-home .home-sieve__body {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(22px, 3vw, 34px);
}

.page-home .home-sieve__panel {
  padding: clamp(20px, 2.8vw, 30px);
  border: 1px solid rgba(232, 180, 74, 0.26);
  border-radius: var(--radius);
  background: rgba(5, 12, 20, 0.72);
  box-shadow: 6px 6px 0 rgba(107, 20, 32, 0.38);
}

.page-home .home-sieve__panel .filter-bar {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: 16px;
}

.page-home .home-sieve__panel .filter {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.page-home .home-sieve__panel .filter__label {
  font-size: var(--fs-12);
  letter-spacing: 0.12em;
  color: var(--gold);
}

.page-home .home-sieve__panel .filter__select {
  width: 100%;
  padding: 10px 12px;
  font-size: var(--fs-14);
  font-family: var(--sans);
  color: var(--paper);
  background: rgba(11, 16, 32, 0.9);
  border: 1px solid rgba(74, 90, 120, 0.55);
  border-radius: 4px;
}

.page-home .home-sieve__panel .filter__select:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.page-home .home-sieve__summary {
  margin: 0 0 20px;
  padding: 10px 14px;
  font-size: var(--fs-14);
  color: var(--orange);
  border-left: 3px solid var(--orange);
  background: rgba(255, 138, 61, 0.08);
  border-radius: 0 4px 4px 0;
}

.page-home .home-sieve__cases {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
}

.page-home .home-sieve__cases li {
  position: relative;
  padding: 11px 0 11px 20px;
  font-size: var(--fs-14);
  line-height: 1.82;
  color: rgba(245, 241, 232, 0.76);
  border-top: 1px solid rgba(74, 90, 120, 0.24);
}

.page-home .home-sieve__cases li:first-child {
  border-top: none;
}

.page-home .home-sieve__cases li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 19px;
  width: 8px;
  height: 2px;
  background: var(--gold);
}

.page-home .home-sieve__cases b {
  color: var(--paper);
  font-weight: 700;
}

.page-home .home-sieve__media .media__img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius);
  border: 1px solid rgba(74, 90, 120, 0.4);
}

.page-home .home-sieve__media .media__caption {
  margin-top: 12px;
  font-size: var(--fs-12);
  line-height: 1.8;
  color: var(--ash);
}

/* ================= 赛季纵轴 ================= */
.page-home .home-archive__figure {
  margin: 0 0 clamp(26px, 3.6vw, 44px);
}

.page-home .home-archive__figure .media__img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius);
  border: 1px solid rgba(232, 180, 74, 0.22);
  filter: saturate(0.9);
}

.page-home .home-axis {
  list-style: none;
  display: flex;
  gap: 0;
  margin: 0;
  padding: 6px 0 18px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
  border-bottom: 1px solid rgba(74, 90, 120, 0.28);
}

.page-home .home-axis__item {
  position: relative;
  flex: 0 0 auto;
  width: 132px;
  padding: 28px 14px 0 0;
  scroll-snap-align: start;
}

.page-home .home-axis__item::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(232, 180, 74, 0.5), rgba(232, 180, 74, 0.1));
}

.page-home .home-axis__node {
  position: absolute;
  top: 3px;
  left: 0;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--steel);
  box-shadow: 0 0 0 4px rgba(74, 90, 120, 0.2);
}

.page-home .home-axis__item--hot .home-axis__node {
  background: var(--red);
  box-shadow: 0 0 0 4px rgba(215, 38, 61, 0.22), 0 0 14px rgba(215, 38, 61, 0.6);
}

.page-home .home-axis__yr {
  display: block;
  font-size: var(--fs-16);
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--gold);
  margin-bottom: 8px;
}

.page-home .home-axis__item--hot .home-axis__yr {
  background: linear-gradient(96deg, #F7DC93, var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.page-home .home-axis__txt {
  display: block;
  font-size: var(--fs-12);
  line-height: 1.75;
  color: rgba(245, 241, 232, 0.66);
}

.page-home .home-archive__note {
  margin: clamp(26px, 3.4vw, 40px) 0;
  padding: clamp(20px, 2.6vw, 28px);
  border-left: 3px solid var(--red);
  background: linear-gradient(90deg, rgba(215, 38, 61, 0.12) 0%, rgba(11, 16, 32, 0.4) 70%);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.page-home .home-archive__note-k {
  margin: 0 0 10px;
  font-size: var(--fs-16);
  font-weight: 800;
  color: var(--paper);
  letter-spacing: 0.01em;
}

.page-home .home-archive__note-t {
  margin: 0;
  max-width: 66ch;
  font-size: var(--fs-14);
  line-height: 1.88;
  color: rgba(245, 241, 232, 0.74);
}

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

.page-home .home-archive__strip .media__img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius);
  border: 1px solid rgba(74, 90, 120, 0.34);
  opacity: 0.9;
}

/* ================= 高频疑问 ================= */
.page-home .home-asks {
  border-top: 1px solid rgba(232, 180, 74, 0.2);
}

.page-home .home-asks .collapse__item {
  border-bottom: 1px solid rgba(74, 90, 120, 0.28);
}

.page-home .home-asks .collapse__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 19px 2px;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  font-family: var(--sans);
  font-size: clamp(15px, 1.6vw, 17px);
  font-weight: 700;
  color: var(--paper);
  transition: color 240ms var(--ease);
}

.page-home .home-asks .collapse__trigger:hover {
  color: var(--gold);
}

.page-home .home-asks .collapse__trigger:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.page-home .home-asks .collapse__icon {
  flex: 0 0 auto;
  width: 14px;
  height: 14px;
  position: relative;
}

.page-home .home-asks .collapse__icon::before,
.page-home .home-asks .collapse__icon::after {
  content: "";
  position: absolute;
  background: var(--gold);
  transition: transform 240ms var(--ease);
}

.page-home .home-asks .collapse__icon::before {
  top: 6px;
  left: 0;
  width: 14px;
  height: 2px;
}

.page-home .home-asks .collapse__icon::after {
  top: 0;
  left: 6px;
  width: 2px;
  height: 14px;
}

.page-home .home-asks [aria-expanded="true"] .collapse__icon::after {
  transform: scaleY(0);
}

.page-home .home-asks .collapse__inner {
  padding: 0 2px 22px;
  max-width: 70ch;
}

.page-home .home-asks .collapse__inner p {
  margin: 0 0 12px;
  font-size: var(--fs-14);
  line-height: 1.9;
  color: rgba(245, 241, 232, 0.72);
}

.page-home .home-asks__link {
  font-size: var(--fs-14);
  font-weight: 700;
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(232, 180, 74, 0.42);
  padding-bottom: 2px;
}

.page-home .home-asks__link:hover {
  color: var(--orange);
  border-color: var(--orange);
}

/* ================= 数据观察 ================= */
.page-home .home-notes {
  list-style: none;
  margin: 0;
  padding: 0;
}

.page-home .home-notes__item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  padding: 22px 0;
  border-top: 1px solid rgba(74, 90, 120, 0.28);
  transition: background 260ms var(--ease);
}

.page-home .home-notes__item:last-child {
  border-bottom: 1px solid rgba(74, 90, 120, 0.28);
}

.page-home .home-notes__tag {
  color: var(--gold);
  border-color: rgba(232, 180, 74, 0.4);
}

.page-home .home-notes__title {
  display: inline-block;
  margin-bottom: 8px;
  font-size: clamp(16px, 1.9vw, 19px);
  font-weight: 800;
  color: var(--paper);
  text-decoration: none;
  transition: color 220ms var(--ease);
}

.page-home .home-notes__title:hover {
  color: var(--gold);
}

.page-home .home-notes__desc {
  margin: 0 0 10px;
  max-width: 68ch;
  font-size: var(--fs-14);
  line-height: 1.85;
  color: rgba(245, 241, 232, 0.68);
}

.page-home .home-notes__meta {
  margin: 0;
  font-size: var(--fs-12);
  letter-spacing: 0.08em;
  color: var(--steel);
}

/* ================= 联络收束 ================= */
.page-home .home-line {
  position: relative;
  padding: clamp(44px, 6vw, 76px) 0 clamp(52px, 7vw, 88px);
  background:
    radial-gradient(70% 90% at 88% 10%, rgba(215, 38, 61, 0.22), transparent 66%),
    linear-gradient(135deg, #0E2A26 0%, var(--night) 62%);
  border-top: 1px solid rgba(232, 180, 74, 0.26);
}

.page-home .home-line__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(24px, 3.4vw, 44px);
  align-items: start;
}

.page-home .home-line__title {
  margin: 10px 0 12px;
  font-size: clamp(24px, 4.2vw, 36px);
  font-weight: 900;
  line-height: 1.16;
  color: var(--paper);
}

.page-home .home-line__text {
  margin: 0 0 22px;
  max-width: 52ch;
  font-size: var(--fs-14);
  line-height: 1.9;
  color: rgba(245, 241, 232, 0.74);
}

.page-home .home-line__list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(232, 180, 74, 0.22);
}

.page-home .home-line__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(232, 180, 74, 0.16);
  font-size: var(--fs-14);
}

.page-home .home-line__key {
  flex: 0 0 auto;
  min-width: 66px;
  font-size: var(--fs-12);
  letter-spacing: 0.12em;
  color: var(--gold);
}

.page-home .home-line__val {
  flex: 1 1 auto;
  min-width: 0;
  color: var(--paper);
  word-break: break-all;
}

.page-home .home-line__row .copy-btn {
  flex: 0 0 auto;
}

/* ================= 响应式 ================= */
@media (min-width: 700px) {
  .page-home .home-notes__item {
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 22px;
    align-items: start;
  }

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

@media (min-width: 900px) {
  .page-home .home-hero__collage {
    grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
    align-items: stretch;
    gap: 22px;
  }

  .page-home .home-fixtures {
    transform: translateY(22px);
  }

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

  .page-home .home-portal--a { grid-column: span 4; }
  .page-home .home-portal--b { grid-column: span 2; transform: translateY(14px); }
  .page-home .home-portal--c { grid-column: span 2; }
  .page-home .home-portal--d { grid-column: span 4; }

  .page-home .home-portal--b:hover,
  .page-home .home-portal--b:focus-visible {
    transform: translateY(8px);
  }

  .page-home .home-sieve__body {
    grid-template-columns: minmax(0, 1.18fr) minmax(0, 0.82fr);
    align-items: center;
  }

  .page-home .home-head--row {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }

  .page-home .home-head__more {
    align-self: flex-end;
  }

  .page-home .home-line__inner {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(32px, 5vw, 64px);
  }
}

@media (min-width: 1200px) {
  .page-home .home-hero__title {
    max-width: 24ch;
  }

  .page-home .home-board {
    padding: 34px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-home .home-ticker__track {
    animation: none;
  }

  .page-home .home-hero__ctx-dot {
    animation: none;
  }

  .page-home .home-portal,
  .page-home .home-tick {
    transition: none;
  }
}
