
.rw-other-products-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
}
@media(min-width: 768px) {
    .rw-other-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media(min-width: 1024px) {
    .rw-other-products-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}
