#site-header {
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
    position: sticky;
    top: 0;
    z-index: 1020;
}
#site-header .header-inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    align-items: center;
    min-height: 60px;
}
#site-header .header-logo {
    flex-shrink: 0;
    margin-right: 2rem;
}
#site-header .header-logo img {
    display: block;
    max-height: 44px;
    width: auto;
}
#site-header .header-nav-wrap {
    flex: 1;
    display: flex;
    justify-content: center;
}
#site-header .header-nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .25rem;
    list-style: none;
    margin: 0;
    padding: 0;
}
#site-header .header-nav a {
    display: inline-block;
    padding: .5rem .8rem;
    font-size: .9rem;
    font-weight: 500;
    color: #475569;
    text-decoration: none;
    border-radius: 4px;
    transition: color .15s, background .15s;
    white-space: nowrap;
}
#site-header .header-nav a:hover {
    color: #1d4ed8;
    background: rgba(37,99,235,.06);
}
#site-header .header-nav a.active {
    color: #1d4ed8;
    font-weight: 600;
}
#site-header .menu-toggle {
    display: none;
    background: none;
    border: 1px solid #cbd5e1;
    border-radius: 4px;
    padding: .4rem .5rem;
    cursor: pointer;
    color: #475569;
}
#site-header .menu-toggle svg {
    display: block;
}
@media (max-width: 767px) {
    #site-header .header-inner {
        flex-wrap: wrap;
        justify-content: space-between;
    }
    #site-header .header-logo {
        margin-right: 0;
    }
    #site-header .menu-toggle {
        display: block;
    }
    #site-header .header-nav-wrap {
        display: none;
        flex-basis: 100%;
        order: 3;
    }
    #site-header .header-nav-wrap.open {
        display: flex;
    }
    #site-header .header-nav {
        flex-direction: column;
        width: 100%;
        padding: .5rem 0 1rem;
    }
    #site-header .header-nav a {
        display: block;
        padding: .55rem .5rem;
    }
}
