/* Global overflow fix to prevent white space/horizontal scrolling */
html, body {
    overflow-x: hidden !important;
    position: relative;
    width: 100%;
}

/* Ensure single card on mobile/tablet for WANT MORE PROOF section */
@media screen and (max-width: 768px) {
    .m-posts__carousel .slide {
        width: 100% !important;
        display: block !important;
    }
}

@media screen and (max-width: 430px) {

    /* Fix the header to the top */
    .site-header {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        z-index: 9999 !important;
        background: #000 !important;
        /* Standardize header background if needed */
        padding: 5px 15px !important;
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    }

    /* Adjust logo size for fixed header */
    .site-header__col--logo {
        width: auto !important;
        padding: 0 !important;
    }

    .site-header__col--logo .logo img {
        height: 35px !important;
        width: auto !important;
        margin: 0 !important;
        display: block !important;
    }

    /* Position the burger icon on the top right */
    .site-header__col--mobile {
        margin: 0 !important;
        width: auto !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        height: 100% !important;
    }

    .nav-mobile-toggle {
        margin: 0 !important;
        padding: 5px !important;
        display: block !important;
        cursor: pointer !important;
        height: auto !important;
        width: auto !important;
    }

    /* Styling the burger icon to match the user's request (golden color) */
    .hamburger-inner,
    .hamburger-inner::before,
    .hamburger-inner::after {
        background-color: #F3C227 !important;
        /* Golden/Yellow color from the brand */
    }

    /* Adjust hamburger box size if needed */
    .hamburger-box {
        width: 30px !important;
        height: 24px !important;
        display: block !important;
        position: relative !important;
    }

    .hamburger-inner,
    .hamburger-inner::before,
    .hamburger-inner::after {
        width: 30px !important;
        height: 2px !important;
        background-color: #F3C227 !important;
        position: absolute !important;
        display: block !important;
        content: '' !important;
        transition: transform 0.15s ease !important;
    }

    .hamburger-inner {
        top: 50% !important;
        margin-top: -1px !important;
    }

    .hamburger-inner::before {
        top: -8px !important;
    }

    .hamburger-inner::after {
        bottom: -8px !important;
    }

    /* Ensure content doesn't get hidden under the fixed header */
    body {
        padding-top: 50px !important;
        /* Adjust based on header height */
    }

    /* Ensure the navigation column is allowed to be visible so the slideToggle can work */
    .site-header__col--nav {
        display: block !important;
        width: 100% !important;
        position: absolute !important;
        top: 100% !important;
        left: 0 !important;
        z-index: 9998 !important;
        pointer-events: none;
        /* Allow clicks through when closed */
    }

    /* The nav wrapper itself should be handled by the JS slideToggle, 
       but we ensure it has the correct layout when visible */
    .nav-main-wrap {
        width: 100% !important;
        background: #000 !important;
        /* Move background here */
        pointer-events: all;
        /* Restore pointer events */
    }
}
/* ...existing code... */

/* ============================================
   FIX ACCORDION IMAGES - SHOW ACTIVE ONLY
   ============================================ */

/* Desktop: Hide all accordion images by default */
@media screen and (min-width: 1024px) {
    
    .m-accordion__images {
        display: block !important;
        visibility: visible !important;
    }
    
    .m-accordion__images__inner {
        display: block !important;
    }
    
    /* Hide all accordion images */
    .m-accordion__image {
        display: none !important;
    }
    
    /* Show only active accordion image */
    .m-accordion__image.active {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .m-accordion__image.active img {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        max-width: 100%;
        height: auto;
    }
}