.lazy-youtube {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 Aspect Ratio */
  background-color: #000;
  overflow: hidden;
  cursor: pointer;
}

.lazy-youtube-thumb {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
}

.lazy-youtube-play {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 72px;
  height: 72px;
  background: rgba(0, 0, 0, 0.6);
  border: none;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  cursor: pointer;
}

.lazy-youtube-play::before {
  content: '';
  position: absolute;
  left: 26px;
  top: 18px;
  width: 20px;
  height: 36px;
  background: white;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}
.lazy-youtube iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}