/* ============================================================
   Clash中文网 download.css
   下载页专属:页头读数区、平台面板内部排布、内核表链接
   仅补充本页新增结构,不覆写 base/components 中的任何组件。
   ============================================================ */

/* ---------- 页头 ---------- */
.dl-head {
  padding: 64px 0 52px;
  border-bottom: 1px solid var(--c-line);
}

.dl-head h1 {
  font-size: clamp(26px, 3.6vw, 38px);
  letter-spacing: -0.01em;
  margin: 14px 0 16px;
}

.dl-head > .wrap > p:not(.sec-kicker) {
  color: var(--c-mute);
  max-width: 54em;
}

.dl-head .stat-strip {
  margin-top: 30px;
}

/* ---------- 平台 tab 区 ---------- */
.dl-tabs {
  margin-top: 32px;
}

.dl-tabs .tabpane {
  scroll-margin-top: calc(var(--hdr-h) + 20px);
}

.plat-note {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 22px 0 18px;
  font-size: 13px;
  color: var(--c-mute);
}

.dl-stack {
  display: flex;
  flex-direction: column;
}

/* ---------- 系统要求小表 ---------- */
.sysreq {
  margin-top: 36px;
}

.sysreq h3 {
  font-size: 15px;
  margin-bottom: 12px;
  padding-left: 12px;
  border-left: 2px solid var(--c-accent);
}

/* ---------- 内核区 ---------- */
.core-lead {
  margin-bottom: 26px;
}

.tbl .dl-link {
  font-family: var(--f-mono);
  font-size: 12.5px;
  color: var(--c-accent);
  transition: color 0.15s var(--ease);
  word-break: break-all;
}

.tbl .dl-link:hover {
  color: var(--c-accent-deep);
}

.core-callout {
  margin-top: 24px;
  margin-bottom: 0;
}

/* ---------- 正文内文字链接 ---------- */
.txt-link {
  color: var(--c-accent);
  transition: color 0.15s var(--ease);
}

.txt-link:hover {
  color: var(--c-accent-deep);
}

/* ---------- FAQ 区 ---------- */
#dl-faq .faq-list {
  margin-top: 28px;
}

/* ---------- 窄屏 ---------- */
@media (max-width: 560px) {
  .dl-head {
    padding: 48px 0 40px;
  }

  .dl-card .btn-row .btn {
    flex: 1 1 auto;
  }
}