/* 自定义样式 - 隐藏标题前的装饰符号 */

/* 隐藏 h2 标题前的 # 符号 */
.single .content > h2 > .header-mark::before {
  content: none !important;
}

/* 隐藏 h3-h6 标题前的 | 符号 */
.single .content > h3 > .header-mark::before,
.single .content > h4 > .header-mark::before,
.single .content > h5 > .header-mark::before,
.single .content > h6 > .header-mark::before {
  content: none !important;
}

/* 可选：调整标题间距 */
.single .content > h2,
.single .content > h3,
.single .content > h4,
.single .content > h5,
.single .content > h6 {
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}
