/* Start custom CSS for dms_srp_listing, class: .elementor-element-627bbba *//* ELITE V4.0 MAIN INVENTORY GRID */
.busko-inventory-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    padding: 20px 0;
    max-width: 1200px;
    margin: 0 auto;
}

/* VEHICLE CARD WRAPPER */
.busko-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e1e8f0;
}

.busko-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

/* PRICE TAG CALIBRATION */
.busko-price-tag {
    background: #003366; /* Navy Blue Protocol */
    color: #ffffff;
    padding: 8px 15px;
    font-weight: 800;
    font-size: 1.2rem;
    border-radius: 0 0 10px 0;
    display: inline-block;
}

/* MOBILE ADJUSTMENT FOR MAIN GRID */
@media (max-width: 768px) {
    .busko-inventory-grid {
        grid-template-columns: 1fr; /* Single column on phones */
        padding: 10px;
        width: 95%;
    }
}/* End custom CSS */