/* ========================================
   COURSES PAGE SPACING FIX
   Reduces extra spacing between sections
   ======================================== */

/* Reduce section padding */
.courses-page .section-premium {
    padding: 2rem 0 !important;
}

/* Reduce spacing after hero */
.courses-page .hero-premium+.section-premium {
    padding-top: 2rem !important;
}

/* Compact search section */
.courses-page .search-box-modern {
    margin-bottom: 1rem !important;
}

/* Reduce spacing before tabs */
.courses-page #courseTabs {
    margin-bottom: 2rem !important;
}

/* Compact tab content */
.courses-page .tab-content {
    padding-top: 0 !important;
}

/* Reduce gap between course cards */
.courses-page .row.g-4 {
    row-gap: 1.5rem !important;
}

/* Compact call-to-action section */
.courses-page .bg-cream {
    padding: 3rem 0 !important;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .courses-page .section-premium {
        padding: 1.5rem 0 !important;
    }

    .courses-page .hero-premium {
        min-height: 40vh !important;
    }

    .courses-page .search-box-modern {
        margin-bottom: 0.5rem !important;
    }
}