.lazy-youtube {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background-size: cover;
  background-position: center;
  cursor: pointer;
  overflow: hidden;
  border-radius: 8px;
  margin: 1.5rem 0;
}

.lazy-youtube .play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 68px;
  height: 48px;
  background: url('https://img.icons8.com/ios-filled/100/ffffff/play--v1.png') no-repeat center;
  background-size: 50%;
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: 12px;
  transform: translate(-50%, -50%);
  transition: background-color 0.3s;
}

.lazy-youtube:hover .play-button {
  background-color: rgba(0, 0, 0, 0.8);
}
