.schedule-section {
  padding: 2rem 2rem;
  background: white;
}

.schedule-container {
  max-width: 1280px;
  margin: 0 auto;
}

.schedule-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.schedule-card {
  padding: 2.5rem;
  background: linear-gradient(135deg, rgba(248, 249, 255, 0.9) 0%, rgba(255, 255, 255, 1) 100%);
  border: 1px solid rgba(99, 102, 241, 0.15);
  border-radius: 16px;
  transition: all 0.4s ease;
  position: relative;
}

.schedule-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(180deg, #6366f1, #8b5cf6);
  border-radius: 16px 0 0 16px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.schedule-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(99, 102, 241, 0.15);
  border-color: rgba(99, 102, 241, 0.3);
}

.schedule-card:hover::before {
  opacity: 1;
}

.schedule-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.schedule-icon {
  width: 48px;
  height: 48px;
  color: #6366f1;
  padding: 10px;
  background: rgba(99, 102, 241, 0.1);
  border-radius: 10px;
}

.schedule-week {
  font-family: 'Inter', sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: #1e293b;
  display: block;
}

.schedule-days {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  color: #64748b;
  display: block;
}

.schedule-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 1.5rem;
}

.schedule-focus {
  list-style: none;
  padding: 0;
  margin: 0;
}

.schedule-focus li {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #475569;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  position: relative;
}

.schedule-focus li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 6px;
  height: 6px;
  background: #6366f1;
  border-radius: 50%;
}

.schedule-info {
  margin-top: 3rem;
}

.info-card {
  padding: 2.5rem;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
  border: 1px solid rgba(99, 102, 241, 0.1);
  border-radius: 16px;
  text-align: center;
}

.info-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 1rem;
}

.info-card p {
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  line-height: 1.8;
  color: #475569;
  max-width: 800px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .schedule-section {
    padding: 4rem 1.5rem;
  }

  .schedule-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .schedule-card {
    padding: 2rem;
  }

  .info-card {
    padding: 2rem;
  }
}