/* Add custom CSS styles below */ 
.s-block--banners .grid{
    grid-template-columns: repeat(4,minmax(0,1fr))
}
@media (min-width: 640px) {
    .two-row .banner-entry:first-child {
        grid-column: unset !important;
        grid-row: unset !important;
    }
}

.s-block--banners .grid .banner-entry{
    height: 25vw;
}

@media screen and (max-width:768px){
.s-block--banners .grid{
    grid-template-columns: repeat(2,minmax(0,1fr))
}
.s-block--banners .grid .banner-entry{
    height: 45vw;
}
}