/* ==========================================================================
   Clash镜像站 · 教程页专属样式(start.html)
   仅补充步骤锚点与「下一步」索引卡,其余全部复用 base/components。
   ========================================================================== */

/* 步骤区块:锚点跳转时与页顶留出呼吸距离 */
.tut-step{
  scroll-margin-top:24px;
}

/* 步骤编号铭牌:等宽小字,展签式细描边 */
.tut-no{
  display:inline-block;
  font-family:var(--font-mono);
  font-size:11px;
  font-weight:500;
  letter-spacing:.14em;
  color:var(--text-muted);
  background:var(--bg-panel);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:2px 10px;
  margin-right:12px;
  vertical-align:4px;
  white-space:nowrap;
}

/* 「配置完成之后」索引卡网格 */
.tut-next{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:16px;
  margin-top:26px;
}
.tut-next>*{min-width:0;}
.tut-next-item{
  display:block;
  background:var(--bg-panel);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:16px 18px;
}
.tut-next-item:hover{
  border-color:var(--text-muted);
}
.tut-next-name{
  font-family:var(--font-display);
  font-size:14.5px;
  font-weight:700;
  padding-bottom:8px;
  border-bottom:1px solid var(--hairline);
  margin-bottom:8px;
}
.tut-next-desc{
  font-size:12.5px;
  color:var(--text-muted);
  line-height:1.7;
}

@media (max-width:640px){
  .tut-next{
    grid-template-columns:1fr;
  }
  .tut-no{
    display:block;
    width:max-content;
    max-width:100%;
    margin-right:0;
    margin-bottom:10px;
    vertical-align:baseline;
  }
}