.video-facade {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9, matches the box the live iframe used to fill */
  overflow: hidden;
  border-radius: 4px;
  background-color: #1a1a1a;
}

.video-facade--no-thumb {
  background: linear-gradient(135deg, #2a2a2a, #101010);
}

.video-facade__thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 1;
}

.video-facade__iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  z-index: 1;
}

.video-facade__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 72px;
  height: 72px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.video-facade__play:hover,
.video-facade__play:focus-visible {
  background-color: rgba(0, 0, 0, 0.75);
  transform: translate(-50%, -50%) scale(1.05);
}

.video-facade__play-icon {
  display: block;
  width: 0;
  height: 0;
  margin-left: 4px; /* optically center the triangle inside the circle */
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  border-left: 22px solid #ffffff;
}
