To make Gallery Grid to single column on mobile, we can use this code to Custom CSS box.
If code doesn’t work, you can comment below, message or email me.
@media screen and (max-width:767px) {
.gallery-grid-wrapper {
grid-template-columns: repeat(1,1fr) !important;
grid-row-gap: 1px !important;
}
}