@media screen and (max-width: 768px) {
.your-image-block-class img {
object-fit: contain; /* Ensures the image doesn't crop */
width: 100%; /* Forces the image to fit the width of the container */
height: auto; /* Ensures the height adjusts properly */
}
}