/* ==========================================================================
   faq.html 专属样式:分类区块节奏与答案内链
   仅补充 components.css 未覆盖的本页细节,设计令牌来自 base.css
   ========================================================================== */

/* 分类区块:比通用 .sec 更紧凑的纵向节奏(只声明纵向 padding) */
.faq-sec{
  padding-top:72px;
  padding-bottom:72px;
}
@media (max-width:860px){
  .faq-sec{
    padding-top:52px;
    padding-bottom:52px;
  }
}

/* 答案里的站内链接:与 .prose a 同一套下划线语言 */
.faq-body a{
  color:var(--text);
  text-decoration:underline;
  text-decoration-color:var(--border-strong);
  text-underline-offset:3px;
  transition:color .2s ease,text-decoration-color .2s ease;
}
.faq-body a:hover{
  color:var(--accent);
  text-decoration-color:var(--accent);
}