/* ----- Schedule ----- */
.section-schedule {
  padding: var(--space-section-top) 24px var(--space-section-bottom);
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(760px circle at 14% -6%, rgba(15, 86, 182, 0.1) 0%, rgba(15, 86, 182, 0) 64%),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.schedule-header {
  max-width: 720px;
  margin: 0 auto var(--space-header-bottom);
  text-align: center;
}

.schedule-title {
  margin: 0 0 18px;
  font-size: clamp(1.72rem, 3.9vw, 2.3rem);
  font-weight: 800;
  color: transparent;
  background: linear-gradient(90deg, #0b1f3d 0%, #114a93 52%, #0f62d0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: 0.04em;
}

.schedule-lead {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.85;
  color: #5d6e85;
}

.schedule-grid {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: var(--space-grid-gap);
  position: relative;
  z-index: 1;
}

@media (min-width: 900px) {
  .schedule-grid {
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
    gap: var(--space-grid-gap);
  }
}

.schedule-card {
  position: relative;
  flex: 1;
  min-width: 0;
  background: linear-gradient(180deg, #f2f7ff 0%, #edf4ff 100%);
  border: 1px solid rgba(15, 86, 182, 0.12);
  border-radius: 24px;
  padding: var(--space-card-y) var(--space-card-x) calc(var(--space-card-y) + 2px);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.08), 0 4px 12px rgba(15, 23, 42, 0.04);
  transition: box-shadow 0.28s var(--ease), transform 0.28s var(--ease), border-color 0.28s var(--ease);
}

.schedule-card:hover {
  border-color: rgba(15, 86, 182, 0.2);
  box-shadow: 0 24px 52px rgba(15, 23, 42, 0.1), 0 10px 24px rgba(15, 23, 42, 0.05);
  transform: translateY(-3px);
}

.schedule-card-title {
  margin: 0 0 20px;
  font-size: 1.125rem;
  font-weight: 800;
  color: #0b1f3d;
  text-align: center;
}

.schedule-block + .schedule-block {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(26, 32, 44, 0.08);
}

.schedule-badge {
  display: inline-block;
  margin-bottom: 12px;
  padding: 5px 14px;
  border-radius: 999px;
  background: linear-gradient(180deg, #e4f3ff 0%, #d8ecff 100%);
  color: #0f62d0;
  font-size: 0.8125rem;
  font-weight: 800;
  border: 1px solid rgba(15, 98, 208, 0.15);
}

.schedule-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
}

.schedule-line svg {
  flex-shrink: 0;
  color: #123b78;
  stroke-width: 1.9;
}

.schedule-days {
  font-size: 1rem;
  font-weight: 800;
  color: #0b1f3d;
}

.schedule-time {
  margin-left: auto;
  font-size: 1rem;
  font-weight: 800;
  color: #0f62d0;
}

@media (max-width: 480px) {
  .schedule-badge {
    display: table;
    margin-left: auto;
    margin-right: auto;
  }

  .schedule-line {
    justify-content: center;
  }

  .schedule-days {
    text-align: center;
  }

  .schedule-time {
    margin-left: 0;
    width: 100%;
    text-align: center;
  }
}

.schedule-footnote {
  max-width: 720px;
  margin: clamp(30px, 3.2vw, 44px) auto 0;
  padding: 0 8px;
  text-align: center;
  font-size: 0.875rem;
  line-height: 1.75;
  color: #5f6e83;
}
