/* ============================================================
   Clash教程网 · glossary.css(wiki.html 页面专属)
   术语卡锚点命中高亮 / 分类导航行间距 / 页内文字链
   颜色只引用 base.css 设计令牌
   ============================================================ */

/* 分类跳转导航与页头之间的呼吸间距 */
.gloss-toc-row{
  padding-top:26px;
}

/* 从分类导航或站外锚点跳到某条术语时,红笔圈出该卡 */
.term-card:target{
  border-color:var(--accent);
  border-left-width:3px;
  background-color:var(--panel2);
  box-shadow:var(--pop-shadow);
}
.term-card:target .term-name{
  color:var(--accent);
}

/* 页头导语与结尾批注里的站内文字链:朱红下划,与全站链接语汇一致 */
.gloss-link{
  color:var(--accent);
  text-decoration:underline;
  text-decoration-thickness:1.5px;
  text-underline-offset:4px;
  font-weight:600;
}
.gloss-link:hover{
  color:var(--accent-dark);
  text-decoration-style:dotted;
}