/* Mobile navigation — replaces SlickNav */
.mobile-nav {
    display: none;
    background: rgba(73,108,190,.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 0 0 10px 10px;
    box-shadow: 0 2px 12px rgba(0,0,50,.15);
    font-family: Verdana, Geneva, sans-serif;
    font-size: 14px;
    margin-bottom: 5px;
    overflow: hidden;
}

@media (max-width: 954px) {
    .mobile-nav { display: block; }
}

.mobile-nav-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    float: right;
    margin: 5px 5px 6px;
    padding: 6px 10px;
    background: rgba(255,255,255,.2);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    color: #fff;
    font-size: 14px;
    font-family: inherit;
    font-weight: bold;
}
.mobile-nav-btn:hover { background: rgba(255,255,255,.35); }

.mobile-nav-label {
    text-shadow: 0 1px 3px #000;
}

.mobile-nav-icon {
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 22px;
}
.mobile-nav-icon span {
    display: block;
    height: 3px;
    background: #fff;
    border-radius: 2px;
    transition: transform .2s, opacity .2s;
}
.mobile-nav-btn.is-open .mobile-nav-icon span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.mobile-nav-btn.is-open .mobile-nav-icon span:nth-child(2) {
    opacity: 0;
}
.mobile-nav-btn.is-open .mobile-nav-icon span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Clears the float of the button */
.mobile-nav::after { content: ''; display: table; clear: both; }

/* Brand logo + text */
.mobile-nav-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    float: left;
    margin: 6px 0 6px 8px;
    text-decoration: none;
    color: #fff;
    line-height: 1.2;
}
.mobile-nav-brand img {
    border-radius: 3px;
    flex-shrink: 0;
}
.mobile-nav-brand-main {
    display: block;
    font-weight: bold;
    font-size: 13px;
    text-shadow: 0 1px 3px rgba(0,0,0,.5);
}
.mobile-nav-brand-sub {
    display: block;
    font-size: 13px;
    text-shadow: 0 1px 2px rgba(0,0,0,.4);
}

.mobile-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    clear: both;
    background: rgba(50,75,160,.55);
}
.mobile-nav-list[aria-hidden="true"] { display: none; }
.mobile-nav-list[aria-hidden="false"] { display: block; }

.mobile-nav-list li { display: block; }
.mobile-nav-list a {
    display: block;
    padding: 6px 12px;
    margin: 2px 5px;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
}
.mobile-nav-list a:hover {
    background: rgba(255,255,255,.2);
    color: #fff;
}
