.video-diferido {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #080808;
  box-shadow: 0 26px 80px rgba(0,0,0,.42);
}
.video-portada {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
  color: #fff;
  background: #080808;
  cursor: pointer;
}
.video-portada > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .78;
  transition: transform .45s ease, opacity .45s ease;
}
.video-portada::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,rgba(0,0,0,.06) 25%,rgba(0,0,0,.64));
}
.video-portada:hover > img { transform: scale(1.025); opacity: .92; }
.video-play {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  width: 74px;
  height: 74px;
  border: 1px solid rgba(255,255,255,.9);
  border-radius: 50%;
  background: rgba(15,12,10,.38);
  transform: translate(-50%,-50%);
  backdrop-filter: blur(5px);
}
.video-play::after {
  content: "";
  position: absolute;
  left: 29px;
  top: 23px;
  width: 0;
  height: 0;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  border-left: 20px solid #fff;
}
.video-etiqueta {
  position: absolute;
  z-index: 2;
  left: 28px;
  bottom: 24px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.video-diferido iframe { width: 100%; height: 100%; border: 0; }
.video-error {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  gap: 15px;
  padding: 30px;
  color: #fff;
  text-align: center;
  background: #171411;
}
.video-error a { text-underline-offset: 5px; }
@media(max-width:600px){
  .video-play{width:62px;height:62px}
  .video-play::after{left:25px;top:19px;border-top-width:12px;border-bottom-width:12px;border-left-width:18px}
  .video-etiqueta{left:17px;bottom:15px;font-size:.6rem}
}
