.lazy-video {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 12px;
  background: #000;
}

.lazy-video-thumb {
  width: 100%;
  height: 100%;
  cursor: pointer;
  position: relative;
}

.lazy-video-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.85);
  transition: filter 0.2s;
}

.lazy-video-thumb:hover .lazy-video-img {
  filter: brightness(1);
}

.lazy-video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 68px;
  height: 48px;
  background: url("/assets/images/youtube-play.svg") no-repeat center/contain;
  border: none;
  cursor: pointer;
  opacity: 0.9;
  transition: opacity 0.2s;
}

.lazy-video-play:hover {
  opacity: 1;
}

.lazy-video iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
