/* ==========================================================================
   PRIMARY NAVIGATION (DESKTOP)
   ========================================================================== */

.siu-main-header__nav-wrap {
    display: flex;
    justify-content: center;
}

.siu-primary-nav ul {
    list-style: none;
    margin: 0;
    padding: 0.4rem 0 0.6rem;
    display: flex;
    gap: 2.5rem;
}

.siu-primary-nav a {
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 700;
    color: rgb(255 255 255);
}

/* Hover/focus: underline, still white */
.siu-primary-nav a:hover,
.siu-primary-nav a:focus-visible {
    text-decoration: underline;
}

/* Active item: SIU yellow, no underline */
.siu-primary-nav .current-menu-item>a,
.siu-primary-nav .current_page_item>a {
    color: rgb(var(--color-yellow-200));
    /* SIU yellow */
    text-decoration: none;
}


/* Responsive behavior for primary nav */

@media (max-width: 900px) {
    .siu-primary-nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.25rem;
    }
}

/* Hide desktop primary nav bar on mobile; only show it in the slideout */
@media (max-width: 900px) {
    .siu-main-header__nav-wrap {
        display: none;
    }
}