/* ============================
   VIDEO MODAL
============================ */

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
}

.video-modal.show {
  display: block;
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.85);
}

.video-wrapper {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 80%;
  max-width: 960px;
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: 18px;
  overflow: hidden;
}

.video-wrapper iframe {
  width: 100%;
  height: 100%;
}

.video-close {
  position: absolute;
  top: -50px;
  right: 0;
  font-size: 42px;
  color: #fff;
  cursor: pointer;
}
