/* User Requested Fixes */
@media (max-width: 768px) {

    /* Push arrows inward on mobile */
    .slider-arrow.prev {
        left: 10px !important;
    }

    .slider-arrow.next {
        right: 10px !important;
    }

    /* Fix "My Team" background on mobile - ensure it matches others */
    /* Remove white background on unclickable items if present */
    .mega-link-card.unclickable {
        background: transparent !important;
    }

    /* Ensure other cards are transparent too if needed */
    .mega-link-card {
        background: transparent !important;
    }
}

/* Fix Job Application Text Color - Remove grey */
.intro-text {
    color: #1e293b !important;
    /* var(--text-heading) equivalent */
    opacity: 1 !important;
}

/* Fix 'Small Group Sessions' text alignment/spacing */
/* User wants left align but less 'weird space' on right */
.card p {
    text-align: left;
    text-wrap: balance;
    /* Modern fix for balanced lines */
    max-width: 100%;
    /* Ensure it uses full width */
}

/* Fix 'Passionate about teaching?' text color in Join Our Team modal */
.modal-header p {
    color: #000000 !important;
    /* Force black as requested */
    font-weight: 600;
    /* Optional: make it pop a bit more */
}