/* MBA Programs — cards, detail hero, compare */
.prog-card__media {
  position: relative;
  height: 10.5rem;
  background: linear-gradient(135deg, #0f766e 0%, #0f172a 100%);
  overflow: hidden;
}
.prog-card__cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.prog-card__logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 1.25rem;
}
.prog-card__logo-wrap img {
  max-height: 5rem;
  max-width: 85%;
  width: auto;
  height: auto;
  object-fit: contain;
  background: #fff;
  border-radius: 12px;
  padding: 0.5rem 0.75rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}
.prog-card__logo-badge {
  position: absolute;
  left: 0.85rem;
  bottom: 0.85rem;
  max-width: 42%;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 10px;
  padding: 0.35rem 0.5rem;
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.9);
}
.prog-card__logo-badge img {
  display: block;
  max-height: 2.5rem;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}
.prog-card__initials {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 4rem;
  width: 4rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.95);
  font-size: 1.25rem;
  font-weight: 800;
  color: #0f766e;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}
.prog-detail-hero {
  position: relative;
  min-height: 12rem;
  background: linear-gradient(135deg, #0f766e 0%, #0f172a 100%);
}
.prog-detail-hero__cover {
  width: 100%;
  height: 12rem;
  object-fit: cover;
  object-position: center;
  display: block;
}
@media (min-width: 640px) {
  .prog-detail-hero__cover { height: 14rem; }
}
.prog-detail-hero__logo {
  position: absolute;
  left: 1.5rem;
  bottom: -2rem;
  z-index: 2;
  background: #fff;
  border-radius: 14px;
  padding: 0.5rem 0.75rem;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.15);
  border: 1px solid #e2e8f0;
  max-width: 8rem;
}
.prog-detail-hero__logo img {
  display: block;
  max-height: 3.5rem;
  max-width: 100%;
  object-fit: contain;
}
.prog-detail-hero--with-logo .prog-detail-body {
  padding-top: 3rem;
}
.prog-compare-logo {
  height: 2.5rem;
  width: 2.5rem;
  object-fit: contain;
  border-radius: 8px;
  background: #fff;
  border: 1px solid #e2e8f0;
  padding: 2px;
}
.prog-compare-cover {
  height: 2.5rem;
  width: 2.5rem;
  object-fit: cover;
  border-radius: 8px;
}
