.related-videos{
  margin-top:25px;
}

/* 2 COLUMN GRID */
.video-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:12px;
}

/* VIDEO CARD */
.video-preview{
  position:relative;
  width:100%;
  aspect-ratio:19/6;
  overflow:hidden;
  border-radius:10px;
  background:#000;
  cursor:pointer;
}

/* THUMB */
.video-preview img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

/* IFRAME */
.video-preview iframe{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  border:0;
  display:none;
}

/* PLAY BUTTON CENTER FIX */
.video-preview .play-btn{
  position:absolute;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:center;
  pointer-events:none;
}

.video-preview .play-btn::after{
  content:"";
  width:58px;
  height:58px;
  background:rgba(0,0,0,.55)
             url("../img/video.png") no-repeat center;
  background-size:55%;
  border-radius:50%;
}

/* LOAD MORE */
.load-more{
  width:100%;
  margin:18px auto 0;
  padding:12px;
  font-size:16px;
  background:#e50914;
  color:#fff;
  border:none;
  border-radius:8px;
}
