/* ==========================================================================
   Clash百科 · download.css —— 下载页专属样式
   铜版百科全书组件之外的页面级补充:卷首目录、平台页签导语、
   系统要求小表、内核文件链接。颜色只引用 base.css 的设计令牌。
   ========================================================================== */

/* 卷首目录(复用 toc-tabs,补上间距) */
.dl-toc{margin-top:26px}

/* 平台页签面板导语 */
.dl-panel-lead{
  font-size:14px;color:var(--text-muted);line-height:1.85;
  max-width:78ch;margin-bottom:20px;
}

/* 面板内补充小注(朱砂批注符号) */
.dl-note{margin-top:16px;font-size:12.5px;color:var(--text-muted);line-height:1.8}
.dl-note::before{content:"※";color:var(--cinnabar);font-weight:700;margin-right:6px}

/* 系统要求小表 */
.sys-req{margin-top:26px}
.sys-req-title{
  display:flex;align-items:center;gap:10px;
  font-size:11px;letter-spacing:.28em;color:var(--text-muted);
  margin-bottom:10px;white-space:nowrap;
}
.sys-req-title::after{content:"";flex:1;height:1px;background:var(--ink);opacity:.45}
.sys-req .data-table{min-width:0}
.sys-req .data-table td:first-child{
  width:6.5em;white-space:nowrap;font-weight:700;color:var(--text);
}

/* 内核区文件链接(等宽字体,朱砂下划) */
.dl-link{
  font-family:var(--font-mono);font-size:12px;color:var(--cinnabar);
  text-decoration:none;
  border-bottom:1px solid color-mix(in srgb,var(--cinnabar) 55%,transparent);
  overflow-wrap:anywhere;word-break:break-word;
}
.dl-link:hover{color:var(--cinnabar-deep);border-bottom-color:var(--cinnabar-deep)}

/* 窄屏微调 */
@media (max-width:640px){
  .dl-panel-lead{font-size:13.5px}
  .sys-req .data-table td:first-child{width:5.5em}
  /* 窄屏:小表眉栏允许折行,长标签(尤其外文)不许撑破视口 */
  .sys-req-title{flex-wrap:wrap;white-space:normal}
  .sys-req-title > span{min-width:0;overflow-wrap:anywhere}
}