/* ===== Слайдер галереи новостей/проектов ===== */
.gallery{position:relative;border-radius:18px;overflow:hidden;background:var(--c-ink,#0E2620);margin:28px 0;outline:none}
.gallery__viewport{overflow:hidden;width:100%}
.gallery__track{display:flex;transition:transform .4s cubic-bezier(.4,0,.2,1);will-change:transform}
.gallery__slide{flex:0 0 100%;width:100%;min-width:100%}
.gallery__slide img{display:block;width:100%;height:clamp(280px,46vw,560px);object-fit:contain;background:#0a1714}
.gallery__nav{position:absolute;top:50%;transform:translateY(-50%);width:48px;height:48px;border-radius:50%;border:0;background:rgba(255,255,255,0.9);color:#0E2620;font-size:26px;line-height:1;cursor:pointer;display:grid;place-items:center;transition:.15s;z-index:2}
.gallery__nav:hover{background:#fff;transform:translateY(-50%) scale(1.06)}
.gallery__prev{left:14px}
.gallery__next{right:14px}
.gallery__counter{position:absolute;top:14px;right:16px;background:rgba(0,0,0,0.6);color:#fff;font-size:13px;font-weight:600;padding:5px 12px;border-radius:999px;z-index:2}
.gallery__dots{position:absolute;bottom:14px;left:0;right:0;display:flex;gap:8px;justify-content:center;z-index:2;flex-wrap:wrap;padding:0 12px}
.gallery__dot{width:9px;height:9px;border-radius:50%;border:0;background:rgba(255,255,255,0.45);cursor:pointer;padding:0;transition:.15s}
.gallery__dot.is-active{background:#fff;width:24px;border-radius:999px}
@media (max-width:600px){.gallery__nav{width:40px;height:40px;font-size:22px}}
