/**
 * General
 */
.car-item .car-vehicle-review-stamps,
.car-item .car-content .separator,
.car-item .car-overlay-banner,
.car-item .label-featured-wrap {
    display: none !important;
}

.car-item ul li {
    list-style: none !important;
}

.car-item ul {
    padding: 0;
    margin: 0;
}

/**
 * Card
 */
.car-item {
    display: flex;
    flex-direction: column;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    flex: 1;
}

.car-item .car-content {
    display: flex;
    flex-direction: column;
    padding: 20px 15px 15px 15px;
    flex: 1;
}

.car-item .car-content > a {
    color: #2f3746;
    font-family: Ubuntu, "sans-serif";
    text-align: left;
    font-weight: 700;
    font-size: 18px;
    line-height: 21px;
}



/** Image */
.car-item .car-image {
    height: 200px;
}

.car-item .car-image img {
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    height: 100%;
    width: 100%;
    object-fit: cover;
}

@media screen and (min-width: 576px) {
    .car-item .car-image {
        height: 180px;
    }
}

/**
 * Listing Attributes
 */
 .car-item .as101-attrs {
    margin-bottom: auto;
 }

.car-item .as101-attrs .attribute {
    font-family: "Inter";
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
}

.car-item .as101-attrs .top-section {
    margin-top: 10px;
    font-weight: 400;
}

.car-item .as101-attrs .top-section .attribute {
    font-weight: 400;
}

.car-item .as101-attrs .top-section ul {
    display: flex;
    justify-content: space-between;
}

.car-item .as101-attrs .bottom-section {
    margin-top: 14px;
}

.car-item .as101-attrs .bottom-section ul {
    display: flex;
    gap: 8px;
}

.car-item .as101-attrs .bottom-section .attribute {
    display: flex;
    padding: 5px;
    background: #c5e2f5;
    border-radius: 4px;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex: 1;
}

/**
 * PRICE 
 */
.car-item .car-price {
    text-align: left;
    margin-top: 20px;
}

.car-item .car-price .new-price {
    font-family: "Ubuntu";
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 1;
}

/**
 * CTA
 */
.car-item .aircraft-cta {
    order: 10;
    margin-top: 20px;
}

.car-item .aircraft-cta a {
    display: block;
    text-align: center;
    margin: 0;
    padding: 10px 10px;
    color: #fff;
    background: #1a65d5;
    border-radius: 4px;
    font-family: "Ubuntu";
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    line-height: 20px;
    transition: 250ms all;
}

.car-item .aircraft-cta a:hover {
    background-color: #0046ad;
}

/** 
 * Responsive
 */
 @media screen and (max-width: 767px) {
    .car-item .car-content > a {
        font-size: 16px;
    }
    .car-item .car-price .new-price {
        font-size: 18px;
    }
    .car-item .owl-nav {
        display: none;
    }
    .car-item .aircraft-cta a {
        font-size: 14px;
    }
    .car-item .as101-attrs .attribute {
        font-size: 12px;
    }
}