/* Editorial site header — sticky at top across all pages */
#header {
    background: var(--c-surface, #fffaf2);
    color: var(--c-ink);
    border-bottom: 1px solid var(--c-border);
    position: sticky;
    top: 0;
    z-index: 100;
}
#header .content {
    padding: 6px 0;
    position: relative;
    width: 95%;
    margin: 0 auto;
    max-width: 1440px;
}
#header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--c-ink);
    padding-top: 0;
}
#header .logo {
    width: auto;
    max-height: 52px;
}
#header .menu a {
    color: var(--c-ink);
    font-family: var(--main_font);
    font-weight: 500;
    font-size: 14px;
    padding: 0 14px;
    text-transform: none;
    letter-spacing: 0;
    border: 0;
    transition: color .15s;
}
#header .menu a:hover { color: var(--c-tape-red); text-decoration: none; }
#header .menu a.active {
    color: var(--c-tape-red);
    text-decoration: none;
    border-bottom: 1px solid var(--c-tape-red);
    padding-bottom: 2px;
}
#header .mobile-menu-btn {
    background: transparent url(/view/images/burger-b-icon.svg) no-repeat center/contain;
    width: 28px;
    height: 28px;
    border: 0;
    cursor: pointer;
    display: none;
}
@media (max-width: 1024px) {
    #header .top_menu { display: none; }
    #header .mobile-menu-btn { display: block; }
    #header .content { padding: 14px 0; }
    #header .logo { max-height: 30px; }
}
