/* ── Video Slider ─────────────────────────────────────────────────────────── */
.vs-slider {
  position: relative;
  overflow: hidden;
  background: #000;
  border-radius: 10px;
  user-select: none;
}

/* Track holds all slides side-by-side visually but we use opacity/display */
.vs-track {
  position: relative;
  width: 100%;
}

/* ── Slides ── */
.vs-slide {
  display: none;
  width: 100%;
  position: relative;
}
.vs-slide.vs-active {
  display: block;
  animation: vsFadeIn .35s ease;
}
@keyframes vsFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ── Video wrapper — aspect ratio box ── */
.vs-video-wrap {
  position: relative;
  width: 100%;
  height: 0;
  overflow: hidden;
  background: #000;
}
.vs-video-wrap iframe,
.vs-video-wrap video {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* ── Caption ── */
.vs-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,.72));
  padding: 28px 20px 16px;
  pointer-events: none;
}
.vs-caption-title {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 4px;
  text-shadow: 0 1px 4px rgba(0,0,0,.5);
}
.vs-caption-desc {
  color: rgba(255,255,255,.82);
  font-size: .82rem;
  line-height: 1.45;
  text-shadow: 0 1px 4px rgba(0,0,0,.5);
}

/* ── Arrows ── */
.vs-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px; height: 42px;
  border-radius: 50%;
  border: none;
  background: rgba(0,0,0,.52);
  color: #fff;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  z-index: 10;
  transition: background .18s, transform .18s;
  padding: 0;
}
.vs-arrow:hover { background: rgba(0,0,0,.8); }
.vs-prev { left: 12px; }
.vs-next { right: 12px; }
.vs-arrow:active { transform: translateY(-50%) scale(.93); }

/* ── Dots ── */
.vs-dots {
  position: absolute;
  bottom: 10px; left: 0; right: 0;
  display: flex;
  justify-content: center;
  gap: 6px;
  z-index: 10;
  pointer-events: auto;
}
.vs-dot {
  width: 24px; height: 3px;
  border-radius: 2px;
  border: none;
  background: rgba(255,255,255,.38);
  cursor: pointer;
  padding: 0;
  transition: background .2s, width .2s;
}
.vs-dot.vs-dot-active {
  background: #fff;
  width: 36px;
}

/* ── Error state ── */
.vs-error {
  position: absolute;
  inset: 0;
  display: flex; align-items: center; justify-content: center;
  color: #f87171;
  font-size: .85rem;
  background: #1e1e1e;
}
