.page-home {
  display: block;
  background-color: var(--night-green);
  color: var(--score-white);
  font-family: var(--font-body);
  overflow-x: hidden;
}

.page-home h2.display {
  margin: 0 0 16px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.75rem, 5.4vw, 2.9rem);
  line-height: 1.06;
  letter-spacing: -.01em;
  color: var(--score-white);
  text-wrap: balance;
}

.page-home .label {
  margin: 0 0 16px;
  color: var(--data-blue);
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.page-home .lede {
  margin: 0;
  max-width: 60ch;
  font-size: 1rem;
  line-height: 1.78;
  color: rgba(242, 246, 244, .78);
}

.page-home .mono {
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
}

.page-home a:focus-visible,
.page-home button:focus-visible,
.page-home summary:focus-visible {
  outline: 2px solid var(--stoppage-orange);
  outline-offset: 3px;
}

.page-home a {
  text-underline-offset: 3px;
}

/* ============ 首屏 ============ */
.page-home .hero {
  position: relative;
  padding: 26px 0 0;
  background:
    radial-gradient(120% 90% at 88% 0%, rgba(45, 156, 255, .2) 0%, rgba(45, 156, 255, 0) 58%),
    linear-gradient(155deg, var(--deep-green) 0%, var(--night-green) 58%, var(--ink) 100%);
  isolation: isolate;
}

.page-home .hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(45, 156, 255, .07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(45, 156, 255, .07) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, .9), transparent 78%);
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, .9), transparent 78%);
}

.page-home .hero__crumbs {
  position: relative;
  z-index: 2;
  margin-bottom: 10px;
}

.page-home .hero__crumbs .breadcrumbs__current {
  color: rgba(242, 246, 244, .6);
}

.page-home .hero__split {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 34px;
  padding: 22px 0 8px;
}

.page-home .hero__main,
.page-home .hero__side {
  position: relative;
  z-index: 1;
}

.page-home .hero__label {
  margin-bottom: 14px;
  color: var(--stoppage-orange);
}

.page-home .hero__title {
  margin: 0 0 18px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(2.05rem, 7.4vw, 3.9rem);
  line-height: 1.04;
  letter-spacing: -.012em;
  max-width: 16em;
  text-wrap: balance;
}

.page-home .hero__lede {
  color: rgba(242, 246, 244, .82);
}

.page-home .hero-lines {
  list-style: none;
  margin: 30px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.page-home .hero-line {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 13px 18px 14px 16px;
  color: var(--score-white);
  text-decoration: none;
  background:
    linear-gradient(90deg, rgba(45, 156, 255, .95) 0 3px, transparent 3px),
    rgba(242, 246, 244, .055);
  clip-path: polygon(0 0, 100% 0, calc(100% - 14px) 100%, 0 100%);
  transition: background-color .18s var(--ease), transform .18s var(--ease);
}

.page-home .hero-line:hover,
.page-home .hero-line:focus-visible {
  background:
    linear-gradient(90deg, var(--stoppage-orange) 0 3px, transparent 3px),
    rgba(45, 156, 255, .17);
  transform: translateX(3px);
}

.page-home .hero-line__name {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.16rem;
  letter-spacing: .01em;
}

.page-home .hero-line__meta {
  font-family: var(--font-mono);
  font-size: .71rem;
  letter-spacing: .03em;
  color: rgba(242, 246, 244, .6);
}

.page-home .hero__side {
  display: grid;
  gap: 16px;
  align-content: start;
}

.page-home .home-arena {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  clip-path: polygon(0 24px, 24px 0, 100% 0, 100% 100%, 0 100%);
}

.page-home .home-arena img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  opacity: .88;
}

.page-home .home-arena__cap {
  position: absolute;
  left: 0;
  bottom: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px 8px 12px;
  background: rgba(6, 18, 14, .88);
  font-size: .76rem;
  color: rgba(242, 246, 244, .86);
  clip-path: polygon(0 0, 100% 0, calc(100% - 12px) 100%, 0 100%);
}

.page-home .hero-panel {
  padding: 18px 18px 20px;
  background: rgba(6, 18, 14, .58);
  border-left: 2px solid var(--data-blue);
}

.page-home .hero-panel__title {
  margin: 0;
  font-family: var(--font-mono);
  font-size: .7rem
;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(242, 246, 244, .58);
}

.page-home .hero-panel .stat-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.page-home .hero-panel .stat {
  display: block;
}

.page-home .hero-panel .stat__value {
  display: block;
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  font-size: clamp(1.35rem, 5vw, 1.85rem);
  font-weight: 700;
  line-height: 1;
}

.page-home .hero-panel .stat__label {
  display: block;
  margin-top: 7px;
  font-size: .71rem;
  line-height: 1.5;
  color: rgba(242, 246, 244, .64);
}

.page-home .hero__ticker {
  position: relative;
  margin-top: 46px;
  overflow: hidden;
  border-top: 1px solid rgba(45, 156, 255, .3);
  background: var(--ink);
}

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

.page-home .hero__ticker::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(6, 18, 14, .94), rgba(11, 42, 33, .74) 55%, rgba(6, 18, 14, .95));
}

.page-home .ticker-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 24px;
  padding-top: 24px;
  padding-bottom: 26px;
}

.page-home .ticker-item {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.page-home .ticker-num {
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  font-size: 1.55rem;
  font-weight: 700;
  line-height: 1;
  color: var(--score-white);
}

.page-home .ticker-label {
  font-size: .76rem;
  line-height: 1.55;
  color: rgba(242, 246, 244, .68);
}

/* ============ 两条数据主线 ============ */
.page-home .home-lines {
  padding: 68px 0 60px;
  background: linear-gradient(180deg, var(--night-green) 0%, #0a2119 100%);
}

.page-home .lines-head {
  max-width: 68ch;
}

.page-home .lines-grid {
  display: grid;
  gap: 20px;
  margin-top: 36px;
}

.page-home .line-block {
  position: relative;
  padding: 28px 22px 26px;
  background: rgba(242, 246, 244, .045);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 26px), calc(100% - 26px) 100%, 0 100%);
}

.page-home .line-block::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 46%;
  height: 3px;
  background: var(--data-blue);
}

.page-home .line-block--home {
  background: rgba(18, 58, 46, .68);
}

.page-home .line-block--home::before {
  background: var(--stoppage-orange);
}

.page-home .line-block__tag {
  margin: 0 0 10px;
  font-family: var(--font-mono);
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--data-blue);
}

.page-home .line-block--home .line-block__tag {
  color: var(--stoppage-orange);
}

.page-home .line-block h3 {
  margin: 0 0 12px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.42rem;
  line-height: 1.2;
  color: var(--score-white);
}

.page-home .line-block p {
  margin: 0 0 16px;
  font-size: .94rem;
  line-height: 1.78;
  color: rgba(242, 246, 244, .8);
}

.page-home .line-facts {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
  display: grid;
  gap: 9px;
}

.page-home .line-facts li {
  display: flex;
  gap: 10px;
  font-size: .86rem;
  line-height: 1.62;
  color: rgba(242, 246, 244, .88);
}

.page-home .line-facts li::before {
  content: "";
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  margin-top: .52em;
  background: var(--data-blue);
  transform: rotate(45deg);
}

.page-home .line-block--home .line-facts li::before {
  background: var(--stoppage-orange);
}

.page-home .line-block__foot {
  margin: 0;
  font-size: .84rem;
}

.page-home .line-block__foot a {
  color: var(--data-blue);
  font-weight: 600;
}

.page-home .line-block--home .line-block__foot a {
  color: var(--stoppage-orange);
}

/* ============ 档案时间轴 ============ */
.page-home .home-archive {
  padding: 70px 0 66px;
}

.page-home .archive-grid {
  display: grid;
  gap: 34px;
}

.page-home .archive-intro .lede {
  margin-bottom: 26px;
}

.page-home .archive-figure {
  margin: 0;
  border: 1px solid rgba(108, 138, 128, .38);
  background: var(--ink);
}

.page-home .archive-figure img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 14 / 9;
  object-fit: cover;
  opacity: .9;
}

.page-home .archive-figure figcaption {
  padding: 12px 14px;
  font-size: .75rem;
  line-height: 1.6;
  color: rgba(242, 246, 244, .58);
}

.page-home .home-timeline {
  list-style: none;
  margin: 0;
  padding: 6px 0 6px 26px;
  position: relative;
}

.page-home .home-timeline::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 10px;
  bottom: 10px;
  width: 2px;
  background: linear-gradient(180deg, var(--data-blue) 0%, var(--stoppage-orange) 100%);
}

.page-home .home-timeline__item {
  position: relative;
  padding-bottom: 30px;
}

.page-home .home-timeline__item:last-child {
  padding-bottom: 0;
}

.page-home .home-timeline__item::before {
  content: "";
  position: absolute;
  left: -26px;
  top: 6px;
  width: 12px;
  height: 12px;
  background: var(--deep-green);
  border: 2px solid var(--data-blue);
  transform: rotate(45deg);
}

.page-home .home-timeline__item:last-child::before {
  border-color: var(--stoppage-orange);
  background: var(--stoppage-orange);
}

.page-home .home-timeline__year {
  display: block;
  margin-bottom: 6px;
  font-family: var(--font-mono);
  font-size: .74rem;
  letter-spacing: .08em;
  color: var(--stoppage-orange);
}

.page-home .home-timeline__title {
  margin: 0 0 7px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.24rem;
  line-height: 1.24;
  color: var(--score-white);
}

.page-home .home-timeline__text {
  margin: 0;
  max-width: 56ch;
  font-size: .9rem;
  line-height: 1.78;
  color: rgba(242, 246, 244, .76);
}

.page-home .archive-more {
  margin: 30px 0 0;
  font-size: .86rem;
}

.page-home .archive-more a {
  color: var(--data-blue);
  font-weight: 600;
}

/* ============ 抢断与补时 ============ */
.page-home .home-detail {
  padding: 68px 0 64px;
  background: linear-gradient(180deg, #0a2119 0%, var(--night-green) 100%);
}

.page-home .detail-head {
  max-width: 68ch;
}

.page-home .filter-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin: 30px 0 26px;
}

.page-home .filter-btn {
  padding: 8px 18px;
  font-family: var(--font-mono);
  font-size: .75rem;
  letter-spacing: .06em;
  color: rgba(242, 246, 244, .78);
  background: transparent;
  border: 1px solid rgba(108, 138, 128, .5);
  border-radius: 0;
  cursor: pointer;
  clip-path: polygon(0 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
  transition: background-color .16s var(--ease), border-color .16s var(--ease), color .16s var(--ease);
}

.page-home .filter-btn:hover {
  border-color: var(--data-blue);
}

.page-home .filter-btn[aria-pressed="true"] {
  background: var(--data-blue);
  border-color: var(--data-blue);
  color: var(--ink);
  font-weight: 700;
}

.page-home .filter-count {
  margin: 0 0 0 auto;
  font-family: var(--font-mono);
  font-size: .72rem;
  color: rgba(242, 246, 244, .58);
}

.page-home .detail-grid {
  display: grid;
  gap: 20px;
}

.page-home .detail-block {
  padding: 26px 22px 24px;
  background: linear-gradient(160deg, rgba(18, 58, 46, .85), rgba(6, 18, 14, .92));
  border-left: 3px solid var(--tackle-red);
}

.page-home .detail-block--stoppage {
  border-left-color: var(--stoppage-orange);
}

.page-home .detail-block h3 {
  margin: 0 0 12px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.34rem;
  line-height: 1.22;
  color: var(--score-white);
}

.page-home .detail-block > p {
  margin: 0 0 16px;
  font-size: .93rem;
  line-height: 1.78;
  color: rgba(242, 246, 244, .8);
}

.page-home .field-list {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.page-home .field-list li {
  padding: 11px 13px;
  font-size: .82rem;
  line-height: 1.55;
  color: rgba(242, 246, 244, .82);
  background: rgba(242, 246, 244, .06);
  border-top: 2px solid rgba(45, 156, 255, .55);
}

.page-home .detail-block--stoppage .field-list li {
  border-top-color: rgba(255, 138, 31, .6);
}

.page-home .field-list b {
  display: block;
  margin-bottom: 4px;
  font-family: var(--font-mono);
  font-size: .7rem;
  letter-spacing: .08em;
  color: var(--data-blue);
}

.page-home .detail-block--stoppage .field-list b {
  color: var(--stoppage-orange);
}

.page-home .detail-note {
  margin: 0;
  font-size: .84rem;
  line-height: 1.7;
  color: rgba(242, 246, 244, .7);
}

.page-home .detail-note a {
  color: var(--replay-purple);
  font-weight: 600;
}

/* ============ 资料下载 ============ */
.page-home .home-download {
  padding: 70px 0 68px;
}

.page-home .download-grid {
  display: grid;
  gap: 30px;
}

.page-home .download-copy .lede {
  margin-bottom: 24px;
}

.page-home .download-facts {
  list-style: none;
  margin: 0 0 26px;
  padding: 0;
  display: grid;
  gap: 0;
}

.page-home .download-facts li {
  padding: 11px 0 11px 18px;
  position: relative;
  font-size: .9rem;
  line-height: 1.6;
  color: rgba(242, 246, 244, .84);
  border-bottom: 1px solid rgba(108, 138, 128, .26);
}

.page-home .download-facts li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.05em;
  width: 8px;
  height: 2px;
  background: var(--data-blue);
}

.page-home .download-facts .mono {
  color: var(--score-white);
  font-weight: 700;
}

.page-home .download-actions {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.page-home .download-side {
  display: grid;
  gap: 16px;
  align-content: start;
}

.page-home .download-figure {
  margin: 0;
  overflow: hidden;
  background: var(--night-green);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 26px 100%, 0 calc(100% - 26px));
}

.page-home .download-figure img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  opacity: .92;
}

.page-home .download-details {
  padding: 14px 16px;
  background: rgba(242, 246, 244, .05);
  border-left: 2px solid var(--replay-purple);
}

.page-home .download-details summary {
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--score-white);
}

.page-home .download-details p {
  margin: 12px 0 0;
  font-size: .85rem;
  line-height: 1.75;
  color: rgba(242, 246, 244, .76);
}

/* ============ 数据来源 ============ */
.page-home .home-source {
  padding: 68px 0 62px;
  background: var(--night-green);
}

.page-home .source-head {
  max-width: 68ch;
}

.page-home .source-grid {
  display: grid;
  gap: 16px;
  margin-top: 34px;
}

.page-home .source-card {
  position: relative;
  padding: 22px 20px 24px;
  background: rgba(242, 246, 244, .045);
  border-top: 3px solid rgba(45, 156, 255, .7);
}

.page-home .source-card:nth-child(2) {
  border-top-color: rgba(255, 59, 69, .75);
}

.page-home .source-card:nth-child(3) {
  border-top-color: rgba(123, 91, 255, .8);
}

.page-home .source-card__num {
  display: block;
  font-size: 2.1rem;
  font-weight: 700;
  line-height: 1;
  color: var(--data-blue);
}

.page-home .source-card:nth-child(2) .source-card__num {
  color: var(--tackle-red);
}

.page-home .source-card:nth-child(3) .source-card__num {
  color: var(--replay-purple);
}

.page-home .source-card h3 {
  margin: 10px 0 8px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--score-white);
}

.page-home .source-card p {
  margin: 0;
  font-size: .87rem;
  line-height: 1.72;
  color: rgba(242, 246, 244, .74);
}

.page-home .source-check {
  margin-top: 26px;
  padding: 26px 22px;
  background: rgba(18, 58, 46, .55);
  border-left: 3px solid var(--stoppage-orange);
}

.page-home .source-check h3 {
  margin: 0 0 16px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.24rem;
  color: var(--score-white);
}

.page-home .check-list {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
  display: grid;
  gap: 12px;
}

.page-home .check-list li {
  display: grid;
  grid-template-columns: 2.2rem minmax(0, 1fr);
  gap: 10px;
  font-size: .89rem;
  line-height: 1.72;
  color: rgba(242, 246, 244, .84);
}

.page-home .check-list .mono {
  color: var(--stoppage-orange);
  font-weight: 700;
  font-size: .78rem;
  padding-top: .3em;
}

.page-home .source-partners {
  margin: 0;
  padding-top: 16px;
  border-top: 1px solid rgba(108, 138, 128, .3);
  font-size: .86rem;
  line-height: 1.78;
  color: rgba(242, 246, 244, .7);
}

/* ============ 下一步 ============ */
.page-home .home-next {
  padding: 68px 0 84px;
}

.page-home .next-head {
  max-width: 60ch;
}

.page-home .next-grid {
  display: grid;
  gap: 16px;
  margin-top: 30px;
}

.page-home .next-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 24px 22px 22px;
  color: var(--score-white);
  text-decoration: none;
  background: rgba(242, 246, 244, .05);
  border-left: 3px solid var(--data-blue);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 22px), calc(100% - 22px) 100%, 0 100%);
  transition: background-color .2s var(--ease), transform .2s var(--ease);
}

.page-home .next-card:nth-child(2) {
  border-left-color: var(--stoppage-orange);
}

.page-home .next-card:nth-child(3) {
  border-left-color: var(--replay-purple);
}

.page-home .next-card:hover,
.page-home .next-card:focus-visible {
  background: rgba(45, 156, 255, .14);
  transform: translateY(-3px);
}

.page-home .next-card__k {
  font-size: .74rem;
  letter-spacing: .14em;
  color: rgba(242, 246, 244, .55);
}

.page-home .next-card h3 {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.32rem;
  color: var(--score-white);
}

.page-home .next-card p {
  margin: 0;
  font-size: .88rem;
  line-height: 1.74;
  color: rgba(242, 246, 244, .76);
}

.page-home .next-card__go {
  margin-top: auto;
  padding-top: 6px;
  font-family: var(--font-mono);
  font-size: .76rem;
  letter-spacing: .06em;
  color: var(--data-blue);
}

.page-home .next-card:nth-child(2) .next-card__go {
  color: var(--stoppage-orange);
}

.page-home .next-card:nth-child(3) .next-card__go {
  color: var(--replay-purple);
}

/* ============ 响应式 ============ */
@media (min-width: 560px) {
  .page-home .hero-lines {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 760px) {
  .page-home .ticker-inner {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

@media (min-width: 900px) {
  .page-home .hero {
    padding-top: 34px;
  }

  .page-home .hero__split {
    grid-template-columns: minmax(0, 62fr) minmax(0, 38fr);
    gap: 44px;
    align-items: center;
    padding: 46px 0 12px;
  }

  .page-home .hero__split::before {
    content: "";
    position: absolute;
    top: -46px;
    bottom: 44px;
    left: -6vw;
    width: 68%;
    z-index: 0;
    background: linear-gradient(135deg, rgba(6, 18, 14, .74), rgba(18, 58, 46, .26));
    clip-path: polygon(0 0, 100% 0, calc(100% - 96px) 100%, 0 100%);
  }

  .page-home .lines-grid {
    grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
    gap: 26px;
    align-items: start;
    margin-top: 44px;
  }

  .page-home .line-block--home {
    margin-top: 66px;
  }

  .page-home .archive-grid {
    grid-template-columns: minmax(0, 4fr) minmax(0, 8fr);
    gap: 52px;
    align-items: start;
  }

  .page-home .detail-grid {
    grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
    gap: 0;
    align-items: start;
  }

  .page-home .detail-block--stoppage {
    margin-top: 54px;
    margin-left: -1px;
  }

  .page-home .download-grid {
    grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
    gap: 48px;
    align-items: center;
  }

  .page-home .next-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 38px;
  }

  .page-home .next-card:nth-child(2) {
    margin-top: 28px;
  }
}

@media (min-width: 1100px) {
  .page-home .home-lines,
  .page-home .home-detail,
  .page-home .home-source {
    padding-top: 84px;
    padding-bottom: 78px;
  }

  .page-home .home-archive,
  .page-home .home-download {
    padding-top: 86px;
    padding-bottom: 80px;
  }

  .page-home .home-next {
    padding-top: 84px;
    padding-bottom: 100px;
  }

  .page-home .source-check {
    padding: 32px 34px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-home .hero-line,
  .page-home .filter-btn,
  .page-home .next-card {
    transition: opacity .16s linear;
  }

  .page-home .hero-line:hover,
  .page-home .hero-line:focus-visible,
  .page-home .next-card:hover,
  .page-home .next-card:focus-visible {
    transform: none;
  }
}
<<<END>>>
