/* Normal state */
.wpb_gallery .gallery-thumb img {
    transform: scale(1);
    transition: transform 01s ease-in-out;
}

/* Hover state: Adjust 1.1 to your preferred zoom size */
.wpb_gallery .gallery-thumb:hover img {
    transform: scale(1.1); 
}