@media (min-width: 1px) {
    /* Mobile Header Wrapper */
    .mobile-header-wrapper {
        position: fixed;
        top: 0;
        width: 100%;
        z-index: 1000;
    }

    /* Fixed Mobile Header Bar */
    .mobile-header-bar {
        height: calc(28.08vw);
        background-color: white;
        border-bottom: 1px solid rgb(251,249,242);
        box-shadow: 0 0.25em 0.6em 0 rgba(0,0,0,0.25);
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 5.33%;
    }

    /* Mobile Header Logo */
    .mobile-header-logo {
        flex: 0 0 auto;
        height: 70%;
        display: flex;
        align-items: center;
    }

    .mobile-header-logo a {
        height: 100%;
        display: block;
    }

    .mobile-header-logo img {
        height: 100%;
        width: auto;
    }

    /* Mobile Header Right (Social + Hamburger) */
    .mobile-header-right {
        flex: 1 1 auto;
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        justify-content: center;
        gap: calc(1.5vw);
    }

    /* Mobile Social Media Links */
    .mobile-social-media-links {
        list-style: none;
        display: flex;
        align-items: center;
        gap: calc(2vw);
        padding: 0;
        margin: 0;
    }

    .mobile-social-media-links li {
        display: flex;
    }

    .mobile-social-media-links a {
        color: #000;
        text-decoration: none;
        display: flex;
        align-items: center;
    }

    .mobile-social-media-links a:hover {
        opacity: 0.7;
    }

    .mobile-social-media-links svg {
        width: calc(4vw);
        height: calc(4vw);
        fill: #000;
    }

    /* Hamburger Button */
    .mobile-hamburger {
        background: none;
        border: none;
        padding: calc(1vw);
        cursor: pointer;
        display: flex;
        flex-direction: column;
        gap: calc(1.5vw);
        width: calc(8vw);
        height: calc(8vw);
        justify-content: center;
        align-items: center;
        flex-shrink: 0;
        position: relative;
    }

    .mobile-hamburger span {
        display: block;
        width: 100%;
        height: calc(0.8vw);
        min-height: 2px;
        background-color: #000;
        transition: all 0.3s ease;
        border-radius: 1px;
    }

    /* Hamburger Animation When Active */
    .mobile-hamburger.active {
        gap: 0;
    }

    .mobile-hamburger.active span {
        position: absolute;
    }

    .mobile-hamburger.active span:nth-child(1) {
        transform: rotate(45deg);
    }

    .mobile-hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-hamburger.active span:nth-child(3) {
        transform: rotate(-45deg);
    }

    /* Navigation Backdrop */
    .mobile-nav-backdrop {
        display: none;
        position: fixed;
        top: calc(28.08vw);
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 998;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .mobile-nav-backdrop.active {
        display: block;
        opacity: 1;
    }

    /* Navigation Drawer */
    .mobile-nav-drawer {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        max-height: calc(100vh - 28.08vw);
        background-color: white;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        overflow-y: auto;
        z-index: 999;
        transform: translateY(-100%);
        transition: transform 0.3s ease;
    }

    .mobile-nav-drawer.active {
        transform: translateY(calc(28.08vw));
    }

    /* Navigation Items */
    .mobile-nav-item {
        border-bottom: 1px solid rgb(240, 240, 240);
    }

    /* Main Navigation Row (Link + Chevron) */
    .mobile-nav-main {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: calc(4vw) 5.33%;
        background-color: white;
    }

    .mobile-nav-link {
        flex: 1;
    }

    .mobile-nav-link a {
        color: #000;
        font-size: calc(5vw);
        font-weight: bold;
        text-decoration: none;
    }

    /* Hide chevron spans from database content in mobile nav */
    .mobile-nav-link a > span {
        display: none;
    }

    /* Chevron Button */
    .mobile-nav-chevron {
        flex: 0 0 auto;
        background: none;
        border: none;
        padding: calc(2vw);
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: transform 0.3s ease;
    }

    .mobile-nav-chevron svg {
        width: calc(6vw);
        height: calc(6vw);
        stroke: #000;
    }

    /* Rotate chevron when submenu is open */
    .mobile-nav-item.expanded .mobile-nav-chevron {
        transform: rotate(180deg);
    }

    /* Submenu Container */
    .mobile-nav-submenu {
        max-height: 0;
        overflow: hidden;
        background-color: rgb(246, 248, 243);
        transition: max-height 0.3s ease;
    }

    .mobile-nav-item.expanded .mobile-nav-submenu {
        max-height: 1000px;
    }

    /* Sub-links */
    .mobile-nav-sublink {
        padding: calc(3.5vw) 5.33% calc(3.5vw) calc(10.66%);
        border-top: 1px solid rgb(240, 240, 240);
    }

    .mobile-nav-sublink a {
        color: #000;
        font-size: calc(4vw);
        text-decoration: none;
        display: flex;
        align-items: center;
    }

    /* Hide chevron spans from database content in mobile sublinks */
    .mobile-nav-sublink a > span {
        display: none;
    }

    .mobile-nav-sublink a:hover {
        color: #326295;
    }

    /* Lock body scroll when drawer is open */
    body.mobile-nav-open {
        overflow: hidden;
    }
}
