/* =========================================================
   product.css - Product/Category page only
   ========================================================= */

/* 这里只放栏目页特有布局，不重复 base 的卡片/FAQ/评价等 */
.product-layout{
  display:grid;
  grid-template-columns: 1.45fr 1fr;
  gap:18px;
  align-items:start;
}
@media (max-width: 1100px){
  .product-layout{grid-template-columns:1fr}
}

/* 右侧价格卡/合作伙伴/需要帮助（如果你栏目页还有这些卡） */
.aside-stack{display:grid;gap:12px}
.aside-card{
  padding:16px;
  border-radius:22px;
  border:1px solid var(--line);
  background:var(--card);
}
.aside-tt{font-weight:900;font-size:16px}
.aside-dd{margin-top:8px;color:var(--muted2);font-size:13px;line-height:1.75}

/* 栏目页正文内容更易读 */
.article-content{
  padding:18px;
  border-radius:22px;
  border:1px solid var(--line);
  background:var(--card);
}
.article-content h2{font-size:22px;margin:12px 0 8px;font-weight:900}
.article-content h3{font-size:16px;margin:14px 0 6px;font-weight:900}
.article-content p{color:rgba(255,255,255,.72);line-height:1.9;margin:10px 0}
.article-content ul{margin:10px 0;padding-left:18px}
.article-content li{margin:8px 0;color:rgba(255,255,255,.72);line-height:1.85}
