/* ==============================
   CINEMATIC VIDEO – STABIL, NAGY
   ============================== */

/* teljes szélesség, kilóg a containerből */
.video-full{
  width:100vw;
  margin-left:calc(50% - 50vw);
  margin-top:60px;
  margin-bottom:60px;
}

/* MAGAS, MOZIS VIDEÓ */
.video-wrap-wide{
  position:relative;
  width:100%;
  padding-bottom:56.25%; /* 16:9 – EZ A LÉNYEG */
  height:0;
  overflow:hidden;
  background:#000;
}

/* iframe kitölt */
.video-wrap-wide iframe{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  border:0;
}

/* FINOM OLDALSÓ ÁTMENET – NEM CSÍK */
.video-wrap-wide::before,
.video-wrap-wide::after{
  content:"";
  position:absolute;
  top:0;
  bottom:0;
  width:5%;
  pointer-events:none;
  z-index:2;
}

/* bal oldal */
.video-wrap-wide::before{
  left:0;
  background:linear-gradient(
    to right,
    rgba(0,0,0,0.18),
    rgba(0,0,0,0)
  );
}

/* jobb oldal */
.video-wrap-wide::after{
  right:0;
  background:linear-gradient(
    to left,
    rgba(0,0,0,0.18),
    rgba(0,0,0,0)
  );
}

/* MOBILON MÉG NAGYOBB */
@media(max-width:768px){
  .video-wrap-wide{
    padding-bottom:62%;
  }
  .video-wrap-wide::before,
  .video-wrap-wide::after{
    width:3%;
    background:linear-gradient(
      to right,
      rgba(0,0,0,0.12),
      rgba(0,0,0,0)
    );
  }
}
