/* SCHEDULE PAGE */

.schedule-notice {
  margin: 0 0 28px;
  padding: 22px 24px;
  background:
    linear-gradient(180deg, rgba(196, 154, 71, 0.13), rgba(1, 8, 10, 0.58));
  border: 1px solid rgba(201, 164, 88, 0.36);
}

.schedule-notice h2 {
  margin: 0 0 10px;
  font-family: "Oswald", sans-serif;
  font-size: 1.05rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--gold-soft);
}

.schedule-notice p {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.6;
  color: rgba(249, 230, 183, 0.92);
}

.schedule-day {
  margin-top: 26px;
  border: 1px solid rgba(201, 164, 88, 0.22);
  background: rgba(2, 10, 12, 0.42);
}

.schedule-day:first-of-type {
  margin-top: 0;
}

.schedule-day-header {
  padding: 18px 22px;
  background:
    linear-gradient(90deg, rgba(11, 45, 49, 0.96), rgba(6, 20, 24, 0.96));
  border-bottom: 1px solid rgba(201, 164, 88, 0.22);
}

.schedule-day-header p {
  margin: 0 0 6px;
  font-family: "Oswald", sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-soft);
}

.schedule-day-header h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 3.2vw, 3.1rem);
  line-height: 0.95;
  text-transform: uppercase;
  color: var(--cream);
}

.schedule-list {
  display: grid;
}

.schedule-row {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr) 190px;
  gap: 18px;
  padding: 18px 22px;
  border-top: 1px solid rgba(201, 164, 88, 0.14);
}

.schedule-row:first-child {
  border-top: 0;
}

.schedule-time {
  font-family: "Oswald", sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-soft);
}

.schedule-event h3 {
  margin: 0 0 6px;
  font-family: "Oswald", sans-serif;
  font-size: 1.02rem;
  letter-spacing: 0.055em;
  text-transform: uppercase;
  color: var(--cream);
}

.schedule-event p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.5;
  color: rgba(249, 230, 183, 0.88);
}

.schedule-location {
  font-size: 0.95rem;
  line-height: 1.45;
  color: rgba(249, 230, 183, 0.78);
  text-align: right;
}

.schedule-footnote {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(201, 164, 88, 0.18);
}

.schedule-footnote p {
  margin: 0 0 12px;
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(249, 230, 183, 0.9);
}

@media (max-width: 900px) {
  .schedule-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .schedule-location {
    text-align: left;
  }
}