/* =========================================================
   Clash之家 · download.css
   下载页专属:页首站牌区 / 平台面板内节奏 / 客户端卡竖排流
   ========================================================= */

/* ---------- 页首站牌区 ---------- */
.dl-hero {
  padding-top: clamp(40px, 7vw, 88px);
  padding-bottom: clamp(28px, 4vw, 48px);
}

.dl-lede {
  max-width: 68ch;
  font-size: 16.5px;
  color: var(--text);
  margin-bottom: 1.4em;
}

/* 收录平台胶囊行(站名牌式) */
.dl-plats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.dl-plats li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 12px;
  border: var(--stroke);
  background: var(--panel);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
}

.dl-plats li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--signal);
  flex-shrink: 0;
}

/* ---------- 平台面板内部节奏 ---------- */
.plat-h { margin-bottom: 10px; }

.plat-intro {
  max-width: 72ch;
  font-size: 15px;
  color: var(--text-dim);
  margin-bottom: clamp(20px, 3vw, 30px);
}

/* 客户端卡竖排流:单列大卡,卡间留轨距 */
.client-flow {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(18px, 2.6vw, 28px);
  margin-bottom: clamp(24px, 4vw, 40px);
}
.client-flow > * { min-width: 0; }

/* 客户端官方图标:预处理素材,固定尺寸原样显示 */
.client-head img {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
}

/* 系统要求速查块 */
.req-block {
  margin-bottom: clamp(20px, 3vw, 28px);
}
.req-block h3 { margin-bottom: 12px; }

/* 面板内换乘链接与上方内容留距 */
.tab-cab .station-xfer { margin-top: 6px; }

/* FAQ 区引导语与折叠项之间的间距 */
#dl-faq .dim { margin-bottom: clamp(18px, 3vw, 28px); }

/* 窄屏:下载按钮占满整行,避免多按钮挤压 */
@media (max-width: 640px) {
  .client-get { flex-direction: column; align-items: stretch; }
  .client-get .btn { width: 100%; }
  .client-head img { width: 48px; height: 48px; }
}