.yt-lazy {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #000;
}
.yt-lazy iframe,
.yt-lazy-btn {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.yt-lazy-btn {
  padding: 0;
  margin: 0;
  background: #000;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.yt-lazy-thumb {
  max-width: 100%;
  max-height: 100%;
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  margin: auto;
  transition: filter 0.2s ease;
}
.yt-lazy-btn:hover .yt-lazy-thumb,
.yt-lazy-btn:focus-visible .yt-lazy-thumb {
  filter: brightness(0.8);
}
.yt-lazy-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 68px;
  height: 48px;
  pointer-events: none;
  transition: transform 0.2s ease;
}
.yt-lazy-btn:hover .yt-lazy-play,
.yt-lazy-btn:focus-visible .yt-lazy-play {
  transform: translate(-50%, -50%) scale(1.1);
}
.yt-lazy-play svg {
  width: 100%;
  height: 100%;
  display: block;
}
.yt-lazy-play-bg {
  fill: #212121;
  fill-opacity: 0.85;
  transition: fill 0.2s ease, fill-opacity 0.2s ease;
}
.yt-lazy-btn:hover .yt-lazy-play-bg,
.yt-lazy-btn:focus-visible .yt-lazy-play-bg {
  fill: #f00;
  fill-opacity: 1;
}
.yt-lazy-btn:focus-visible {
  outline: 3px solid var(--primary-teal, #009688);
  outline-offset: 2px;
}
