Make List Carousel Image Zoom on Hover

To make list carousel image zoom on hover in Squarespace, you can use this code to Custom CSS

li.user-items-list-carousel__slide.list-item:hover img {
    transform: scale(1.3);
    transition: all 0.3s;
}
li img {
    transition: all 0.3s;
}
.user-items-list-carousel__slide {
    pointer-events: initial !important;
}