#1. Image Block
Use this to Custom CSS box
div.image-block:has(.sqs-block-image-link) img {
transition: all .3s;
}
div.image-block:has(.sqs-block-image-link):hover img {
transform: scale(1.5);
transition: all .3s;
}

#2. Gallery Block Image
Use this CSS code
div.gallery-block .slide:has(a.image-slide-anchor) img {
transition: all .3s;
}
div.gallery-block .slide:has(a.image-slide-anchor):hover img {
transform: scale(1.5);
transition: all .3s;
}

#3. Gallery Section Image
Use this CSS code
figure[class*="gallery-"]:has(a) img {
transition: all .3s;
}
figure[class*="gallery-"]:has(a):hover img {
transform: scale(1.5);
transition: all .3s;
}
figure[class*="gallery-"] a {
overflow: hidden;
}
