/* 文章发布日期 */
.article-meta {
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--brand-border, #e4e7eb);
}
.article-date {
  font-size: 0.88rem;
  color: var(--brand-text-3, #8995a1);
  letter-spacing: 0.02em;
}
.dark .article-date {
  color: #6b7a8a;
}

/* 首页 Hero 增强 */
.VPHero .name .clip {
  font-weight: 800 !important;
  letter-spacing: 0.04em;
}
.VPHero .tagline {
  color: var(--brand-text-3) !important;
  font-size: 0.95rem !important;
  font-style: italic;
  opacity: 0.8;
}

/* 首页卡片 */
.VPFeature {
  border: 1px solid var(--brand-border) !important;
  border-radius: 8px !important;
  transition: all 0.2s ease !important;
  background: #fff !important;
}
.VPFeature:hover {
  border-color: var(--brand) !important;
  box-shadow: 0 2px 12px rgba(44, 62, 80, 0.1) !important;
  transform: translateY(-2px);
}
.dark .VPFeature:hover {
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3) !important;
}
.VPFeature .icon {
  font-size: 1.8rem !important;
  margin-bottom: 0.25rem;
}
.VPFeature .title {
  font-weight: 600 !important;
  font-size: 1rem !important;
  color: var(--brand) !important;
}
.VPFeature .details {
  font-size: 0.85rem !important;
  line-height: 1.5;
}

/* 正文排版 */
.vp-doc h1 {
  font-size: 1.8rem !important;
  line-height: 1.4 !important;
  letter-spacing: 0.02em;
  border-bottom: 1px solid var(--brand-border) !important;
  padding-bottom: 0.75rem !important;
  margin-bottom: 1rem !important;
}
.vp-doc h2 {
  font-size: 1.35rem !important;
  margin-top: 2rem !important;
  border-bottom: 1px solid var(--brand-border) !important;
}
.vp-doc h3 {
  font-size: 1.1rem !important;
  margin-top: 1.5rem !important;
}
.vp-doc p {
  line-height: 1.85 !important;
  margin: 0.8rem 0 !important;
}
.vp-doc blockquote {
  border-left: 3px solid var(--brand-text-3, #8995a1) !important;
  background: var(--brand-bg) !important;
  padding: 0.6rem 1rem !important;
  border-radius: 0 4px 4px 0;
  margin: 1rem 0 !important;
  color: var(--brand-text-2) !important;
}

/* 正文宽度 */
@media (min-width: 960px) {
  .VPDoc .content-container {
    max-width: 740px !important;
  }
}

/* 页脚备案信息 - 确保公安图标与文字同行 */
.VPFooter .copyright img {
  display: inline !important;
  vertical-align: middle !important;
  margin-right: 4px !important;
}
.VPFooter .copyright a {
  white-space: nowrap !important;
}
