.video-modal {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  max-width: 100vw;
  max-height: 100vh;
  margin: 0;
  padding: 0;
  border: none;
  background: none;
}

.video-modal[open] {
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-modal::backdrop {
  background: rgba(0, 0, 0, 0.85);
}

.video-modal__close {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 1;
  border: none;
  background: none;
  padding: 8px 4px;
  font-family: 'Jost', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: var(--color-cream);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.video-modal__close:hover,
.video-modal__close:focus-visible {
  color: var(--color-dusty-blue);
}

.video-modal__video {
  max-width: 90vw;
  max-height: 85vh;
  width: auto;
  height: auto;
}
