.rg-carousel-wrap {
    position:relative
}
.rg-carousel {
    display:flex;
    gap:16px;
    overflow:auto;
    scroll-snap-type:x mandatory;
    scrollbar-width:none;
    border-radius:16px
}
.rg-carousel::-webkit-scrollbar {
    display:none
}
.rg-carousel .rg-image {
    flex:0 0 40%;
    scroll-snap-align:start
}
.rg-carousel-prev,.rg-carousel-next {
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    border:0;
    width:36px;
    height:36px;
    border-radius:50%;
    background:#fffD;
    color:#2d1b4e;
    font-size:27px;
    cursor:pointer;
    box-shadow:0 4px 10px #2d1b4e22
}
.rg-carousel-prev {
    left:-46px
}
.rg-carousel-next {
    right:-46px
}
