[data-carousel].swiper {
    overflow: hidden;
    padding: 0 52px; /* space for arrows */
    box-sizing: border-box;
}
[data-carousel].swiper .swiper-horizontal {
    overflow: hidden ;
}

[data-carousel] .swiper-wrapper {
    display: flex;
    align-items: stretch;
}

[data-carousel] .swiper-slide {
    box-sizing: border-box;
    width: 100%;
}

[data-carousel] .swiper-slide > .wp-block-group {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

[data-carousel] .swiper-buttons {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #ffffff;
    border: none;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    
}

[data-carousel] .swiper-button-prev:after {
    content: '‹';
    font-size: 22px;
}

[data-carousel] .swiper-button-next:after {
    content: '›';
    font-size: 22px;
}

