.schedule-page {
  background: linear-gradient(180deg, #ffffff 0%, #f6f9f7 100%);
}

.schedule-hero {
  padding: 90px 20px 30px;
  text-align: center;
}

.schedule-hero__content {
  max-width: 850px;
  margin: 0 auto;
}

.schedule-hero__eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dark-green);
  background: rgba(1, 68, 33, 0.08);
  border: 1px solid rgba(1, 68, 33, 0.12);
}

.schedule-hero h1 {
  font-size: clamp(42px, 7vw, 64px);
  line-height: 1.02;
  margin-bottom: 14px;
  color: var(--dark-green);
}

.schedule-hero p {
  max-width: 700px;
  margin: 0 auto;
  font-size: 19px;
  line-height: 1.75;
  color: #33413a;
}

.schedule-wrapper {
  max-width: 1180px;
  margin: 10px auto 0;
  padding: 0 20px 90px;
  position: relative;
  z-index: 2;
}

.live-highlight {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 28px 30px;
  margin-bottom: 26px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(1, 68, 33, 0.08);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(10px);
}

.live-highlight {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.live-highlight:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.live-highlight__icon {
  width: 72px;
  height: 72px;
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #fff;
  background: linear-gradient(180deg, rgba(1, 68, 33, 0.96), rgba(1, 68, 33, 0.75));
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.14);
}

.live-highlight__tag {
  display: inline-block;
  margin-bottom: 10px;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dark-green);
  background: rgba(1, 68, 33, 0.08);
}

.live-highlight__text h2 {
  margin-bottom: 8px;
  font-size: 30px;
  color: var(--dark-green);
}

.live-highlight__text p {
  font-size: 17px;
  line-height: 1.7;
  color: #2f3a34;
}

.schedule-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.schedule-card {
  padding: 28px;
  border-radius: 28px;
  background: #ffffff;
  border: 1px solid rgba(1, 68, 33, 0.08);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.schedule-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.schedule-card--featured {
  background:
    linear-gradient(180deg, rgba(1, 68, 33, 0.96), rgba(4, 28, 16, 0.96));
  color: #fff;
}

.schedule-card--featured h3,
.schedule-card--featured p,
.schedule-card--featured .schedule-league,
.schedule-card--featured .schedule-badge {
  color: #fff;
}

.schedule-card--muted {
  background:
    linear-gradient(180deg, #f6f7f6, #eef3f0);
}

.schedule-card__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.schedule-badge {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dark-green);
  background: rgba(1, 68, 33, 0.08);
}

.schedule-league {
  font-size: 13px;
  font-weight: 700;
  color: #58665e;
}

.schedule-card h3 {
  margin-bottom: 12px;
  font-size: 30px;
  line-height: 1.1;
  color: var(--dark-green);
}

.schedule-card p {
  font-size: 17px;
  line-height: 1.8;
  color: #202020;
}

.schedule-note {
  margin-top: 16px;
  font-size: 14px;
  font-weight: 700;
  color: #63746a;
}

.schedule-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.schedule-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
  padding: 14px 22px;
  border-radius: 16px;
  text-decoration: none;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(180deg, rgba(1, 68, 33, 0.96), rgba(1, 68, 33, 0.78));
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.schedule-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.16);
  background: linear-gradient(180deg, rgba(2, 98, 51, 0.96), rgba(1, 68, 33, 0.82));
}

.schedule-btn--secondary {
  background: linear-gradient(180deg, rgba(20, 20, 20, 0.92), rgba(45, 45, 45, 0.92));
}

.schedule-btn--accent {
  margin-top: 0;
}

.site-footer--simple {
  padding-top: 30px;
}

.site-footer--simple .site-footer__top {
  margin-top: 0;
}

@media (max-width: 980px) {
  .live-highlight {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .live-highlight__icon {
    margin: 0 auto;
  }

  .schedule-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .schedule-hero {
    padding: 80px 16px 56px;
  }

  .schedule-hero p {
    font-size: 17px;
  }

  .schedule-wrapper {
    margin-top: -24px;
    padding: 0 16px 70px;
  }

  .live-highlight,
  .schedule-card {
    padding: 22px 20px;
    border-radius: 22px;
  }

  .live-highlight__text h2,
  .schedule-card h3 {
    font-size: 24px;
  }

  .schedule-card p,
  .live-highlight__text p {
    font-size: 16px;
    line-height: 1.7;
  }

  .schedule-actions {
    flex-direction: column;
  }

  .schedule-btn,
  .schedule-btn--secondary {
    width: 100%;
  }
}