.grid-l,
.grid-xl {
    display: grid;
    column-gap: 1rem;
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: min-content;
}

/* Desktop Media Query */
@media screen and (min-width: 52rem) {
    .grid-l {
        grid-template-columns: repeat(10, 1fr);
    }

    .grid-xl {
        grid-template-columns: repeat(16, 1fr);
    }
}