.car-list-flat {
    margin-bottom: 40px;
}

.car-list-flat__title {
    margin: 0;
    color: #2B2D33;
    font-weight: 700;
    font-size: 24px;
    line-height: 1.2;
    border-bottom: 1px solid #ddd;
    padding-bottom: 15px;
    margin-bottom: 25px;
}

.car-list-flat__wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.car-list-flat__item {
    max-width: 255px;
    flex: 0 0 255px;
    /* margin-right: 30px; */
    margin-bottom: 40px;
    position: relative;
}

.car-list-flat__item.nmb {
    margin-bottom: 0;
}

/* .car-list-flat__item:nth-child(4n) {
    margin-right: 0;
} */

.car-list-flat__item-link {
    display: block;
    text-decoration: none;
    transition: opacity .3s ease-in-out;
}

.car-list-flat__item-img {
    aspect-ratio: 400/250;
    border-radius: 5px;
    background: #f8f8f8;
    overflow: hidden;
    margin-bottom: 10px;
}

.car-list-flat__item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}

.car-list-flat__item-link span {
    display: block;
}

.car-list-flat__item-title {
    font-weight: normal;
    font-size: 14px;
    line-height: 1.2;
    color: #2B2D33;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    margin-bottom: 5px;
}

.car-list-flat__item-price {
    font-weight: 700;
    font-size: 16px;
    line-height: 1.2;
    color: #2B2D33;
    white-space: nowrap;
}

.car-list-flat__item-city {
    padding: 12px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0) 100%);
    border-radius: 5px 5px 0 0;
    display: inline-block;
    font-weight: normal;
    font-size: 13px;
    line-height: 1;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.8);
    color: #fff;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}

.car-list-flat__item-btn {
    margin-top: 10px;
    display: flex !important;
}

@media (min-width: 1024px) {
    .car-list-flat__item a:hover {
        opacity: .8;
    }
}



@media (max-width: 1199.98px) {

    .car-list-flat__item {
        max-width: 210px;
        flex: 0 0 210px;
        margin-bottom: 30px;
    }

    .car-list-flat__item-title {
        font-size: 14px;
    }

}

@media (max-width: 991.98px) {


    /* .car-list-flat__item:nth-child(4n) {
        margin-right: 30px;
    }

    .car-list-flat__item:nth-child(3n) {
        margin-right: 0;
    } */
}

@media (max-width: 767.98px) {

    .car-list-flat__title {
        font-size: 21px;
    }


    .car-list-flat__wrap {
        justify-content: space-between;
    }

    /* .car-list-flat__item-link {
        display: flex;
    } */

    .car-list-flat__item {
        max-width: 48%;
        flex: 0 0 48%;
        margin-right: 0;
        margin-bottom: 20px;
    }

    /* .car-list-flat__item-img {
        margin-bottom: 0;
        width: 150px;
        flex: 0 0 150px;
        margin-right: 10px;
    } */

    /* .car-list-flat__item-city {
        position: static;
        background: none;
        color: #000;
        text-shadow: 0 0 black;
        padding: 0;
        margin-bottom: 5px;
        order: 3;
        font-weight: 400;
    } */

    .car-list-flat__item-title {
        margin-bottom: 5px;
        font-size: 15px;
        white-space: normal;
    }

    .car-list-flat__item-content {
        display: flex;
        flex-direction: column;
        flex: 1 0 0;
    }

    .car-list-flat__item-price {
        margin-bottom: 10px;
    }

    /* .car-list-flat__item:nth-child(3n),
    .car-list-flat__item:nth-child(4n) {
        margin-right: 0;
    } */

    .car-list-flat__item-btn {
        font-size: 13px;
    }


}