#main-explorer {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 20px;
    margin-top: 20px;
}
.auto {
    position: relative;
    width: 100%;
    height: 40vh;
    border-radius: 8px;
}
.auto-link {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.preview-image {
    width: 100%;
    height: 75%;
    border-radius: 8px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}
.auto-card-info {
    font-weight: 300;
    font-size: 1.2em;
}
.auto-card-info p {
    margin-top: 10px;
}
.auto-model {
    font-weight: 500;
}
.price {
    font-weight: 500;
    margin-right: 5px;
}


/* Medium devices (tablets, less than 992px) */
@media (max-width: 991.98px) {
    #main-explorer {
        display: block;
    }
}

@media (min-width: 576px) and (max-width: 991.98px) {
    .auto {
        height: 50vh;
    }
}

/* Large devices (desktops, less than 1200px) */
@media (max-width: 1199.98px) {
    #main-explorer {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* X-Large devices (large desktops, less than 1400px) */
@media (max-width: 1399.98px) {}