/* Container */
.camera_wrap {
  position: relative;
  width: 100%;
  /*height: 653px;*/
  aspect-ratio: 16 / 6;              /* set any fixed height or swap for aspect-ratio */
  overflow: hidden;
  background: #f5f5f5;
}

/* Optional responsive ratio instead of fixed height: */
/* .camera_wrap { aspect-ratio: 21 / 6; height: auto; } */

/* Slides (we'll add .vs-slide in JS) */
.camera_wrap .vs-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .6s ease;
  will-change: opacity;
}
.camera_wrap .vs-slide.is-active {
  opacity: 1;
  z-index: 1;
}
.camera_wrap .vs-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;          /* cover the area like Camera did */
  display: block;
}

/* Arrows */
.camera_wrap .vs-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  border: none;
  background: rgba(0,0,0,.4);
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  cursor: pointer;
}
.camera_wrap .vs-prev { left: 10px; }
.camera_wrap .vs-next { right: 10px; }
.camera_wrap .vs-nav:focus { outline: 2px solid #fff; }

/* Dots */
.camera_wrap .vs-dots {
  position: absolute;
  left: 50%;
  bottom: 12px;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 2;
}
.camera_wrap .vs-dot {
  width: 10px; height: 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.6);
  border: 0; cursor: pointer;
}
.camera_wrap .vs-dot.is-active { background: rgba(255,255,255,1); }

/* Hide controls when only one slide */
.camera_wrap.vs-single .vs-nav,
.camera_wrap.vs-single .vs-dots { display: none; }
