/* ============================================================
   article-t2.css - 文章模板 T2（Informational · 教程型）
   布局：居中宽正文，无侧边栏
   点缀：步骤编号 + 左侧竖线时间轴
   主色微调：深海蓝变亮，强调色为海玻璃蓝
   ============================================================ */

.article-page {
  max-width: 860px;
  margin: 0 auto;
  padding: var(--space-6) var(--space-5);
}

.article-main h1 {
  font-size: clamp(1.7rem, 3.5vw, 2.3rem);
  color: var(--c-deep);
  line-height: 1.3;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-4);
  text-align: center;
}

.article-main h2 {
  border-top: none;
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.article-main h2::before {
  content: '';
  display: inline-block;
  width: 12px;
  height: 12px;
  background: var(--c-sea-glass);
  border-radius: 50%;
  flex-shrink: 0;
}

.tutorial-step {
  display: flex;
  gap: var(--space-4);
  margin-bottom: var(--space-5);
  position: relative;
}

.tutorial-step::before {
  content: '';
  position: absolute;
  left: 23px;
  top: 44px;
  bottom: -20px;
  width: 2px;
  background: var(--c-sand);
}

.tutorial-step:last-child::before {
  display: none;
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--c-deep);
  color: var(--c-white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.step-content {
  flex: 1;
  padding-top: var(--space-2);
}

.step-content h3 {
  margin-top: 0;
  margin-bottom: var(--space-2);
  color: var(--c-deep);
}

.article-cta {
  margin: var(--space-5) 0;
  background: var(--c-white);
  border-radius: var(--radius-lg);
  border: 2px solid var(--c-sea-glass);
  padding: var(--space-5);
  text-align: center;
}

.article-cta p {
  font-size: 0.9rem;
  color: var(--c-text-soft);
  margin-bottom: var(--space-3);
}

@media (max-width: 768px) {
  .article-page {
    padding: var(--space-4);
  }

  .tutorial-step {
    gap: var(--space-3);
  }

  .step-number {
    width: 40px;
    height: 40px;
    font-size: 0.95rem;
  }

  .tutorial-step::before {
    left: 19px;
    top: 36px;
  }
}