/* ============================================
   article-t8.css - 文章模板 T8（Transactional 意图组）
   清单式推荐，产品编号排列，购买即所得
   ============================================ */

.article-main {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--space-4);
}

.article-container {
  display: block;
}

.article-body {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-primary);
}

.article-body h2 {
  font-size: var(--font-size-h2);
  color: var(--brand-primary-dark);
  margin: var(--space-8) 0 var(--space-3);
  border-bottom: 2px solid var(--brand-primary-light);
  padding-bottom: var(--space-2);
}

/* T8 特征：编号产品列表 */
.product-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  margin: var(--space-6) 0;
}

.product-item {
  display: flex;
  gap: var(--space-4);
  align-items: center;
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  transition: all 0.3s;
}

.product-item:hover {
  border-color: var(--brand-primary);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.product-number {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background: var(--brand-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.product-info {
  flex: 1;
}

.product-info h3 {
  margin-bottom: var(--space-1);
}

.product-info p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
}

.product-action .btn-cta {
  min-width: 140px;
  font-size: 0.9rem;
  padding: var(--space-2) var(--space-4);
}

.sidebar {
  margin-top: var(--space-8);
}

@media (max-width: 768px) {
  .product-item {
    flex-direction: column;
    text-align: center;
  }

  .product-action .btn-cta {
    width: 100%;
  }
}