/* Minimal, overlay controls; responsive */
.zegs-slider{position:relative;width:100%;max-width:1200px;margin:0 0 16px;overflow:hidden;border-radius:12px;box-shadow:0 2px 12px rgba(0,0,0,.06);}
.zegs-track{display:flex;transition:transform .35s ease;will-change:transform;}
.zegs-slide{min-width:100%;background:#000;}
.zegs-slide-img{display:block;width:100%;height:auto;object-fit:cover;}
.zegs-arrow{position:absolute;top:50%;transform:translateY(-50%);border:0;background:rgba(0,0,0,.35);color:#fff;width:36px;height:36px;border-radius:999px;display:flex;align-items:center;justify-content:center;cursor:pointer;z-index:3;line-height:1;font-size:18px;}
.zegs-prev{left:8px;}
.zegs-next{right:8px;}
.zegs-dots{position:absolute;left:0;right:0;bottom:8px;display:flex;gap:6px;justify-content:center;z-index:3;padding:4px;}
.zegs-dot{width:8px;height:8px;border-radius:999px;border:0;background:rgba(255,255,255,.5);cursor:pointer;}
.zegs-dot.is-active{background:#fff;}
@media (max-width:768px){
 .zegs-arrow{width:32px;height:32px;font-size:16px;}
 .zegs-dot{width:7px;height:7px;}
}