/**
 * 主题2 站点 Logo 尺寸（导航 / 页脚）
 * 按容器 class 限高，不依赖 URL 含 logo/img（扁平 hash 路径同样生效）。
 * 与 .zomia_menu > ul > li > a { margin: 35px 8px } 导航行高匹配。
 */
:root {
    --theme2-nav-logo-max-h: 46px;
    --theme2-nav-logo-max-w: min(180px, 34vw);
    --theme2-footer-logo-max-h: 40px;
    --theme2-footer-logo-max-w: min(160px, 30vw);
}

@media (max-width: 991.98px) {
    :root {
        --theme2-nav-logo-max-h: 38px;
        --theme2-nav-logo-max-w: min(150px, 42vw);
        --theme2-footer-logo-max-h: 34px;
        --theme2-footer-logo-max-w: min(140px, 38vw);
    }
}

/* 桌面 sticky 导航 + 移动顶栏 logo */
.zomia_nav_manu .logo img,
#sticky-header .logo img,
.mobile-logo-area .logo img,
.mobile-logo-area .mobile-menu-logo img,
.mobile-menu-logo img {
    max-height: var(--theme2-nav-logo-max-h) !important;
    height: auto !important;
    min-height: 0 !important;
    width: auto !important;
    max-width: var(--theme2-nav-logo-max-w) !important;
    object-fit: contain !important;
    object-position: left center;
    vertical-align: middle;
}

.zomia_nav_manu .logo,
.mobile-logo-area .logo,
.mobile-menu-logo {
    display: inline-flex;
    align-items: center;
    line-height: 0;
    max-height: calc(var(--theme2-nav-logo-max-h) + 8px);
}

.zomia_nav_manu .logo a,
.mobile-menu-logo a {
    display: inline-flex;
    align-items: center;
    line-height: 0;
}

/* 页脚 widget logo */
.footer-area .widge-thumb img {
    max-height: var(--theme2-footer-logo-max-h) !important;
    height: auto !important;
    min-height: 0 !important;
    width: auto !important;
    max-width: var(--theme2-footer-logo-max-w) !important;
    object-fit: contain !important;
    object-position: left center;
}

/* 旧路径建站仍可能命中 */
header img[src*="logo/img"],
header img[data-src*="logo/img"],
header img[src*="resource/logo"],
header img[data-src*="resource/logo"] {
    max-height: var(--theme2-nav-logo-max-h) !important;
    max-width: var(--theme2-nav-logo-max-w) !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
}

/* Logo 透明底：与主题1/3 一致，仅限尺寸 + 透明背景，不加 blend/filter */
.zomia_nav_manu .logo img.lozad[data-src],
.mobile-logo-area .logo img.lozad[data-src],
.mobile-menu-logo img.lozad[data-src],
.footer-area .widge-thumb img.lozad[data-src],
.zomia_nav_manu .logo,
.zomia_nav_manu .logo a,
.mobile-logo-area .logo,
.mobile-menu-logo {
    background: transparent !important;
    background-image: none !important;
}

.zomia_nav_manu .logo img,
.mobile-logo-area .logo img,
.mobile-menu-logo img,
.footer-area .widge-thumb img {
    background-color: transparent !important;
    background-size: auto !important;
}
