/* container & basic */
.video-slider-area .swiper {
  position: relative;
  width: 100%;
  overflow: hidden;
}

/* make sure wrapper/slide behave */
.videoSwiper .swiper-wrapper {
  display: flex !important;
}
.videoSwiper .swiper-slide {
  width: 100% !important;
  flex-shrink: 0 !important;
}

/* video wrapper + iframe handling */
.video-wrapper {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
  z-index: 1;
}
.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* active slide allows interaction */
.video-wrapper.active iframe {
  pointer-events: auto;
}

/* ensure controls are on top and clickable */
.video-slider-area .swiper-button-next,
.video-slider-area .swiper-button-prev,
.video-slider-area .swiper-pagination {
  z-index: 9999 !important;
  pointer-events: auto !important;
  position: absolute; /* buttons already absolute from Swiper but ensure it */
}

/* optionally tweak position/visibility */
.video-slider-area .swiper-button-next {
  right: 10px;
}
.video-slider-area .swiper-button-prev {
  left: 10px;
}
.video-slider-area .swiper-pagination {
  bottom: 8px;
  left: 0;
  right: 0;
  text-align: center;
}

/* safety: make sure no other element covers controls */
.video-slider-area * {
  -webkit-tap-highlight-color: transparent;
}

.video-playlist {
  padding-left: 15px;
}

.video-thumb {
  display: flex;
  gap: 12px;
  cursor: pointer;
  margin-bottom: 15px;
  background: #f7f7f7;
  border-radius: 10px;
  padding: 10px;
  transition: 0.25s ease;
}

.video-thumb:hover {
  background: #eaeaea;
  transform: translateY(-3px);
}

.video-thumb img {
  width: 120px;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
}

.thumb-info h5 {
  font-size: 15px;
  margin: 0;
  line-height: 1.3;
  font-weight: 600;
}
