/* Coworking Gallery Slider (minimal, arrows visible) */
.cow-gallery{
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: #0b0b0b;
}

.cow-gallery__track{
  display: flex;
  transition: transform .35s ease;
  will-change: transform;
}

.cow-gallery__slide{
  min-width: 100%;
  margin: 0;
}

.cow-gallery__slide img{
  width: 100%;
  height: auto;
  display: block;
}

.cow-gallery__nav{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.25);
  background: rgba(0,0,0,.35);
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}

.cow-gallery__nav:hover{
  background: rgba(0,0,0,.55);
  border-color: rgba(255,255,255,.4);
}

.cow-gallery__prev{ left: 12px; }
.cow-gallery__next{ right: 12px; }

.cow-gallery__nav span{
  font-size: 26px;
  line-height: 1;
}

.cow-gallery__dots{
  position: absolute;
  left: 50%;
  bottom: 10px;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 6;
}

.cow-gallery__dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.5);
  background: rgba(255,255,255,.15);
  cursor: pointer;
  transition: transform .15s ease, background .15s ease;
}

.cow-gallery__dot.is-active{
  background: rgba(255,255,255,.75);
  transform: scale(1.1);
}

/* Responsive */
@media (max-width: 768px){
  .cow-gallery__prev{ left: 8px; }
  .cow-gallery__next{ right: 8px; }
}
