/* ============================================================
   AICEO Brand Patch · AI Command Center 专用
   目的：将侧栏 .brand-mark 的"AI"文字徽记替换为 AICEO 品牌徽记
        并将品牌标题升级为 AICEO 字标（纯 CSS，不改 DOM/JS）
   加载顺序：置于 aiceo-vi-theme.css 之后
   ============================================================ */

/* 徽记：以背景图呈现 AICEO favicon 徽记，隐藏原"AI"文字 */
.sidebar-header .brand-mark,
.brand > .brand-mark {
  color: transparent !important;
  font-size: 0 !important;
  background: url("aiceo-logo-mark.svg") center / contain no-repeat !important;
  width: 40px !important;
  min-width: 40px !important;
  height: 40px !important;
  flex: 0 0 40px !important;
  border-radius: 10px !important;
  box-shadow: none !important;
}

/* 品牌标题：AICEO 金色字标 */
.brand-text .brand-title {
  font-family: var(--dt-font-display, Cinzel, serif) !important;
  letter-spacing: .12em !important;
}
.brand-text .brand-subtitle {
  letter-spacing: .06em !important;
}
