/* ============================================================
   Clash教程网 · faq.css(help.html 专属)
   仅补充 FAQ 页布局细节,颜色一律引用 base.css 令牌
   ============================================================ */

/* 页顶分类导航与导语之间留一口气 */
.faq-toc{
  margin-top:26px;
}

/* 问答列:限制阅读宽度,长答案不满铺 */
.faq-col{
  max-width:880px;
}
.faq-col .callout{
  margin-top:0;
  margin-bottom:20px;
}

/* 答案内链接沿用红笔下划风格(faq-body 不在 .prose 内) */
.faq-body a{
  color:var(--accent);
  text-decoration:underline;
  text-decoration-thickness:1.5px;
  text-underline-offset:4px;
}
.faq-body a:hover{
  color:var(--accent-dark);
}