/* ============================================
   Helpdesk Page-Specific Styles
   ============================================ */

/* Force vertical stacking below 850px for text/carousel container */
@media (max-width: 800px) {

    /* Target the flex container with text and carousel */
    .hero-content>div[style*="display: flex"] {
        flex-direction: column !important;
    }

    /* Ensure text column takes full width */
    .hero-content>div[style*="display: flex"]>div:first-child {
        min-width: 100% !important;
        padding: 2rem !important;
    }

    .hd-carousel-container {
        border-top-left-radius: 0;
        border-top-right-radius: 0;
    }

    /* Ensure carousel column takes full width */
    .hero-content>div[style*="display: flex"]>div:last-child {
        min-width: 100% !important;
        min-height: 250px !important;
    }
}