.car-card-container {
    padding: 12px;
    display:flex;
    flex-direction: column;
    /*display: grid;*/
    /*grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));*/
    /*gap: 14px;*/
    /*padding: 14px;*/
    /*align-items: start;*/
}


.car-card {
    max-width: 1200px;
    max-height: 300px;
    height: 300px; 
    width: 100%;
    margin-bottom: 8px;
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.12);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.12s ease, box-shadow 0.12s ease;
    cursor: pointer;
}

.car-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

.car-images {
    width: 400px;
}

.car-card-thumbnail {
    width: 100%;
    height: 170px;
    background: rgba(0, 0, 0, 0.04);
}

.thumbnail-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    background-color: #fff;
}

.thumbnail-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.car-card-body {
    padding: 12px 14px;
}

.car-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
}

.car-title {
    margin: 0;
    font-weight: 700;
    font-size: 0.98rem;
    line-height: 1.2;
}

.car-price {
    font-weight: 800;
    white-space: nowrap;
}

.car-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.car-pill {
    font-size: 0.82rem;
    padding: 4px 8px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.06);
    color: rgba(0, 0, 0, 0.7);
}