.schedule-hero {
  background-image: url("/images/schedule_img1.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  min-height: 700px;
  color: #ffffff;
}

.schedule-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.schedule-hero-content {
  position: relative;
  z-index: 1;
  max-width: 1000px;
}

/* Text styling */
.schedule-hero h1 {
  color: #ffffff;
  text-align: center;
}

/* Text styling */
.schedule-hero h4 {
  text-align: center;
}

.schedule-hero-text {
  margin-top: 16px;
  font-size: 1.1rem;
  color: #e5e7eb;
  text-align: center;
}

/* Mobile spacing refinement */
@media (max-width: 767px) {
  .schedule-hero {
    padding: 72px 0;
  }
}

.schedule-hero-cards {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.schedule-card {
  background: #ffffff;
  color: var(--text);
  padding: 32px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.schedule-card h2 {
  margin-bottom: 8px;
}

.schedule-card h3 {
  margin-bottom: 12px;
  font-weight: 600;
  color: var(--muted);
}

.schedule-card ul {
  padding-left: 18px;
  margin: 0;
}

.schedule-card li {
  margin-bottom: 10px;
  line-height: 1.5;
}

@media (min-width: 768px) {
  .schedule-hero-cards {
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    gap: 32px;
  }

  .schedule-card {
    padding: 40px;
  }
}


.schedule-calendar {
  padding-top: 80px;
  padding-bottom: 100px;
}
