/* NK-CLS v1 - reserve carousel height before Swiper init
   Swiper 4/5: after init .i_sb gets class swiper-container-horizontal,
   so rules below auto-disable and visual result stays the same.
   Goal: before init slides must not wrap into a column (94 slides -> 94 rows),
   which inflated the block to ~1464px and then collapsed it to ~456px. */

.i_sb:not(.swiper-container-horizontal){
  overflow: hidden;
}

.i_sb:not(.swiper-container-horizontal) > .swiper-wrapper{
  display: flex;
  flex-wrap: nowrap;
}

.i_sb:not(.swiper-container-horizontal) > .swiper-wrapper > .swiper-slide{
  flex: 0 0 auto;
}
