Reduce blog image size on mobile

Add this code to the Custom CSS field on the Settings tab of your Blog widget’s settings:

@media screen and (max-width:767px) {
[class*="card-media-image"] {
    max-width: 100px;
    margin: 0 auto;
}
}