.grid--full{
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    /* margin: 0 1rem; */
}

/* Tablet */
@media only screen and (min-width: 475px){
    .grid--full {
        grid-template-columns: repeat(8, 1fr);
        /* margin: 0 0.75rem; */
        column-gap: 0.75rem;
    }
}

/* Desktop */
@media only screen and (min-width: 800px){
    .grid--full{
        grid-template-columns: repeat(12, 1fr);
    }
}