/* Master Class schedule page — scoped styles */
.mc-schedule-page {
  --mc-navy: #0a2f5c;
  --mc-blue: #0c679b;
  --mc-teal: #1a9a9a;
  --mc-teal-soft: #d8f0ef;
  --mc-blue-soft: #d6eaf7;
  --mc-orange: #e87722;
  --mc-ink: #1e293b;
  --mc-muted: #64748b;
  --mc-white: #ffffff;
  background:
    radial-gradient(ellipse 80% 50% at 10% 0%, rgba(12, 103, 155, 0.08), transparent 55%),
    radial-gradient(ellipse 70% 40% at 90% 10%, rgba(26, 154, 154, 0.08), transparent 50%),
    linear-gradient(180deg, #f4f8fb 0%, #ffffff 40%, #f0f7f7 100%);
  padding: 28px 5% 64px;
  min-height: 60vh;
}

.mc-schedule-wrap {
  max-width: 980px;
  margin: 0 auto;
}

.mc-hero {
  background: linear-gradient(135deg, var(--mc-navy) 0%, var(--mc-blue) 55%, #0e7a8a 100%);
  color: var(--mc-white);
  border-radius: 16px;
  padding: 28px 28px 24px;
  margin-bottom: 28px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(10, 47, 92, 0.22);
}

.mc-hero::after {
  content: "";
  position: absolute;
  right: -40px;
  bottom: -40px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

.mc-hero-kicker {
  margin: 0 0 8px;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.85;
  font-weight: 600;
}

.mc-hero h1 {
  margin: 0 0 10px;
  font-size: clamp(1.45rem, 3.2vw, 2rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--mc-white);
}

.mc-hero-exams {
  margin: 0 0 16px;
  font-size: 0.95rem;
  opacity: 0.95;
  line-height: 1.45;
}

.mc-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
}

.mc-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 0.88rem;
  font-weight: 600;
}

.mc-chip i {
  color: #ffd08a;
}

.mc-section-title {
  margin: 0 0 14px;
  font-size: 1.25rem;
  color: var(--mc-navy);
  font-weight: 700;
}

.mc-table-wrap {
  background: var(--mc-white);
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #dbe7f0;
  box-shadow: 0 8px 24px rgba(10, 47, 92, 0.06);
  margin-bottom: 28px;
}

.mc-schedule-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.mc-schedule-table thead th {
  background: var(--mc-navy);
  color: var(--mc-white);
  text-align: left;
  padding: 14px 16px;
  font-weight: 700;
  letter-spacing: 0.03em;
  font-size: 0.82rem;
  text-transform: uppercase;
}

.mc-schedule-table tbody td {
  padding: 14px 16px;
  vertical-align: top;
  color: var(--mc-ink);
  border-bottom: 1px solid #e8f0f6;
  line-height: 1.45;
}

.mc-schedule-table tbody tr:nth-child(odd) {
  background: var(--mc-blue-soft);
}

.mc-schedule-table tbody tr:nth-child(even) {
  background: var(--mc-teal-soft);
}

.mc-schedule-table tbody tr.mc-lunch {
  background: linear-gradient(90deg, #fff4e8, #ffe8d4);
}

.mc-schedule-table tbody tr.mc-lunch td {
  font-weight: 700;
  color: var(--mc-orange);
  text-align: center;
  letter-spacing: 0.06em;
}

.mc-schedule-table .mc-time {
  font-weight: 700;
  color: var(--mc-navy);
  white-space: nowrap;
  width: 22%;
}

.mc-schedule-table .mc-speaker {
  color: var(--mc-blue);
  font-weight: 600;
  width: 30%;
}

.mc-footer-card {
  display: grid;
  gap: 16px;
  background: var(--mc-white);
  border: 1px solid #dbe7f0;
  border-radius: 14px;
  padding: 22px;
  margin-bottom: 28px;
  box-shadow: 0 8px 24px rgba(10, 47, 92, 0.05);
}

.mc-cme {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #e8f7f0;
  color: #0f766e;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 8px 14px;
  border-radius: 8px;
  width: fit-content;
}

.mc-contact-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  color: var(--mc-muted);
  font-size: 0.92rem;
}

.mc-contact-list a {
  color: var(--mc-blue);
  text-decoration: none;
  font-weight: 600;
}

.mc-contact-list a:hover {
  text-decoration: underline;
}

.mc-cta-block {
  text-align: center;
  padding: 8px 0 4px;
}

.mc-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--mc-orange) 0%, #d45f12 100%);
  color: #fff !important;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.05rem;
  padding: 16px 36px;
  border-radius: 999px;
  box-shadow: 0 10px 28px rgba(232, 119, 34, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  animation: mcCtaPulse 1.4s ease-in-out infinite;
}

.mc-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(232, 119, 34, 0.45);
  color: #fff !important;
}

.mc-cta-note {
  margin: 12px 0 0;
  color: var(--mc-muted);
  font-size: 0.88rem;
}

@keyframes mcCtaPulse {
  0%, 100% {
    box-shadow: 0 10px 28px rgba(232, 119, 34, 0.35);
  }
  50% {
    box-shadow: 0 10px 28px rgba(232, 119, 34, 0.55), 0 0 0 6px rgba(232, 119, 34, 0.12);
  }
}

@media (max-width: 768px) {
  .mc-schedule-page {
    padding: 18px 3% 48px;
  }

  .mc-hero {
    padding: 22px 18px;
    border-radius: 12px;
  }

  .mc-schedule-table thead {
    display: none;
  }

  .mc-schedule-table,
  .mc-schedule-table tbody,
  .mc-schedule-table tr,
  .mc-schedule-table td {
    display: block;
    width: 100%;
  }

  .mc-schedule-table tbody tr {
    padding: 12px 14px;
    border-bottom: 1px solid #dbe7f0;
  }

  .mc-schedule-table tbody td {
    border: none;
    padding: 4px 0;
    width: 100%;
  }

  .mc-schedule-table .mc-time::before {
    content: "Time: ";
    color: var(--mc-muted);
    font-weight: 600;
  }

  .mc-schedule-table .mc-topic::before {
    content: "Topic: ";
    color: var(--mc-muted);
    font-weight: 600;
  }

  .mc-schedule-table .mc-speaker::before {
    content: "Speaker: ";
    color: var(--mc-muted);
    font-weight: 600;
  }

  .mc-schedule-table tbody tr.mc-lunch td::before {
    content: none;
  }

  .mc-cta-btn {
    width: 100%;
    padding: 15px 20px;
    font-size: 1rem;
  }
}
