.doctor-modal {
  width: min(920px, calc(100% - 32px));
  max-width: none;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--cream);
}

.doctor-modal::backdrop {
  background: rgba(24, 4, 9, 0.86);
  backdrop-filter: blur(4px);
}

.doctor-modal__panel {
  position: relative;
  padding: 18px 18px 26px;
  background: var(--burgundy-deep);
}

.doctor-modal__close {
  position: absolute;
  z-index: 2;
  top: 28px;
  inset-inline-end: 28px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(244, 234, 220, 0.5);
  border-radius: 50%;
  background: rgba(57, 11, 22, 0.78);
  color: var(--cream);
  font: 300 25px/1 Poppins, sans-serif;
  cursor: pointer;
}

.doctor-modal__video {
  position: relative;
  aspect-ratio: 16 / 9;
  display: grid;
  place-items: center;
  background: #21070d;
}

.doctor-modal__video iframe {
  width: 100%;
  height: 100%;
  display: none;
  border: 0;
}

.doctor-modal__empty {
  text-align: center;
}

.doctor-modal__empty span {
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.doctor-modal__empty p {
  margin: 10px 0 0;
  color: rgba(244, 234, 220, 0.55);
  font-size: 12px;
}

.doctor-modal__label {
  margin: 22px 0 4px;
  color: var(--gold);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.doctor-modal h2 {
  margin: 0;
  font-size: 28px;
  font-weight: 300;
}

@media (max-width: 520px) {
  .doctor-modal__panel { padding: 10px 10px 22px; }
  .doctor-modal__close { top: 18px; inset-inline-end: 18px; }
}
