.cmp-wrapper{
    max-width:1200px;
    margin:auto;
    padding:40px;
    font-family:Arial;
}

.cmp-header{
    text-align:center;
    margin-bottom:40px;
}

.vehicle-grid{
    display:grid;
    grid-template-columns:1fr;
    gap:30px;
}

.vehicle-card{
    background:white;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,0.1);
}

.vehicle-card img{
    width:100%;
    height:350px;
    object-fit:cover;
}

.vehicle-content{
    padding:30px;
}

.score{
    display:inline-block;
    background:#16a34a;
    color:white;
    padding:10px 16px;
    border-radius:30px;
    margin-bottom:20px;
    font-weight:bold;
}

.vehicle-meta{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
    margin:20px 0;
}

.vehicle-meta span{
    background:#f3f4f6;
    padding:8px 12px;
    border-radius:20px;
}

.price{
    font-size:32px;
    font-weight:bold;
    margin-bottom:20px;
}

.details{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:10px;
    margin-bottom:25px;
}

.broker-note{
    background:#f3f4f6;
    padding:20px;
    border-radius:14px;
    margin-bottom:25px;
}

.actions{
    display:flex;
    gap:15px;
}

.actions button{
    padding:14px 18px;
    border:none;
    border-radius:12px;
    cursor:pointer;
    background:#2563eb;
    color:white;
}

.actions .secondary{
    background:#111827;
}

@media(max-width:768px){

    .details{
        grid-template-columns:1fr;
    }

    .actions{
        flex-direction:column;
    }

}
