:root {
  --kw-bg: #f5f8fb;
  --kw-surface: rgba(255, 255, 255, 0.9);
  --kw-surface-alt: #eef3f7;
  --kw-border: rgba(137, 135, 159, 0.22);
  --kw-primary: #2c3e50;
  --kw-primary-soft: #5f7486;
  --kw-accent: #89879f;
  --kw-accent-dark: #6d7f90;
  --kw-shadow: 0 18px 40px rgba(44, 62, 80, 0.08);
}

* {
  box-sizing: border-box;
}

body.schedule-page {
  margin: 0;
  padding: 1.25rem;
  font-family: "Lato", sans-serif;
  background:
    radial-gradient(circle at top, rgba(137, 135, 159, 0.18), transparent 30%),
    linear-gradient(180deg, #f8fafc 0%, #edf3f7 100%);
  color: var(--kw-primary);
}

.schedule-shell {
  max-width: 1180px;
  margin: 0 auto;
}

.schedule-hero {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: end;
  margin-bottom: 1rem;
  padding: 1.4rem 1.5rem;
  border-radius: 28px;
  background: linear-gradient(145deg, #8a889f 0%, #6e8091 100%);
  color: #ffffff;
  box-shadow: var(--kw-shadow);
}

.schedule-eyebrow {
  margin: 0 0 0.3rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.schedule-hero h1 {
  margin: 0 0 0.35rem;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
}

.schedule-hero p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
}

.schedule-link {
  display: inline-flex;
  align-items: center;
  padding: 0.65rem 0.95rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
}

.schedule-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.schedule-panel-intro {
  margin-bottom: 1rem;
}

.schedule-panel-intro h2 {
  margin: 0 0 0.25rem;
  color: var(--kw-primary);
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.schedule-panel-intro p {
  margin: 0;
  color: var(--kw-primary-soft);
}

@media (max-width: 767.98px) {
  body.schedule-page {
    padding: 0.85rem;
  }

  .schedule-hero {
    flex-direction: column;
    align-items: start;
    padding: 1rem;
    border-radius: 22px;
  }
}
