/* ============================================================
   article-t7.css - 文章模板 T7（Commercial · 清单/推荐型）
   布局：单栏 + 编号清单
   点缀：编号清单项 + 产品评分条
   主色微调：深海蓝加深，强调色为导航橙
   ============================================================ */

.article-page {
  max-width: 900px;
  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);
  margin-bottom: var(--space-5);
}

.article-main h2 {
  border-top: none;
  color: var(--c-deep);
}

.article-main h2::before {
  content: '🏆 ';
}

.pick-list {
  list-style: none;
  margin: var(--space-5) 0;
  padding: 0;
}

.pick-list-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-4);
  background: var(--c-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: var(--space-5);
  margin-bottom: var(--space-4);
  transition: all var(--duration-base) var(--ease-out);
}

.pick-list-item:hover {
  box-shadow: var(--shadow-md);
}

.pick-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--c-deep), var(--c-deep-2));
  color: var(--c-white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: 50%;
}

.pick-content h3 {
  margin: 0 0 var(--space-2);
  font-size: 1.05rem;
}

.pick-content p {
  margin-bottom: 0;
  font-size: 0.9rem;
  color: var(--c-text-soft);
}

.product-score-bar {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin: var(--space-3) 0;
}

.product-score-bar .score-track {
  flex: 1;
  height: 6px;
  background: var(--c-deck-2);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.product-score-bar .score-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--c-orange), var(--c-sand));
  border-radius: var(--radius-full);
}

.product-score-bar .score-label {
  font-family: var(--font-mono);
  font-weight: 700;
  color: var(--c-deep);
  font-size: 0.85rem;
}

.article-cta {
  margin: var(--space-5) 0;
  background: var(--c-deep);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  text-align: center;
}

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

  .pick-list-item {
    grid-template-columns: 1fr;
    text-align: center;
    gap: var(--space-3);
  }

  .pick-number {
    margin: 0 auto;
  }
}