﻿
.all-car {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.all-car img {
    object-fit: cover;
    border-radius: 6px;
    display: block;
    width: auto;
    height: 200px;
}


.vehicle-list .km {
    font-size: 15px;
    color: #999;
    padding: 3px 0 0;
    width: max-content;
    margin-top: 4px;
    margin-left: 117px;
    align-self: flex-end;
}

.vehicle-list .reg {
    color: #999;
    text-transform: uppercase;
    font: 600 13px 'Open Sans', sans-serif;
    margin-top: 5px;
    width: max-content;
}

.vehicle-list .rate span {
    background-color: #14309e;
    color: #fff;
    font-size: 18px;
    padding: 3px 12px;
    display: inline-flex;
}

.vehicle-list .ve-name h3 {
    font-weight: 600;
    font: 600 18px 'Open Sans', sans-serif;
    margin: 5px 0 17px;
    border-bottom: 1px solid #b4b4b4;
    width: max-content;
}

.vehicle-list .b-featured__item-links {
    margin-top: 15px;
    width: max-content;
}

@media (max-width: 992px) {
    .all-car {
        grid-template-columns: repeat(2, 1fr);
    }

    .vehicle-list .km {
        width: max-content;
        align-self: flex-end;
        margin-top: -25px;
        margin-left: 123px;
    }
}

@media (max-width: 576px) {
    .all-car {
        grid-template-columns: 1fr;
    }

        .all-car img {
            height: auto;
            object-fit: cover;
            border-radius: 6px;
            display: block;
            width: 100%;
        }

    .vehicle-list .km {
        width: max-content;
        align-self: flex-end;
        margin-top: -32px;
        margin-left: 180px;
    }
}


