.atsync-vehicle-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.atsync-vehicle-card {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    background: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    text-align: center;
    transition: box-shadow 0.2s;
}

.atsync-vehicle-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.atsync-vehicle-card img {
    max-width: 100%;
    height: auto;
    margin-bottom: 15px;
}

.atsync-vehicle-card h3 {
    font-size: 1.2rem;
    margin: 10px 0;
}

.atsync-vehicle-card .price {
    font-size: 1.5rem;
    font-weight: bold;
    color: #b12704;
    margin: 10px 0;
}

.atsync-vehicle-card .mileage {
    color: #555;
    margin-bottom: 15px;
}

.atsync-vehicle-card .button {
    display: inline-block;
    background-color: #007cba;
    color: #fff;
    padding: 8px 16px;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
}

.atsync-vehicle-card .button:hover {
    background-color: #005a87;
}