SwiperJS (not scrolling & width problem)

This is the demo you need:

Anyway, your code without CSS/JS of swiper (Follow again the steps).

Add custom CSS (No way to control the width by webflow designer because swiper CSS loads after webflow CSS ==> Override width property).

js:
slidesPerView: "auto",
And custom CSS:

<style>
.swiper-slide{
   width: 80%; /* or any other value*/
}
</style>