.page-home {
  --ph-blue: #1264FF;
  --ph-orange: #FF6A00;
  --ph-yellow: #FFE818;
  --ph-dark: #171717;
  --ph-deep: #0E0F12;
  --ph-cream: #F5EFE6;
  --ph-green: #00B96D;
  overflow-x: hidden;
  background: var(--ph-cream);
  color: #2E2E2E;
  font-family: var(--font-body);
}

.page-home .section {
  padding: clamp(56px, 8vw, 96px) 0;
}

.page-home .section-tight {
  padding: clamp(48px, 6vw, 72px) 0;
}

.page-home .container {
  position: relative;
  z-index: 1;
  width: min(var(--content-max), 100% - 40px);
  margin-inline: auto;
}

.page-home .container-narrow {
  position: relative;
  z-index: 1;
  width: min(880px, 100% - 40px);
  margin-inline: auto;
}

.page-home .eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ph-blue);
}

.page-home .section-title {
  font-family: var(--font-heading);
  font-size: clamp(32px, 4.6vw, 58px);
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #111111;
  margin: 0 0 18px;
}

.page-home .lead {
  font-size: 17px;
  line-height: 1.85;
  color: #2E2E2E;
  max-width: 640px;
  margin-bottom: 32px;
}

/* ===== 首屏封面索引 ===== */
.page-home .hero-cover {
  position: relative;
  min-height: max(720px, 100vh);
  background: var(--ph-deep);
  color: var(--text-on-dark);
  display: flex;
  align-items: stretch;
  overflow: hidden;
  isolation: isolate;
}

.page-home .hero-bg {
  position: absolute;
  inset: 0;
  z-index: -3;
}

.page-home .hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.42;
}

.page-home .hero-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(104deg, rgba(14, 15, 18, 0.98) 0%, rgba(14, 15, 18, 0.82) 46%, rgba(14, 15, 18, 0.28) 100%),
    linear-gradient(to top, rgba(14, 15, 18, 0.92) 0%, rgba(14, 15, 18, 0.1) 48%, rgba(14, 15, 18, 0.55) 100%);
}

.page-home .hero-lines {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

.page-home .hero-lines span {
  position: absolute;
  display: block;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 106, 0, 0.75), var(--ph-yellow), transparent);
  transform: rotate(-12deg);
  transform-origin: left center;
  right: -10%;
  opacity: 0.5;
}

.page-home .hero-lines span:nth-child(1) { top: 18%; width: 70%; animation: hero-line-move 7s ease-in-out infinite alternate; }
.page-home .hero-lines span:nth-child(2) { top: 28%; width: 46%; animation: hero-line-move 6s ease-in-out 0.8s infinite alternate; }
.page-home .hero-lines span:nth-child(3) { top: 74%; width: 58%; animation: hero-line-move 8s ease-in-out 0.2s infinite alternate; }
.page-home .hero-lines span:nth-child(4) { top: 86%; width: 34%; animation: hero-line-move 5s ease-in-out 1.2s infinite alternate; }

@keyframes hero-line-move {
  0% { transform: rotate(-12deg) translateX(-6%); }
  100% { transform: rotate(-12deg) translateX(14%); }
}

.page-home .hero-shell {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 28px;
  padding-block: 72px 64px;
  width: min(var(--content-max), 100% - 40px);
  margin-inline: auto;
}

.page-home .hero-index-card {
  order: 2;
  background: rgba(245, 239, 230, 0.95);
  color: #111111;
  border-radius: 28px;
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  position: relative;
  overflow: hidden;
}

.page-home .hero-index-card::after {
  content: "";
  position: absolute;
  right: -36px;
  bottom: -36px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(18, 100, 255, 0.12);
}

.page-home .hero-index-title {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ph-orange);
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(17, 17, 17, 0.12);
}

.page-home .hero-index-link {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: baseline;
  gap: 12px;
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 600;
  color: #111111;
  text-decoration: none;
  padding: 6px 2px;
  border-bottom: 1px solid transparent;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.page-home .hero-index-link span {
  font-size: 12px;
  color: var(--ph-blue);
  letter-spacing: 0.06em;
  min-width: 22px;
}

.page-home .hero-index-link:hover {
  color: var(--ph-orange);
  border-color: rgba(255, 106, 0, 0.4);
}

.page-home .hero-main {
  order: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.page-home .hero-kicker {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--ph-yellow);
  text-transform: uppercase;
  margin-bottom: 16px;
  border-left: 3px solid var(--ph-orange);
  padding-left: 12px;
}

.page-home .hero-page-tag {
  font-size: 13px;
  letter-spacing: 0.08em;
  color: rgba(245, 245, 245, 0.58);
  margin-bottom: 14px;
  font-family: var(--font-heading);
}

.page-home .hero-title {
  font-family: var(--font-heading);
  font-size: clamp(52px, 8.6vw, 110px);
  font-weight: 700;
  line-height: 0.96;
  letter-spacing: -0.01em;
  margin: 0 0 24px;
  color: #ffffff;
  text-transform: uppercase;
  max-width: 6.2em;
}

.page-home .hero-lead {
  max-width: 520px;
  font-size: 16px;
  line-height: 1.9;
  color: rgba(245, 245, 245, 0.82);
  margin-bottom: 30px;
}

.page-home .hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 34px;
}

.page-home .hero-cta .btn {
  padding: 14px 26px;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.page-home .hero-cta .btn-accent {
  background: var(--ph-orange);
  color: #ffffff;
  border: 1px solid transparent;
}

.page-home .hero-cta .btn-ghost {
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.42);
}

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

.page-home .hero-stat {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 14px 18px;
  display: flex;
  flex-direction: column;
}

.page-home .hero-stat-num {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
}

.page-home .hero-stat-num small {
  font-size: 0.5em;
  color: var(--ph-yellow);
  margin-left: 3px;
  font-weight: 600;
}

.page-home .hero-stat-label {
  margin-top: 6px;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: rgba(245, 245, 245, 0.66);
  text-transform: uppercase;
}

/* ===== 最新赛事订阅入口动态 ===== */
.page-home .home-entry {
  background: var(--ph-cream);
  position: relative;
}

.page-home .entry-head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 40px;
}

.page-home .entry-head .eyebrow {
  color: var(--ph-blue);
}

.page-home .entry-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: center;
}

.page-home .entry-copy {
  position: relative;
}

.page-home .entry-list {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.page-home .entry-list li {
  display: flex;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(17, 17, 17, 0.1);
}

.page-home .entry-list li:first-child {
  padding-top: 0;
}

.page-home .entry-num {
  flex: 0 0 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(18, 100, 255, 0.1);
  color: var(--ph-blue);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
}

.page-home .entry-item-body strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 18px;
  color: #111111;
  margin-bottom: 4px;
  letter-spacing: 0.02em;
}

.page-home .entry-item-body p {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: #2E2E2E;
}

.page-home .btn-primary {
  background: var(--ph-blue);
  color: #ffffff;
  border: 1px solid transparent;
  padding: 13px 28px;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-decoration: none;
  display: inline-block;
}

.page-home .entry-media {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
}

.page-home .entry-media img,
.page-home .possession-img img,
.page-home .schedule-media img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 26px;
}

.page-home .media-tag {
  display: inline-block;
  margin-top: 16px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 106, 0, 0.12);
  color: var(--ph-orange);
  font-size: 13px;
  font-weight: 600;
}

/* ===== 回归入口后控球率对比（深色章节） ===== */
.page-home .home-possession {
  background: var(--ph-dark);
  color: rgba(245, 245, 245, 0.82);
}

.page-home .home-possession .section-title {
  color: #ffffff;
}

.page-home .home-possession .lead {
  color: rgba(245, 245, 245, 0.72);
}

.page-home .home-possession .eyebrow {
  color: var(--ph-orange);
}

.page-home .possession-head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 40px;
}

.page-home .possession-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px 48px;
  align-items: center;
}

.page-home .possession-visual {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.page-home .possession-ring {
  position: relative;
  width: min(320px, 100%);
  margin-inline: auto;
  aspect-ratio: 1;
}

.page-home .possession-ring svg {
  width: 100%;
  height: 100%;
  display: block;
  transform: rotate(-90deg);
}

.page-home .possession-ring .ring-mask {
  fill: none;
  stroke: rgba(255, 255, 255, 0.1);
  stroke-width: 18;
}

.page-home .possession-ring .ring-a {
  fill: none;
  stroke: var(--ph-blue);
  stroke-width: 18;
  stroke-linecap: round;
  filter: drop-shadow(0 0 10px rgba(18, 100, 255, 0.45));
}

.page-home .possession-ring .ring-b {
  fill: none;
  stroke: var(--ph-orange);
  stroke-width: 18;
  stroke-linecap: round;
  filter: drop-shadow(0 0 10px rgba(255, 106, 0, 0.4));
}

.page-home .ring-readout {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-align: center;
}

.page-home .ring-label {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
}

.page-home .ring-label--a {
  color: #7fa8ff;
}

.page-home .ring-label--b {
  color: #ffa265;
}

.page-home .ring-vs {
  font-size: 12px;
  letter-spacing: 0.16em;
  color: rgba(245, 245, 245, 0.5);
}

.page-home .possession-note {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 20px;
  font-size: 13px;
  color: rgba(245, 245, 245, 0.72);
}

.page-home .possession-note .dot-blue,
.page-home .possession-note .dot-orange {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-right: 5px;
}

.page-home .possession-note .dot-blue {
  background: var(--ph-blue);
}

.page-home .possession-note .dot-orange {
  background: var(--ph-orange);
}

.page-home .possession-desc {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.page-home .possession-desc h3 {
  font-family: var(--font-heading);
  font-size: clamp(24px, 3vw, 34px);
  color: #ffffff;
  margin: 0 0 12px;
}

.page-home .possession-desc > p {
  font-size: 15px;
  line-height: 1.8;
  margin: 0 0 22px;
}

.page-home .possession-points {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.page-home .possession-points li {
  position: relative;
  padding-left: 22px;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(245, 245, 245, 0.9);
}

.page-home .possession-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 10px;
  height: 10px;
  border-radius: 2px;
  background: var(--ph-orange);
}

.page-home .btn-dark {
  background: #ffffff;
  color: #171717;
  border: 1px solid transparent;
  padding: 13px 26px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.04em;
  text-decoration: none;
}

.page-home .possession-img {
  width: 100%;
  margin-top: 24px;
  border-radius: 26px;
  overflow: hidden;
}

/* ===== 轮次安排伴随控球率看板 ===== */
.page-home .home-schedule {
  background: var(--ph-cream);
  position: relative;
  overflow: hidden;
}

.page-home .schedule-head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 40px;
}

.page-home .schedule-head .eyebrow {
  color: var(--ph-green);
}

.page-home .schedule-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: center;
}

.page-home .schedule-media {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
}

.page-home .schedule-info h3 {
  font-family: var(--font-heading);
  font-size: clamp(24px, 3vw, 32px);
  color: #111111;
  margin: 0 0 18px;
}

.page-home .schedule-list {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.page-home .schedule-list li {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 18px;
  background: rgba(18, 100, 255, 0.06);
  border-left: 3px solid var(--ph-blue);
  border-radius: 0 16px 16px 0;
}

.page-home .schedule-list li span {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  color: #111111;
  letter-spacing: 0.03em;
}

.page-home .schedule-list li {
  font-size: 14px;
  line-height: 1.6;
  color: #2E2E2E;
}

.page-home .schedule-summary {
  font-size: 15px;
  line-height: 1.85;
  color: #2E2E2E;
  margin-bottom: 24px;
  max-width: 520px;
}

.page-home .schedule-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.page-home .schedule-actions .btn-ghost {
  background: transparent;
  color: #111111;
  border: 1px solid rgba(17, 17, 17, 0.4);
  padding: 12px 24px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
}

/* ===== 会员权益引导 ===== */
.page-home .home-membership {
  background: var(--ph-blue);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.page-home .home-membership::before {
  content: "";
  position: absolute;
  right: -80px;
  top: -80px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}

.page-home .home-membership::after {
  content: "MEMBER";
  position: absolute;
  left: -20px;
  bottom: -30px;
  font-family: var(--font-heading);
  font-size: clamp(80px, 16vw, 180px);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.07);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: 0.02em;
}

.page-home .home-membership .section-title {
  color: #ffffff;
}

.page-home .home-membership .lead {
  color: rgba(255, 255, 255, 0.9);
}

.page-home .home-membership .eyebrow {
  color: var(--ph-yellow);
}

.page-home .membership-panel {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  position: relative;
  z-index: 1;
}

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

.page-home .membership-list {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.page-home .membership-list li {
  position: relative;
  padding-left: 30px;
  font-size: 15px;
  line-height: 1.7;
}

.page-home .membership-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--ph-yellow);
  font-weight: 700;
  font-size: 18px;
}

.page-home .membership-panel .btn-accent {
  background: var(--ph-orange);
  color: #ffffff;
  padding: 15px 28px;
  border: 1px solid transparent;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.05em;
  text-decoration: none;
}

.page-home .membership-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.page-home .member-stat {
  background: rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  padding: 20px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.page-home .member-stat-num {
  font-family: var(--font-heading);
  font-size: clamp(24px, 4vw, 40px);
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
}

.page-home .member-stat-num small {
  font-size: 0.52em;
  color: var(--ph-yellow);
  margin-left: 2px;
}

.page-home .member-stat-label {
  margin-top: 8px;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.78);
  text-transform: uppercase;
}

/* ===== 快速索引 ===== */
.page-home .home-support {
  background: var(--ph-cream);
}

.page-home .support-head {
  margin-bottom: 32px;
}

.page-home .support-head .eyebrow {
  color: var(--ph-orange);
}

.page-home .support-links {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.page-home .support-link {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 20px;
  background: #ffffff;
  border-radius: 20px;
  color: #111111;
  text-decoration: none;
  transition: transform 0.3s ease, color 0.3s ease, background 0.3s ease;
}

.page-home .support-link:hover {
  background: var(--ph-dark);
  color: #ffffff;
  transform: translateY(-3px);
}

.page-home .support-num {
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(18, 100, 255, 0.1);
  color: var(--ph-blue);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
}

.page-home .support-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.page-home .support-copy strong {
  font-family: var(--font-heading);
  font-size: 17px;
  letter-spacing: 0.03em;
}

.page-home .support-copy {
  font-size: 14px;
  line-height: 1.55;
  color: #555555;
}

.page-home .support-link:hover .support-copy {
  color: rgba(255, 255, 255, 0.72);
}

.page-home .support-link:hover .support-num {
  background: rgba(255, 255, 255, 0.16);
  color: var(--ph-yellow);
}

/* ===== 动效：渐进显现（兼容缩小动效） ===== */
.page-home .hero-title,
.page-home .hero-kicker,
.page-home .hero-lead,
.page-home .hero-cta,
.page-home .hero-stats,
.page-home .hero-index-card {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: no-preference) {
  .page-home .hero-title,
  .page-home .hero-kicker,
  .page-home .hero-lead,
  .page-home .hero-cta,
  .page-home .hero-stats,
  .page-home .hero-index-card {
    animation-name: page-home-rise;
    animation-duration: 0.8s;
    animation-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
    animation-fill-mode: both;
  }

  .page-home .hero-kicker { animation-delay: 0.1s; }
  .page-home .hero-title { animation-delay: 0.2s; }
  .page-home .hero-lead { animation-delay: 0.32s; }
  .page-home .hero-cta { animation-delay: 0.44s; }
  .page-home .hero-stats { animation-delay: 0.56s; }
  .page-home .hero-index-card { animation-delay: 0.7s; }
}

@keyframes page-home-rise {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== 桌面端 ≥ 768px ===== */
@media (min-width: 768px) {
  .page-home .hero-shell {
    flex-direction: row-reverse;
    align-items: center;
    justify-content: space-between;
  }

  .page-home .hero-index-card {
    order: 1;
    width: 300px;
    flex-shrink: 0;
    padding: 30px 26px;
  }

  .page-home .hero-main {
    order: 2;
    flex: 1;
    max-width: 780px;
  }

  .page-home .hero-title {
    font-size: clamp(68px, 9vw, 116px);
  }

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

  .page-home .hero-stat {
    padding: 16px 14px;
  }

  .page-home .entry-grid {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
  }

  .page-home .entry-media {
    order: 1;
  }

  .page-home .possession-grid {
    grid-template-columns: 0.9fr 1.1fr;
  }

  .page-home .possession-visual {
    order: 0;
  }

  .page-home .schedule-grid {
    grid-template-columns: 1.1fr 0.9fr;
  }

  .page-home .schedule-media {
    order: 0;
  }

  .page-home .schedule-info {
    order: 1;
  }

  .page-home .membership-panel {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
  }

  .page-home .support-links {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ===== 桌面端 ≥ 1180px ===== */
@media (min-width: 1180px) {
  .page-home .hero-title {
    font-size: 120px;
  }

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

  .page-home .possession-grid {
    grid-template-columns: 1fr 1.1fr;
  }

  .page-home .possession-note {
    justify-content: flex-start;
  }

  .page-home .schedule-grid {
    grid-template-columns: 1fr 0.95fr;
    gap: 64px;
  }

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

  .page-home .support-link {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    min-height: 160px;
  }

  .page-home .support-num {
    width: 46px;
    height: 46px;
    flex-basis: 46px;
  }
}
