/* /programs/mba-preview — video embed layout */

.mbp-page {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 var(--pad-desktop) 100px;
}

.mbp-hero {
  padding: 56px 0 40px;
  border-bottom: 0.5px solid var(--border-gold);
  text-align: center;
}
.mbp-hero__tag {
  color: var(--gold);
  display: block;
  margin-bottom: 14px;
}
.mbp-hero__title {
  color: var(--text-main);
  margin-bottom: 16px;
}
.mbp-hero__sub {
  max-width: 640px;
  margin: 0 auto;
  color: var(--text-muted);
}

.mbp-video-section {
  padding: 48px 0;
}
.mbp-video-wrap {
  position: relative;
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--bg-surface-light);
  border-radius: var(--radius-card);
  overflow: hidden;
  background: var(--bg-surface);
}
.mbp-video-iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.mbp-video-placeholder {
  max-width: 720px;
  margin: 0 auto;
  padding: 64px 32px;
  text-align: center;
  border: 1px dashed var(--border-gold);
  border-radius: var(--radius-card);
  background: var(--bg-surface);
}
.mbp-video-placeholder__icon {
  display: block;
  color: var(--gold);
  margin-bottom: 16px;
}
.mbp-video-placeholder__title {
  color: var(--text-main);
  margin-bottom: 12px;
}
.mbp-video-placeholder__hint {
  color: var(--text-muted);
  max-width: 480px;
  margin: 0 auto;
}
.mbp-video-note {
  text-align: center;
  margin-top: 16px;
  color: var(--text-muted);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.mbp-highlights {
  padding: 48px 0;
  border-top: 0.5px solid var(--border-neutral);
}
.mbp-highlights__title {
  color: var(--text-main);
  text-align: center;
  margin-bottom: 32px;
}
.mbp-highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.mbp-highlight-card {
  border: 1px solid var(--bg-surface-light);
  border-radius: var(--radius-card);
  padding: 24px;
  background: var(--bg-surface);
}
.mbp-highlight-card__title {
  color: var(--teal-accent);
  margin-bottom: 12px;
}
.mbp-highlight-card__body {
  color: var(--text-muted);
}

.mbp-cta {
  padding: 48px 0 0;
  text-align: center;
  border-top: 0.5px solid var(--border-gold);
}
.mbp-cta__title {
  color: var(--text-main);
  margin-bottom: 12px;
}
.mbp-cta__sub {
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 24px;
}
.mbp-cta__secondary {
  margin-left: 16px;
}

@media (max-width: 900px) {
  .mbp-page {
    padding: 0 var(--pad-mobile) 80px;
  }
  .mbp-highlights-grid {
    grid-template-columns: 1fr;
  }
  .mbp-cta__secondary {
    margin-left: 0;
    margin-top: 12px;
    display: inline-block;
  }
}
