
/* FS Home Slider */
.fs-hero{ position: relative; margin: 0 0 28px; }
.fs-hero .swiper{ width: 100%; height: clamp(260px, 35vw, 520px); }
.fs-hero .swiper-slide{ position: relative; overflow: hidden; }
.fs-hero .slide-img{ width:100%; height:100%; object-fit:cover; display:block; }
.fs-hero .slide-caption{
  position:absolute; inset:auto 0 28px 0;
  display:flex; justify-content:center; text-align:center;
  padding:0 16px; pointer-events:none;
}
.fs-hero .slide-caption .cap-inner{
  display:inline-block; background:rgba(0,0,0,.45); color:#fff;
  padding:10px 14px; border-radius:10px; font-size:clamp(16px, 2vw, 22px);
  pointer-events:auto;
}
.fs-hero .swiper-button-prev,
.fs-hero .swiper-button-next{
  width:42px; height:42px; border-radius:50%;
  background:rgba(255,255,255,.9);
  box-shadow:0 4px 18px rgba(0,0,0,.15);
}
.fs-hero .swiper-button-prev:after,
.fs-hero .swiper-button-next:after{ font-size:18px; color:#333; }
.fs-hero .swiper-pagination-bullet{ background:#fff; opacity:.6; }
.fs-hero .swiper-pagination-bullet-active{ opacity:1; }
@media (max-width: 640px){
  .fs-hero .swiper-button-prev, .fs-hero .swiper-button-next{ display:none; }
}


/* === Full-bleed (full width) slider === */
/* растягиваем секцию на всю ширину экрана даже внутри .container */
.fs-hero{
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  overflow: hidden;
}
/* высота остаётся адаптивной */
