/* Lightweight YouTube facade: shows just a thumbnail + play button instead
   of the YouTube preview UI (title, channel name, "Watch on YouTube" link).
   The real iframe is only inserted once the user clicks play. */
.yt-facade {
  width: 100%;
  height: 100%;
  display: block;
  position: relative;
  cursor: pointer;
  border: none;
  padding: 0;
  background-color: #000;
  background-size: cover;
  background-position: center;
}
.yt-facade-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: rgba(237, 106, 43, .92);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s, transform .15s;
}
.yt-facade-play:hover {
  background: #ED6A2B;
  transform: translate(-50%, -50%) scale(1.06);
}
.yt-facade-play svg {
  width: 26px;
  height: 26px;
  fill: #fff;
  margin-left: 4px;
}
