/*
 * brand.css
 * Humi UI Engine — Brand Runtime
 *
 * GP 底层适配：Logo 与品牌文字绝对垂直同轴居中。
 * 品牌名由 Theme Runtime 动态注入，不写死。
 */

.inside-header {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
}

.site-branding,
.site-logo,
.navigation-branding {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    float: none !important;
    margin: 5px 0 !important;
    padding: 0 !important;
}

.site-logo img,
.custom-logo-link img {
    width: 48px !important;
    height: 48px !important;
    display: block !important;
    margin: 0 auto !important;
}

.main-title,
.site-description {
    display: none !important;
}

.site-branding::after,
.site-logo::after,
.navigation-branding::after {
    /*
     * content 由 Theme Runtime 通过 wp_add_inline_style 动态注入，
     * 不在静态 CSS 中写死品牌名。
     */
    display: block !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    color: var(--humi-text) !important;
    margin-top: 6px !important;
    text-align: center !important;
    white-space: nowrap !important;
    letter-spacing: 0.5px !important;
}
