.page-home {
  --home-green-glow: rgba(26, 74, 58, 0.12);
  --home-ember-glow: rgba(232, 82, 46, 0.18);
  --home-night-grad: linear-gradient(145deg, #0D1117 0%, #18202B 100%);
  --home-cream-grad: linear-gradient(135deg, #F5F0E8 0%, #FFF9EF 100%);
  background: var(--color-cream);
  color: var(--color-ink);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

.page-home .breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  padding: 16px 20px 0;
  font-size: var(--fs-caption);
  color: rgba(28, 27, 26, 0.6);
  max-width: var(--container-max);
  margin: 0 auto;
}

.page-home .breadcrumb a {
  color: var(--color-pitch);
  font-weight: 600;
}

.page-home .breadcrumb-separator {
  color: var(--color-line);
}

/* ===== Home Hero ===== */
.page-home .home-hero {
  position: relative;
}

.page-home .home-hero-side {
  position: relative;
  background: var(--home-night-grad);
  color: #F5F0E8;
  padding: 32px 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  overflow: hidden;
}

.page-home .home-hero-side::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(var(--color-brick), var(--color-ember), var(--color-gold));
}

.page-home .home-hero-side::after {
  content: "";
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--home-green-glow), transparent 70%);
}

.page-home .home-hero-side-top {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.page-home .home-hero-issue {
  font-family: var(--font-data);
  font-size: 13px;
  color: rgba(245, 240, 232, 0.8);
  margin: 0;
  letter-spacing: 0.04em;
}

.page-home .home-hero-issue-num {
  color: var(--color-gold);
  font-weight: 700;
  font-size: 18px;
}

.page-home .home-hero-side-main {
  position: relative;
  z-index: 1;
}

.page-home .home-hero-side-title {
  font-family: var(--font-headline);
  font-size: 24px;
  font-weight: 800;
  margin: 0 0 10px;
  color: #fff;
  letter-spacing: 0.02em;
}

.page-home .home-hero-side-text {
  font-size: 14px;
  color: rgba(245, 240, 232, 0.76);
  margin: 0;
  line-height: 1.7;
}

.page-home .home-duo-switch {
  display: inline-flex;
  gap: 8px;
  padding: 6px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-pill);
  backdrop-filter: blur(6px);
  width: fit-content;
  max-width: 100%;
  flex-wrap: wrap;
}

.page-home .home-duo-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 600;
  color: rgba(245, 240, 232, 0.84);
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.page-home .home-duo-btn.is-active {
  background: var(--color-ember);
  color: #fff;
  box-shadow: 0 8px 20px var(--home-ember-glow);
}

.page-home .home-duo-btn:not(.is-active):hover {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.page-home .home-duo-code {
  font-family: var(--font-data);
  font-size: 13px;
  font-weight: 700;
}

.page-home .home-hero-side-foot {
  position: relative;
  z-index: 1;
  margin-top: auto;
  font-size: 13px;
  color: rgba(245, 240, 232, 0.6);
}

.page-home .home-hero-side-foot p {
  margin: 10px 0 0;
}

.page-home .home-hero-slash {
  display: block;
  width: 56px;
  height: 6px;
  background: linear-gradient(90deg, var(--color-brick), var(--color-ember), var(--color-gold));
  transform: skewX(-24deg);
  border-radius: 2px;
}

.page-home .home-hero-main {
  position: relative;
  padding: 24px 20px 48px;
  background: var(--home-cream-grad);
  overflow: hidden;
}

.page-home .home-hero-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  max-height: 260px;
}

.page-home .home-hero-img img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: center 40%;
  border-radius: 0;
}

.page-home .home-hero-content {
  position: relative;
  z-index: 1;
  padding-top: 28px;
}

.page-home .home-hero-title-accent {
  color: var(--color-pitch);
}

.page-home .home-hero-lead {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(28, 27, 26, 0.82);
  margin: 20px 0 28px;
  max-width: 640px;
}

.page-home .home-hero-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  max-width: 620px;
}

.page-home .home-stat {
  background: var(--color-paper);
  border-radius: var(--radius-md);
  padding: 18px 16px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-line);
}

.page-home .home-stat .data-number {
  font-family: var(--font-data);
  font-size: 30px;
  font-weight: 700;
  color: var(--color-pitch);
  line-height: 1.1;
  display: block;
}

.page-home .home-stat .data-label {
  font-size: 13px;
  color: rgba(28, 27, 26, 0.6);
  display: block;
  margin-top: 6px;
}

/* ===== 通用 Section 骨架 ===== */
.page-home .home-section {
  padding: 64px 20px;
  position: relative;
}

.page-home .home-section-head {
  max-width: 640px;
  margin-bottom: 40px;
}

.page-home .home-section-index {
  display: inline-block;
  font-family: var(--font-data);
  font-size: 56px;
  font-weight: 700;
  line-height: 0.9;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--color-brick);
  margin-bottom: 18px;
}

.page-home .home-section-head h2 {
  font-family: var(--font-headline);
  font-size: clamp(24px, 3.4vw, 34px);
  font-weight: 800;
  line-height: 1.25;
  color: var(--color-ink);
  margin: 12px 0 10px;
  letter-spacing: 0.01em;
}

.page-home .home-section-sub {
  font-size: 15px;
  color: rgba(28, 27, 26, 0.68);
  margin: 0;
  line-height: 1.7;
}

.page-home .home-section-head::before {
  content: "";
  display: block;
  width: 52px;
  height: 8px;
  background: linear-gradient(90deg, var(--color-brick), var(--color-ember));
  transform: skewX(-24deg);
  border-radius: 2px;
  margin-bottom: 20px;
}

/* ===== 双主页对照 ===== */
.page-home .home-duo {
  background: var(--color-cream);
}

.page-home .home-duo-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.page-home .home-lang-card {
  background: var(--color-paper);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-line);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-home .home-lang-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.page-home .home-lang-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.page-home .home-lang-code {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-pitch);
  color: #fff;
  font-family: var(--font-headline);
  font-size: 18px;
  font-weight: 800;
  flex-shrink: 0;
}

.page-home .home-lang-card-en .home-lang-code {
  background: var(--color-electric);
}

.page-home .home-lang-head h3 {
  font-family: var(--font-headline);
  font-size: 20px;
  font-weight: 800;
  margin: 0;
}

.page-home .home-lang-desc {
  font-size: 14px;
  color: rgba(28, 27, 26, 0.72);
  line-height: 1.7;
  margin: 0 0 16px;
}

.page-home .home-lang-list {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: grid;
  gap: 10px;
}

.page-home .home-lang-list li {
  position: relative;
  padding-left: 22px;
  font-size: 14px;
  color: rgba(28, 27, 26, 0.78);
  line-height: 1.6;
}

.page-home .home-lang-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 10px;
  height: 10px;
  background: var(--color-gold);
  border-radius: 2px;
  transform: skewX(-14deg);
}

.page-home .home-duo-middle {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 0;
  color: var(--color-emerald, var(--color-pitch));
  text-align: center;
}

.page-home .home-duo-arrow {
  font-family: var(--font-data);
  font-size: 36px;
  color: var(--color-ember);
  line-height: 1;
  transform: rotate(90deg);
}

.page-home .home-duo-note {
  font-size: 13px;
  color: rgba(28, 27, 26, 0.58);
  line-height: 1.5;
  white-space: nowrap;
}

/* ===== iOS 适配区 ===== */
.page-home .home-ios {
  background: linear-gradient(180deg, var(--color-cream) 0%, rgba(26, 74, 58, 0.08) 100%);
}

.page-home .home-ios-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: center;
  max-width: var(--container-max);
  margin: 0 auto;
}

.page-home .home-ios-copy {
  order: 2;
}

.page-home .home-ios-lead {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(28, 27, 26, 0.8);
  margin: 0 0 20px;
}

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

.page-home .home-ios-list li {
  position: relative;
  padding-left: 26px;
  font-size: 15px;
  color: rgba(28, 27, 26, 0.78);
  line-height: 1.65;
}

.page-home .home-ios-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--color-pitch);
  box-shadow: 0 0 0 4px var(--home-green-glow);
}

.page-home .home-ios-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 28px;
  max-width: 360px;
}

.page-home .home-ios-metric {
  background: var(--color-paper);
  border-radius: var(--radius-md);
  padding: 18px 16px;
  border: 1px solid var(--color-line);
}

.page-home .home-ios-metric .data-number {
  font-size: 30px;
  font-weight: 700;
  color: var(--color-electric);
  display: block;
  line-height: 1.1;
}

.page-home .home-ios-metric .data-label {
  font-size: 13px;
  color: rgba(28, 27, 26, 0.6);
  display: block;
  margin-top: 6px;
}

.page-home .home-ios-device {
  order: 1;
  position: relative;
  max-width: 280px;
  margin: 0 auto;
  border-radius: 32px;
  padding: 12px;
  background: linear-gradient(135deg, #1C1B1A 0%, #3A3A3A 100%);
  box-shadow: var(--shadow-lg);
}

.page-home .home-ios-device img {
  width: 100%;
  height: auto;
  border-radius: 24px;
  object-fit: cover;
}

.page-home .home-ios-device-bar {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 6px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 999px;
  z-index: 2;
}

.page-home .home-ios-flag {
  position: absolute;
  top: 20px;
  right: -14px;
  background: var(--color-ember);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 999px;
  box-shadow: 0 6px 18px var(--home-ember-glow);
  z-index: 3;
  transform: rotate(4deg);
}

/* ===== 实时比分与射手榜 ===== */
.page-home .home-live {
  background: var(--color-paper);
  border-top: 6px solid var(--color-line);
  border-bottom: 6px solid var(--color-line);
}

.page-home .home-live-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  max-width: var(--container-max);
  margin: 0 auto;
}

.page-home .home-live-card {
  background: var(--color-cream);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-line);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-home .home-live-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.page-home .home-live-card-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.page-home .home-live-card-title h3 {
  font-family: var(--font-headline);
  font-size: 20px;
  font-weight: 800;
  margin: 0;
}

.page-home .home-live-card-text {
  font-size: 15px;
  color: rgba(28, 27, 26, 0.76);
  line-height: 1.75;
  margin: 0 0 20px;
}

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

.page-home .home-live-leagues span {
  background: rgba(26, 74, 58, 0.1);
  color: var(--color-pitch);
  font-size: 13px;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 999px;
}

.page-home .home-live-wave-wrap {
  margin-top: 22px;
  overflow: hidden;
  border-radius: var(--radius-sm);
}

.page-home .home-live-wave {
  width: 100%;
  height: 60px;
  display: block;
}

.page-home .home-live-rank {
  margin: 0 0 16px;
  display: grid;
  gap: 10px;
}

.page-home .home-live-rank-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(217, 162, 27, 0.1);
  border-left: 4px solid var(--color-gold);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
}

.page-home .home-live-rank-row dt {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-ink);
}

.page-home .home-live-rank-row dd {
  margin: 0;
  font-family: var(--font-data);
  font-size: 20px;
  font-weight: 700;
  color: var(--color-pitch);
}

.page-home .home-live-note {
  font-size: 12px;
  color: rgba(28, 27, 26, 0.5);
  margin: 0;
}

.page-home .home-live-figure {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.page-home .home-live-figure img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* ===== 周末两场连看 ===== */
.page-home .home-weekend {
  background: linear-gradient(135deg, #F5F0E8 0%, rgba(26, 74, 58, 0.12) 100%);
}

.page-home .home-weekend-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  max-width: var(--container-max);
  margin: 0 auto;
}

.page-home .home-weekend-visual {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.page-home .home-weekend-screen {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.page-home .home-weekend-screen::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: 60px 60px;
  background-image: linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
}

.page-home .home-weekend-screen-a {
  background: linear-gradient(145deg, #1A4A3A 0%, #2C6B4F 100%);
  transform: rotate(-1.2deg);
  z-index: 2;
}

.page-home .home-weekend-screen-b {
  background: linear-gradient(145deg, #0D1117 0%, #1C2733 100%);
  transform: rotate(1.2deg);
  z-index: 1;
}

.page-home .home-weekend-round {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  position: relative;
  z-index: 1;
  font-family: var(--font-data);
}

.page-home .home-weekend-line {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-14deg);
  width: 46px;
  height: 8px;
  background: var(--color-gold);
  border-radius: 999px;
  z-index: 3;
  box-shadow: 0 0 0 4px rgba(217, 162, 27, 0.25);
}

.page-home .home-weekend-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.page-home .home-weekend-lead {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(28, 27, 26, 0.82);
  margin: 0 0 20px;
}

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

.page-home .home-weekend-list li {
  position: relative;
  padding-left: 26px;
  font-size: 15px;
  color: rgba(28, 27, 26, 0.78);
  line-height: 1.6;
}

.page-home .home-weekend-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 16px;
  height: 8px;
  background: var(--color-ember);
  transform: skewX(-18deg);
  border-radius: 2px;
}

/* ===== 赛事记录 ===== */
.page-home .home-records {
  background: var(--color-cream);
}

.page-home .home-records-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  max-width: var(--container-max);
  margin: 0 auto;
}

.page-home .home-records-cover {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  max-width: 420px;
  width: 100%;
  justify-self: center;
}

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

.page-home .home-records-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.page-home .home-records-num-block {
  background: var(--color-pitch);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  margin-bottom: 24px;
  width: 100%;
  max-width: 420px;
  position: relative;
  overflow: hidden;
}

.page-home .home-records-num-block::after {
  content: "";
  position: absolute;
  right: -20px;
  bottom: -20px;
  width: 90px;
  height: 90px;
  background: radial-gradient(circle, rgba(217, 162, 27, 0.35), transparent 70%);
}

.page-home .home-records-num-block .data-number {
  font-size: 56px;
  font-weight: 700;
  color: var(--color-gold);
  display: block;
  line-height: 1;
  font-family: var(--font-data);
}

.page-home .home-records-num-block .data-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.72);
  display: block;
  margin-top: 8px;
}

.page-home .home-records-text {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(28, 27, 26, 0.78);
  margin: 0 0 20px;
  max-width: 520px;
}

.page-home .home-records-list {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: grid;
  gap: 10px;
}

.page-home .home-records-list li {
  position: relative;
  padding-left: 24px;
  font-size: 15px;
  color: rgba(28, 27, 26, 0.76);
  line-height: 1.6;
}

.page-home .home-records-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 12px;
  height: 12px;
  background: var(--color-brick);
  transform: rotate(45deg);
  border-radius: 2px;
}

/* ===== 品牌脉络与帮助入口 ===== */
.page-home .home-direct {
  background: linear-gradient(180deg, var(--color-cream) 0%, var(--color-paper) 100%);
  border-top: 6px solid rgba(142, 59, 47, 0.25);
}

.page-home .home-direct-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  max-width: var(--container-max);
  margin: 0 auto;
}

.page-home .home-direct-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  background: var(--color-paper);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-line);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
  overflow: hidden;
}

.page-home .home-direct-card::after {
  content: "";
  position: absolute;
  right: -24px;
  top: -24px;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--home-green-glow);
  transition: transform 0.3s ease;
}

.page-home .home-direct-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-pitch);
}

.page-home .home-direct-card:hover::after {
  transform: scale(1.4);
}

.page-home .home-direct-card-no {
  font-family: var(--font-data);
  font-size: 28px;
  font-weight: 700;
  color: var(--color-brick);
  opacity: 0.45;
  line-height: 1;
  margin-bottom: 10px;
}

.page-home .home-direct-card h3 {
  font-family: var(--font-headline);
  font-size: 20px;
  font-weight: 800;
  margin: 0;
  color: var(--color-ink);
}

.page-home .home-direct-card p {
  font-size: 14px;
  color: rgba(28, 27, 26, 0.66);
  margin: 0 0 12px;
  line-height: 1.6;
}

.page-home .home-direct-more {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-pitch);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
}

.page-home .home-direct-more::after {
  content: "→";
  transition: transform 0.25s ease;
}

.page-home .home-direct-card:hover .home-direct-more::after {
  transform: translateX(5px);
}

/* ===== 桌面端 ===== */
@media (min-width: 720px) {
  .page-home .breadcrumb {
    padding: 20px 32px 0;
  }

  .page-home .home-hero-side {
    padding: 40px 36px;
  }

  .page-home .home-hero-main {
    padding: 32px 32px 60px;
  }

  .page-home .home-hero-img {
    max-height: 320px;
  }

  .page-home .home-hero-img img {
    height: 320px;
  }

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

  .page-home .home-duo-layout {
    grid-template-columns: 1fr 130px 1fr;
    gap: 20px;
  }

  .page-home .home-duo-middle {
    padding: 0;
  }

  .page-home .home-duo-arrow {
    transform: rotate(0deg);
  }

  .page-home .home-duo-note {
    white-space: normal;
  }

  .page-home .home-ios-layout {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 48px;
  }

  .page-home .home-ios-copy {
    order: 1;
  }

  .page-home .home-ios-device {
    order: 2;
    max-width: 300px;
  }

  .page-home .home-live-layout {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .page-home .home-live-figure {
    grid-column: 1 / -1;
    max-height: 380px;
  }

  .page-home .home-live-figure img {
    height: 380px;
    object-position: center 30%;
  }

  .page-home .home-weekend-layout {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
  }

  .page-home .home-weekend-screen {
    min-height: 220px;
  }

  .page-home .home-records-layout {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 48px;
    align-items: center;
  }

  .page-home .home-records-cover {
    justify-self: start;
  }

  .page-home .home-direct-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (min-width: 1024px) {
  .page-home .home-hero {
    display: grid;
    grid-template-columns: 340px minmax(0, 1fr);
    min-height: 720px;
  }

  .page-home .home-hero-side {
    padding: 48px 40px;
    gap: 32px;
    min-height: 100%;
  }

  .page-home .home-hero-side-title {
    font-size: 30px;
  }

  .page-home .home-hero-side-text {
    font-size: 15px;
  }

  .page-home .home-hero-main {
    padding: 0;
    display: flex;
    align-items: center;
  }

  .page-home .home-hero-img {
    position: absolute;
    inset: 0;
    border-radius: 0;
    max-height: none;
    overflow: hidden;
  }

  .page-home .home-hero-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg, rgba(245, 240, 232, 0.97) 0%, rgba(245, 240, 232, 0.85) 42%, rgba(245, 240, 232, 0.45) 100%);
  }

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

  .page-home .home-hero-content {
    position: relative;
    z-index: 1;
    padding: 72px 6% 64px;
    max-width: 820px;
  }

  .page-home .home-hero-lead {
    font-size: 17px;
    max-width: 600px;
  }

  .page-home .home-hero-stats {
    gap: 16px;
  }

  .page-home .home-section {
    padding: 100px 4%;
  }

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

  .page-home .home-section-index {
    font-size: 72px;
  }

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

  .page-home .home-direct-card:nth-child(4),
  .page-home .home-direct-card:nth-child(5) {
    grid-column: span 1;
    max-width: none;
  }

  .page-home .home-direct-grid {
    justify-content: center;
  }

  .page-home .home-direct-card:nth-child(4) {
    grid-column: 1 / 2;
  }

  .page-home .home-direct-card:nth-child(5) {
    grid-column: 2 / 3;
  }
}

@media (min-width: 1400px) {
  .page-home .home-section {
    padding-left: calc((100vw - var(--container-max)) / 2 + 48px);
    padding-right: calc((100vw - var(--container-max)) / 2 + 48px);
  }

  .page-home .breadcrumb {
    padding-left: calc((100vw - var(--container-max)) / 2);
    padding-right: calc((100vw - var(--container-max)) / 2);
  }
}

.page-home {
  --color-emerald: var(--color-ember);
}
