
/* --- Lazy-load vidéo (poster + clic) --- */
.video-lite{
  position: relative;
  width: 450px;
  max-width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  background: #000;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
  display: block;
  margin: 10px 0 20px 0;
}

.video-lite img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: #111;
}

.video-lite__play{
  position: absolute;
  inset: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.video-lite__play::before{
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 70px;
  height: 70px;
  transform: translate(-50%, -50%);
  border-radius: 999px;
  background: rgba(0,0,0,0.55);
}

.video-lite__play::after{
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-40%, -50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 14px 0 14px 22px;
  border-color: transparent transparent transparent #fff;
}

.video-lite:focus{
  outline: 3px solid #66b6f0;
  outline-offset: 3px;
}

.video-lite iframe{
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}
