(function (){
document.addEventListener('DOMContentLoaded', function (){
const swiperContainer=document.querySelector('.p-trending-columns__swiper .swiper',
);
if(!swiperContainer){
return;
}
new Swiper('.p-trending-columns__swiper .swiper', {
slidesPerView: 1,
spaceBetween: 8,
loop: false,
navigation: {
nextEl: '.p-trending-columns__button-next',
prevEl: '.p-trending-columns__button-prev',
},
pagination: {
el: '.p-trending-columns__pagination',
clickable: true,
type: 'bullets',
},
breakpoints: {
0: {
slidesPerView: 1,
spaceBetween: 8,
},
600: {
slidesPerView: 1,
spaceBetween: 12,
},
960: {
slidesPerView: 2,
spaceBetween: 16,
},
1151: {
slidesPerView: 3,
spaceBetween: 16,
},
},
on: {
init: function (){
},
},
});
});
})();