.video-card .image-wrap {
  position: relative;
  overflow: hidden;
}

.video-card .caption {
  display: block;
}

.video-card .photo-button {
  cursor: pointer;
}

.video-play-mark {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(10,18,14,.78);
  transform: translate(-50%,-50%);
  pointer-events: none;
}

.video-play-mark::after {
  content: "";
  position: absolute;
  left: 23px;
  top: 17px;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 18px solid #f0dfad;
}

.video-lightbox {
  display: flex;
  background: rgba(32,11,75,.92);
}

.video-lightbox figure {
  width: min(100%, 1120px, calc((100vh - 340px) * 16 / 9));
}

.video-player {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
}

.video-player iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-lightbox figcaption {
  width: 100%;
}

.video-lightbox figcaption h3 {
  margin: 0;
}

.video-subscription {
  display: block;
  width: min(210px, 48vw, 22vh);
  margin-top: 18px;
  border-radius: 12px;
  line-height: 0;
  transition: transform .2s, opacity .2s, box-shadow .2s;
}

.video-lightbox .video-subscription img {
  display: block;
  width: 100%;
  height: auto;
  max-height: none;
  border-radius: inherit;
}

.video-subscription:hover,
.video-subscription:focus-visible {
  transform: translateY(-2px);
  opacity: .94;
  box-shadow: 0 5px 18px rgba(0,0,0,.34);
  outline: 2px solid white;
  outline-offset: 4px;
}

@media (max-width: 700px) {
  .video-subscription {
    margin-top: 14px;
    border-radius: 10px;
  }
}
