.ms-short-list{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

.ms-short-item{
    background:#fff;
    border-radius:12px;
    overflow:hidden;
}

@media(max-width:1024px){
    .ms-short-list{
        grid-template-columns:repeat(3,1fr);
    }
}

@media(max-width:768px){
    .ms-short-list{
        grid-template-columns:repeat(2,1fr);
    }
}