.lazy-youtube {
  position: relative;
  width: 100%;
  aspect-ratio: 1.7777777778;
  cursor: pointer;
  overflow: hidden;
  border-radius: 0.5rem;
  background: #000;
}
.lazy-youtube img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease;
}
.lazy-youtube:hover img {
  opacity: 0.85;
}
.lazy-youtube__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 68px;
  height: 48px;
  transition: transform 0.2s ease, opacity 0.3s ease;
  z-index: 1;
  opacity: 0.9;
  pointer-events: none;
}
.lazy-youtube__play svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}
.lazy-youtube:hover .lazy-youtube__play {
  transform: translate(-50%, -50%) scale(1.1);
  opacity: 1;
}
.lazy-youtube:focus {
  outline: 2px solid #fff;
  outline-offset: 4px;
}
.lazy-youtube iframe {
  width: 100%;
  height: 100%;
}
@media (max-width: 768px) {
  .lazy-youtube__play {
    width: 56px;
    height: 40px;
  }
}
