.schedule {
  max-width: none;
  background: linear-gradient(135deg, #070707 0%, #101010 54%, #050505 100%);
  border-top: 1px solid #202020;
  border-bottom: 1px solid #202020;
}

.schedule .section-heading {
  max-width: 1500px;
  margin-left: auto;
  margin-right: auto;
}

.schedule-grid {
  max-width: 1500px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.schedule-day {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  padding: 24px;
  border: 1px solid #2a2a2a;
  background: linear-gradient(180deg, #171717 0%, #0a0a0a 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: 0.4s;
}

.schedule-day::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: var(--red);
}

.schedule-day:hover {
  transform: translateY(-8px);
  border-color: #555;
}

.schedule-day-header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
}

.schedule-day-header span {
  font-family: Anton, Impact, sans-serif;
  text-transform: uppercase;
  font-size: 2.2rem;
  line-height: 1;
}

.schedule-day-header strong {
  border: 1px solid #333;
  padding: 8px 10px;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.schedule-classes {
  display: grid;
  gap: 14px;
}

.schedule-classes div {
  background: #050505;
  border: 1px solid #242424;
  padding: 18px;
}

.schedule-classes time {
  display: inline-block;
  color: var(--red);
  font-weight: 900;
  font-size: 0.86rem;
  margin-bottom: 8px;
}

.schedule-classes h3 {
  font-family: Anton, Impact, sans-serif;
  text-transform: uppercase;
  font-size: 1.7rem;
  line-height: 1;
  margin: 0;
}

@media (max-width: 1200px) {
  .schedule-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .schedule-grid {
    grid-template-columns: 1fr;
  }

  .schedule-day {
    min-height: 300px;
  }

  .schedule-day-header {
    flex-direction: column;
  }

  .schedule-day-header span {
    font-size: 1.9rem;
  }
}
