.compatible-vehicles-section {
    margin-top: 30px;
    padding: 30px;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 8px 24px rgba(20, 45, 75, 0.08);
}

.compatible-vehicles-section h2 {
    margin: 0 0 22px;
}

.compatible-vehicle-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.compatible-vehicle-card {
    padding: 18px;
    border: 1px solid #dce4ee;
    border-radius: 10px;
    background: #f8fafc;
}

.compatible-vehicle-card h3 {
    margin: 0 0 10px;
    color: #0057b8;
}

.compatible-vehicle-meta {
    display: flex;
    gap: 8px 18px;
    flex-wrap: wrap;
    color: #475569;
    font-size: 14px;
}

.compatible-vehicle-note {
    margin: 10px 0 0;
    color: #64748b;
}

.result-fitment-summary {
    max-width: 620px;
    margin-top: 10px;
    color: #475569;
    font-size: 14px;
    line-height: 1.55;
}

.result-fitment-summary strong {
    color: #1e3a5f;
}

@media (max-width: 700px) {
    .compatible-vehicle-list {
        grid-template-columns: 1fr;
    }
}
