Change blog to 2 columns 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) {
div[class*="layout__List"] {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    grid-gap: 10px;
}}