.video-modal-open {
  overflow: hidden;
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgb(0 0 0 / 78%);
}

.image-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgb(0 0 0 / 78%);
}

.image-modal__dialog {
  position: relative;
  max-width: min(1080px, 100%);
  max-height: calc(100vh - 96px);
}

.image-modal__dialog img {
  display: block;
  max-width: 100%;
  max-height: calc(100vh - 96px);
}

.image-modal__close,
.video-modal__close {
  position: absolute;
  top: -44px;
  right: 0;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: var(--theme-color, #a6ff00);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.video-modal__dialog {
  position: relative;
  width: min(960px, 100%);
  aspect-ratio: 16 / 9;
  background: #000;
}

.video-modal__dialog iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
