.youtube-facade {
  position: absolute;
  inset: 0;
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: #080808;
  color: #fff;
  cursor: pointer;
}

.youtube-facade__poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.68;
  transition: opacity 180ms ease, transform 240ms ease;
}

.youtube-facade::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.42));
  content: '';
}

.youtube-facade__play {
  position: relative;
  z-index: 1;
  display: grid;
  width: 74px;
  height: 74px;
  place-items: center;
  padding-left: 5px;
  border: 2px solid rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  background: #d9342b;
  color: #fff;
  font-size: 27px;
  line-height: 1;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.38);
}

.youtube-facade:hover .youtube-facade__poster {
  opacity: 0.82;
  transform: scale(1.015);
}

.youtube-facade:focus-visible {
  outline: 4px solid #ffd84d;
  outline-offset: -4px;
}

.youtube-facade[aria-busy="true"] {
  cursor: progress;
}

@media (max-width: 600px) {
  .youtube-facade__play {
    width: 62px;
    height: 62px;
    font-size: 23px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .youtube-facade__poster { transition: none; }
  .youtube-facade:hover .youtube-facade__poster { transform: none; }
}
