.schedule-container {
  width: 25%;
  margin: auto;
}
@media (max-width: 768px) {
  .schedule-row {
    display: flex;
    width: 170%;
    margin-left: -35%;
  }
}

/* DESKTOP ROW */
.schedule-row {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 40px;
  
  border-top: 1px solid var(--slate);
  padding-top: 35px;
  padding-bottom: 30px;

}

.schedule-day h2 {
  font-size: x-large;
}

@media (max-width: 768px) {
  .schedule-row, .schedule-row-first {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    gap: 8px !important;
  }
}

/* DAY */
.schedule-day {
  width: 140px;
  flex-shrink: 0;
  text-align: right;
}

/* DETAILS */
.schedule-details {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* TEXT */
.schedule-time {
  font-size: 23px;
  font-weight: 500;
}

.schedule-type {
  font-size: 24px;
  font-weight: 400;
  opacity: 0.7;
}

/* MOBILE FIX (IMPORTANT PART) */
  .schedule-day {
    width: auto !important;
    text-align: center !important;
  }

  .schedule-details {
    align-items: center !important;
  }  

/* TIME */
.schedule-time {
  font-size: 16px;
  opacity: 0.9;
}

/* TYPE */
.schedule-type {
  font-size: 14px;
  opacity: 0.6;
}

/* subtle motion */
.schedule-row {
  transition: transform 0.25s ease;
}

.schedule-row:hover {
  transform: translateX(10px);
}

/* INFO SECTION (same sizing system as your other pages) */
.schedule-info {
  max-width: 700px;
  margin: 80px auto 60px auto;
  text-align: center;

  opacity: 0;
  transform: translateY(30px);

  animation: fadeUp 0.8s ease forwards;
  animation-delay: 0.4s;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* CTA */
.schedule-cta {
  display: inline-block;
  margin-top: 22px;
  padding: 12px 22px;

  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  text-decoration: none;

  transition: all 0.2s ease;
}

.schedule-cta:hover {
  transform: translateY(-3px);
  border-color: rgba(255,255,255,0.5);
}

/* MOBILE */
@media (max-width: 700px) {
  .schedule-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .schedule-day {
    width: auto;
    font-size: 22px;
  }
}
