How can I reduce product image size on my home page for mobile view?

Hi @Emiway , go to theme.css and add the following code :

@media (max-width:990px){

.product-list__inner--scroller {
   
    grid-auto-columns: 40vw !important;
    
}

}

Result: