.wp-lazy-yt {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.wp-lazy-yt iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.wp-lazy-yt__inner {
  position: absolute;
  inset: 0;
  cursor: pointer;
  display: block;
}

.wp-lazy-yt__poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.wp-lazy-yt__play {
  position: absolute;
  inset: 0;
}

.wp-lazy-yt__play::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 84px;
  height: 58px;
  transform: translate(-50%, -50%);
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.65);
}

.wp-lazy-yt__play::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-40%, -50%);
  width: 0;
  height: 0;
  border-left: 18px solid #fff;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
}