.gl-video-slider {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  gap: 10px;
  padding: 10px;
}
.gl-video-slide {
  min-width: 160px;
  flex: 0 0 auto;
  scroll-snap-align: start;
  position: relative;
  aspect-ratio: 9/16;
  background-size: cover;
  background-position: center;
  border-radius: 10px;
  cursor: pointer;
}
.gl-duration {
  position: absolute;
  bottom: 6px;
  left: 6px;
  background: rgba(0,0,0,0.75);
  color: #fff;
  font-size: 12px;
  padding: 2px 6px 2px 22px;
  border-radius: 3px;
  font-family: sans-serif;
  background-image: url('data:image/svg+xml;utf8,<svg fill="white" height="12" viewBox="0 0 24 24" width="12" xmlns="http://www.w3.org/2000/svg"><path d="M8 5v14l11-7z"/></svg>');
  background-repeat: no-repeat;
  background-position: 6px center;
  background-size: 12px 12px;
}
.gl-lightbox {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.85);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
.gl-lightbox iframe {
  width: 90vw;
  height: 90vh;
  max-width: 800px;
}
.gl-lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 30px;
  color: #fff;
  cursor: pointer;
}
