.player-stage {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  overflow: hidden;
  background: #050505;
}

.player-stage video {
  display: block;
  width: 100%;
  height: auto;
  max-height: 72vh;
  max-height: 72dvh;
  aspect-ratio: auto;
  object-fit: contain;
  background: #050505;
}

.video-title-link {
  color: inherit;
  text-decoration: none;
}

.video-title-link:hover,
.video-title-link:focus-visible {
  color: var(--blue);
  text-decoration: underline;
  text-decoration-thickness: .06em;
  text-underline-offset: .12em;
}

@media (max-width: 720px) {
  .player-stage video {
    max-height: 75vh;
    max-height: 75dvh;
  }
}
