/* 覆盖 VuePress 默认绿色 --vp-c-accent */
:root {
  --vp-c-accent: #ef4444 !important;
  --vp-c-accent-bg: #dc2626 !important;
  --vp-c-accent-hover: #f87171 !important;
  --vp-c-accent-soft: rgb(239 68 68 / 14%) !important;
}

[data-theme='dark'] {
  --vp-c-accent: #f87171 !important;
  --vp-c-accent-bg: #ef4444 !important;
  --vp-c-accent-hover: #fca5a5 !important;
  --vp-c-accent-soft: rgb(239 68 68 / 16%) !important;
}

/* VuePress 2 导航栏品牌区域修复 */
.vp-navbar > span > a {
  display: flex !important;
  flex-direction: row !important; /* Logo 在左，文字在右 */
  align-items: center !important;
  gap: 10px !important;
  text-decoration: none !important;
}

.vp-site-name {
  display: inline-block !important;
  opacity: 1 !important;
  visibility: visible !important;
  font-weight: 600 !important;
}

.vp-site-logo {
  display: inline-block !important;
  margin: 0 !important;
}

/* 隐藏首页 hero 区域 */
.vp-home-hero,
.vp-hero,
.home-hero,
.hero {
  display: none !important;
}

/* 隐藏首页 h1 标题 */
.home h1,
.vp-home h1,
.home .theme-default-content > h1:first-child {
  display: none !important;
}
