How to make Related Products Side by Side?

To make Related Products side by side instead of Stacked on mobile

You can use this code to Website Tools > Custom CSS.

@media screen and (max-width:767px) {
    div.ProductItem-relatedProducts .list-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    grid-gap: 5px 5px;
}}

Result