/* Fenetre video flottante */

.video-modal
{
  width: min(90vw, 54rem);
  padding: 0;
  border: 0;
  border-radius: 0.8rem;
  overflow: hidden;
  background: #11120f;
  box-shadow: 0 1.5rem 4rem #00000080;
}

.video-modal::backdrop
{
  background: #000000a8;
}

.video-modal__content
{
  position: relative;
}

.video-modal video
{
  display: block;
  width: 100%;
  max-height: min(72vh, 38rem);
  background: #000;
}

.video-modal__close
{
  position: absolute;
  top: 0.7rem;
  right: 0.7rem;
  z-index: 1;
  display: grid;
  width: 2.5rem;
  height: 2.5rem;
  place-items: center;
  border: 1px solid #ffffff88;
  border-radius: 50%;
  color: #fff;
  background: #11120fbb;
  cursor: pointer;
  font-size: 1.6rem;
  line-height: 1;
}

.video-modal-trigger img
{
  width: 1.55rem;
  height: 1.55rem;
}
