/*
 * CFC video lightbox guardrails.
 * GLightbox otherwise sizes YouTube/Plyr players from viewport width alone,
 * which can put the control bar beyond the bottom edge of a short viewport.
 */
.glightbox-container .gvideo-container {
  box-sizing: border-box;
  width: min(80vw, 1180px) !important;
  max-height: calc(100vh - 128px) !important;
}

.glightbox-container .gvideo-wrapper,
.glightbox-container .plyr {
  max-height: calc(100vh - 128px) !important;
}

@media (max-width: 767px) {
  .glightbox-container .gvideo-container {
    width: calc(100vw - 32px) !important;
    max-height: calc(100svh - 112px) !important;
  }

  .glightbox-container .gvideo-wrapper,
  .glightbox-container .plyr {
    max-height: calc(100svh - 112px) !important;
  }
}
