To make Carousel to 2 items/row on Mobile.
#1. First, find Carousel ID.
In my example, it is: section[data-section-id=“67a1c851eba9570b25aad828”]
#2. Use this code to Custom CSS box.
@media screen and (max-width:767px) {
section[data-section-id="67a1c851eba9570b25aad828"] ul {
grid-template-columns: repeat(2,1fr) !important;
}
}
#3. Result