.site-brand {
    display: inline-flex !important;
    align-items: center;
    gap: 9px;
    text-decoration: none;
}
.site-brand-logo {
    width: 38px;
    height: 38px;
    object-fit: contain;
    flex: 0 0 auto;
}
.site-brand-fallback {
    margin-right: 0 !important;
}
.site-global-header {
    width: 100%;
    background: #fff;
    border-bottom: 1px solid #e5e7eb;
    box-shadow: 0 2px 15px rgba(0,0,0,.05);
    position: relative;
    z-index: 10;
}
.site-global-header-inner {
    max-width: 1180px;
    min-height: 70px;
    margin: 0 auto;
    padding: 10px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}
.site-global-header .navbar-brand {
    color: #1e3c72;
    font-size: 1.35rem;
    font-weight: 800;
}
.site-global-header .site-brand-fallback {
    color: #f6c042;
}
.site-global-menu {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 8px;
}
.site-global-link {
    color: #1e3c72;
    text-decoration: none;
    border: 1px solid #dbe3ef;
    border-radius: 8px;
    padding: 8px 12px;
    font-size: .9rem;
    font-weight: 700;
}
.site-global-link:hover {
    color: #fff;
    background: #2a5298;
    border-color: #2a5298;
}
@media (max-width: 640px) {
    .site-global-header-inner { align-items: flex-start; flex-direction: column; }
    .site-global-menu { justify-content: flex-start; }
}
