/* 早知测评 自定义CSS（PC+移动端自适应）
 * 版本：1.0
 * 创建时间：2026年6月19日
 * 说明：AI搜索优化专用样式
 */

/* --- 1. 【AI速览】一句话总结卡片样式 --- */
.za-summary-card {
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  color: white;
  padding: 1.5rem;
  border-radius: 12px;
  margin-bottom: 2rem;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.za-summary-card h3 {
  margin-top: 0;
  margin-bottom: 0.75rem;
  font-size: 1.125rem;
  font-weight: 600;
}

.za-summary-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.za-summary-item {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
  font-size: 0.9375rem;
}

.za-summary-item:last-child {
  margin-bottom: 0;
}

.za-summary-icon {
  margin-right: 0.75rem;
  font-size: 1.25rem;
}

/* --- 2. 产品对比表格样式 --- */
.za-comparison-table {
  margin: 2rem 0;
  padding: 1.5rem;
  background: #f8fafc;
  border-radius: 8px;
}

.za-comparison-table h3 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1.25rem;
  font-weight: 600;
  color: #1e293b;
}

.za-comparison-table table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.za-comparison-table th {
  background: #f1f5f9;
  font-weight: 600;
  color: #475569;
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid #e2e8f0;
}

.za-comparison-table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid #e2e8f0;
}

.za-comparison-table td:first-child {
  font-weight: 500;
  color: #1e293b;
}

/* --- 3. FAQ部分样式（手风琴式） --- */
.za-faq-section {
  margin: 2rem 0;
  padding: 1.5rem;
  background: #f8fafc;
  border-radius: 8px;
}

.za-faq-section h3 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1.25rem;
  font-weight: 600;
  color: #1e293b;
}

.za-faq-item {
  border-bottom: 1px solid #e2e8f0;
  padding: 1rem 0;
}

.za-faq-question {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 500;
  color: #1e293b;
}

.za-faq-question:hover {
  color: #3b82f6;
}

.za-faq-icon {
  transition: transform 0.3s ease;
  font-weight: bold;
}

.za-faq-answer {
  margin-top: 0.75rem;
  color: #475569;
  line-height: 1.6;
  display: none; /* 默认隐藏 */
}

.za-faq-item.active .za-faq-answer {
  display: block;
}

.za-faq-item.active .za-faq-icon {
  transform: rotate(45deg);
}

/* --- 4. TOP 3推荐卡片样式 --- */
.za-top3-recommendations {
  margin: 2rem 0;
}

.za-top3-recommendations h3 {
  margin-bottom: 1rem;
  font-size: 1.25rem;
  font-weight: 600;
  color: #1e293b;
}

.za-top3-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.za-top3-item {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  position: relative;
}

.za-top3-item.za-best-value {
  border: 2px solid #3b82f6;
}

.za-badge {
  background: #3b82f6;
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  position: absolute;
  top: -10px;
  right: -10px;
}

.za-top3-item h4 {
  margin: 0 0 0.75rem 0;
  font-size: 1rem;
  font-weight: 600;
  color: #1e293b;
}

.za-price {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 0.75rem;
}

.za-rating {
  color: #f59e0b;
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.za-pros {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.875rem;
  color: #475569;
}

.za-pros li {
  margin-bottom: 0.25rem;
}

.za-cta {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.5rem 1.25rem;
  background: #3b82f6;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 500;
}

.za-cta:hover {
  background: #2563eb;
  color: white;
  text-decoration: none;
}

/* --- 5. 移动端适配（768px以下） --- */
@media (max-width: 768px) {
  /* 【AI速览】一句话总结 */
  .za-summary-card {
    padding: 1.25rem;
    margin-bottom: 1.5rem;
  }

  .za-summary-card h3 {
    font-size: 1rem;
  }

  .za-summary-item {
    font-size: 0.875rem;
  }

  /* 对比表格 */
  .za-comparison-table {
    padding: 1rem;
    margin: 1rem 0;
  }

  .za-comparison-table table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
    border-radius: 4px;
  }

  .za-comparison-table th,
  .za-comparison-table td {
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
  }

  .za-comparison-table td:first-child {
    max-width: 200px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  /* TOP 3推荐 */
  .za-top3-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  /* FAQ */
  .za-faq-section {
    padding: 1rem;
    margin: 1rem 0;
  }

  .za-faq-section h3 {
    font-size: 1.125rem;
  }
}

/* --- 6. 移动端适配（480px以下，小屏幕） --- */
@media (max-width: 480px) {
  /* 对比表格：隐藏2-3列，简化显示 */
  .za-comparison-table th:nth-child(2),
  .za-comparison-table td:nth-child(2),
  .za-comparison-table th:nth-child(3),
  .za-comparison-table td:nth-child(3) {
    display: none;
  }
}
/* --- 7. 阅读进度条样式 --- */
.za-reading-progress-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: #e2e8f0;
  z-index: 9999;
}

.za-reading-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #3b82f6 0%, #1d4ed8 100%);
  transition: width 0.1s ease;
}

/* --- 8. 返回顶部按钮样式 --- */
.za-back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  color: white;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  transform: translateY(20px);
}

.za-back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.za-back-to-top:hover {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  transform: translateY(-3px);
}

/* 移动端适配：返回顶部按钮 */
@media (max-width: 768px) {
  .za-back-to-top {
    bottom: 1.5rem;
    right: 1.5rem;
    width: 45px;
    height: 45px;
    font-size: 1.25rem;
  }
}

/* --- 9. 推荐卡片CTA增强样式 --- */
.za-recommended-card {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  margin-bottom: 1.5rem;
  border: 1px solid #f1f5f9;
}

.za-recommended-card h4 {
  margin-top: 0;
  margin-bottom: 0.75rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: #1e293b;
}

.za-recommended-card .za-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1d4ed8;
  margin-bottom: 0.75rem;
}

.za-recommended-card .za-cta-button {
  display: inline-block;
  width: 100%;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
  margin-top: 1rem;
}

.za-recommended-card .za-cta-button:hover {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(59, 130, 246, 0.4);
  color: white;
  text-decoration: none;
}

/* 移动端适配：推荐卡片CTA */
@media (max-width: 768px) {
  .za-recommended-card {
    padding: 1.25rem;
  }
  
  .za-recommended-card .za-price {
    font-size: 1.25rem;
  }
}


/* === 2026-06-20 detail template optimization === */
.rd-wrap { background:#f6f8fb; padding:24px 0 40px; }
.rd-inner { max-width:1180px; margin:0 auto; padding:0 24px; }
.rd-layout { display:grid !important; grid-template-columns:minmax(0, 780px) 300px; gap:32px; align-items:start; }
.rd-content { min-width:0; background:transparent; padding:0; }
.rd-title { font-size:32px; line-height:1.28; font-weight:800; color:#111827; letter-spacing:-.02em; margin:18px 0 12px; }
.article-meta { display:flex; flex-wrap:wrap; gap:10px 18px; color:#6b7280; font-size:14px; margin:0 0 20px; }
.entry-content { font-size:17px; line-height:1.75; color:#1f2937; }
.entry-content p { margin:0 0 18px; }
.zz-decision-hero,.zz-comparison-section,.product-review-card,.author-signature,#faq.related-articles { background:#fff; border:1px solid #e5e7eb; border-radius:16px; box-shadow:0 8px 24px rgba(15,23,42,.05); }
.zz-decision-hero { padding:22px 24px; margin:22px 0 22px; border-left:5px solid #f97316; }
.zz-hero-kicker { display:inline-flex; align-items:center; height:24px; padding:0 10px; border-radius:999px; background:#fff7ed; color:#c2410c; font-size:12px; font-weight:800; margin-bottom:10px; }
.zz-decision-hero h2,.zz-section-head h2 { margin:0 0 8px; color:#111827; font-size:22px; line-height:1.35; }
.zz-decision-hero p,.zz-section-head p { margin:0; color:#4b5563; font-size:15px; line-height:1.7; }
.zz-hero-picks { display:flex; flex-wrap:wrap; gap:10px; margin-top:16px; }
.zz-pick-chip { display:inline-flex; align-items:center; gap:7px; min-height:38px; padding:0 12px; border:1px solid #fed7aa; background:#fffaf3; color:#7c2d12; border-radius:999px; text-decoration:none; font-size:13px; font-weight:650; max-width:100%; }
.zz-pick-chip span { color:#ea580c; font-weight:900; }
.zz-pick-chip em { color:#dc2626; font-style:normal; font-weight:900; }
.zz-comparison-section { padding:22px 24px; margin:0 0 28px; }
.zz-section-head { margin-bottom:16px; }
.zz-table-scroll { overflow-x:auto; -webkit-overflow-scrolling:touch; border:1px solid #e5e7eb; border-radius:12px; }
.zz-comparison-table { width:100%; min-width:760px; border-collapse:collapse; font-size:14px; background:#fff; }
.zz-comparison-table th { background:#f9fafb; color:#374151; font-weight:800; text-align:left; padding:13px 14px; border-bottom:1px solid #e5e7eb; white-space:nowrap; }
.zz-comparison-table td { padding:13px 14px; color:#374151; border-bottom:1px solid #f0f2f5; vertical-align:middle; line-height:1.55; }
.zz-rank-link { color:#f97316; font-weight:900; text-decoration:none; white-space:nowrap; }
.zz-table-cta { display:inline-flex; align-items:center; justify-content:center; min-height:34px; padding:0 14px; background:#f97316; color:#fff !important; border-radius:999px; font-size:13px; font-weight:800; text-decoration:none; white-space:nowrap; }
.product-review-card { padding:24px !important; margin:0 0 28px !important; overflow:hidden; }
.review-title { display:flex; align-items:flex-start; gap:12px; margin:0 0 18px !important; color:#111827 !important; font-size:22px !important; line-height:1.42 !important; font-weight:800 !important; }
.review-number { flex:0 0 auto; width:32px; height:32px; border-radius:50%; background:#ff315d; color:#fff; display:inline-flex; align-items:center; justify-content:center; font-size:16px; font-weight:900; }
.review-text { color:#e11d48; }
.review-layout { display:grid !important; grid-template-columns:minmax(0,1fr) 260px; gap:24px; align-items:start; }
.review-content-left { color:#1f2937; font-size:16px; line-height:1.78; }
.post-item-image { width:260px !important; max-width:100%; justify-self:end; display:flex; flex-direction:column; align-items:stretch; gap:12px; }
.post-item-image a:first-child { display:block; width:100%; background:#f9fafb; border:1px solid #eef0f3; border-radius:14px; overflow:hidden; }
.post-item-image img { width:100% !important; height:260px !important; max-height:260px !important; object-fit:contain; margin:0 !important; padding:8px; border:0 !important; border-radius:14px; background:#f9fafb; }
.coupon-card-list { display:grid !important; grid-template-columns:repeat(auto-fit,minmax(0,1fr)); gap:10px; width:100%; }
.coupon-card { min-height:46px; display:flex !important; align-items:center; justify-content:center; gap:7px; width:100%; border-radius:12px; padding:0 10px; color:#fff !important; text-decoration:none !important; font-size:14px; font-weight:900; box-shadow:0 6px 14px rgba(249,115,22,.22); }
.coupon-card-tb { background:#f97316; }
.coupon-card-jd { background:#dc2626; }
.coupon-card-logo { font-size:12px; padding:2px 5px; background:rgba(255,255,255,.2); border-radius:5px; }
.coupon-card-price { font-weight:900; }
.pros-cons-grid { display:grid !important; grid-template-columns:1fr 1fr; gap:18px; margin-top:22px; }
.pros-cons { border:1px solid #e5e7eb; border-radius:14px; overflow:hidden; background:#fff; }
.pros-cons > .icon-check,.pros-cons > .icon-cross { display:none; }
.pros-cons h3 { margin:0 !important; padding:13px 16px; color:#fff !important; font-size:16px !important; font-weight:900; }
.pros h3 { background:#05b928; }
.cons h3 { background:#d90429; }
.pros h3::before { content:"✓"; margin-right:8px; }
.cons h3::before { content:"✕"; margin-right:8px; }
.pros-cons ul { list-style:none; margin:0; padding:12px 16px; }
.pros-cons li { display:flex; align-items:flex-start; gap:8px; padding:9px 0; border-bottom:1px solid #f3f4f6; color:#374151; font-size:14px; line-height:1.5; }
.pros-cons li .icon-check,.pros-cons li .icon-cross { flex:0 0 auto; width:18px; height:18px; border-radius:50%; display:inline-flex; align-items:center; justify-content:center; color:#fff; font-size:11px; margin-top:1px; }
.pros-cons li .icon-check { background:#05b928; }
.pros-cons li .icon-cross { background:#d90429; }
.rd-sidebar { width:300px !important; position:sticky; top:88px; }
.rd-sidebar-inner { background:#fff; border:1px solid #e5e7eb; border-radius:16px; padding:16px; box-shadow:0 8px 24px rgba(15,23,42,.05); }
.widget-title, .rd-sidebar-title { font-size:16px !important; font-weight:900 !important; color:#111827 !important; margin:0 0 12px !important; padding-bottom:10px; border-bottom:1px solid #e5e7eb; }
.rd-sidebar-list { list-style:none; margin:0; padding:0; max-height:none !important; overflow:visible !important; }
.rd-sidebar-list li { margin:0; padding:8px 0; border-bottom:1px dashed #e5e7eb; }
.rd-sidebar-list a { display:block; color:#4b5563; font-size:13px; line-height:1.55; text-decoration:none; }
#faq.related-articles { padding:24px !important; background:#fff !important; border-radius:16px !important; }
#faq h3 { color:#111827 !important; font-size:20px !important; }
.rd-faq-list h4 { color:#0369a1 !important; font-size:16px !important; line-height:1.55; }
.rd-faq-list div { line-height:1.75; }
@media (max-width:1023px) { .rd-inner { max-width:820px; padding:0 24px; } .rd-layout { display:block !important; } .rd-sidebar { width:100% !important; position:static; margin-top:24px; } }
@media (max-width:767px) { .rd-wrap { padding:12px 0 28px; } .rd-inner { padding:0 16px; } .rd-title { font-size:24px !important; line-height:1.32; margin:14px 0 10px; } .article-meta { font-size:13px; gap:6px 12px; margin-bottom:16px; } .entry-content { font-size:16px !important; line-height:1.72; } .zz-decision-hero, .zz-comparison-section, .product-review-card, #faq.related-articles { border-radius:14px; padding:16px !important; margin-bottom:20px !important; } .zz-decision-hero h2, .zz-section-head h2 { font-size:20px; } .zz-hero-picks { flex-direction:column; gap:8px; } .zz-pick-chip { width:100%; justify-content:flex-start; border-radius:12px; } .zz-comparison-table { min-width:720px; font-size:14px; } .review-title { font-size:19px !important; gap:10px; margin-bottom:14px !important; } .review-number { width:30px; height:30px; font-size:15px; } .review-layout { display:block !important; } .review-content-left { font-size:15px; line-height:1.72; margin-bottom:16px; } .post-item-image { width:100% !important; justify-self:auto; } .post-item-image img { height:auto !important; max-height:260px !important; width:100% !important; } .coupon-card-list { grid-template-columns:repeat(2, minmax(0, 1fr)); } .coupon-card { min-height:48px; font-size:15px; border-radius:12px; } .pros-cons-grid { grid-template-columns:1fr; gap:14px; margin-top:18px; } .pros-cons h3 { font-size:15px !important; padding:12px 14px; } .pros-cons ul { padding:10px 14px; } .rd-sidebar-inner { padding:14px; border-radius:14px; } }
@media (max-width:374px) { .rd-inner { padding:0 14px; } .rd-title { font-size:22px !important; } .coupon-card-list { grid-template-columns:1fr; } .zz-comparison-table { min-width:680px; } }
/* detail template fix: avoid duplicated pros/cons symbols in headings */
.pros h3::before,
.cons h3::before { content:none !important; margin-right:0 !important; }

/* detail template final overrides: keep one clean layout after legacy rules */
body.single .rd-inner {
    max-width: 1180px !important;
    margin: 0 auto !important;
    padding: 0 24px !important;
}

body.single .rd-layout {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) 300px !important;
    gap: 32px !important;
    align-items: start !important;
}

body.single .rd-layout > .rd-content {
    width: auto !important;
    max-width: none !important;
    flex: initial !important;
    min-width: 0 !important;
    padding: 0 !important;
    background: transparent !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}

body.single .rd-layout > .rd-sidebar {
    width: 300px !important;
    max-width: 300px !important;
    flex: initial !important;
}

body.single .zz-decision-hero,
body.single .zz-comparison-section,
body.single .product-review-card,
body.single .author-signature,
body.single #faq.related-articles {
    background: #fff !important;
    border: 1px solid #e5e7eb !important;
    border-radius: 16px !important;
    box-shadow: 0 8px 24px rgba(15,23,42,.05) !important;
}

body.single .product-review-card {
    width: auto !important;
    margin: 0 0 28px !important;
    padding: 24px !important;
    overflow: hidden !important;
    transform: none !important;
}

body.single .product-review-card:hover {
    transform: none !important;
    box-shadow: 0 8px 24px rgba(15,23,42,.05) !important;
}

body.single .review-layout {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) 260px !important;
    gap: 24px !important;
    align-items: start !important;
}

body.single .post-item-image {
    width: 260px !important;
    max-width: 100% !important;
    justify-self: end !important;
}

body.single .post-item-image .coupon-card,
body.single .post-item-image .coupon-card:first-child {
    min-height: 48px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    width: 100% !important;
    border: 0 !important;
    border-radius: 12px !important;
    padding: 0 12px !important;
    color: #fff !important;
    text-decoration: none !important;
    font-size: 15px !important;
    font-weight: 900 !important;
    box-shadow: 0 8px 18px rgba(249, 115, 22, .24) !important;
}

body.single .post-item-image .coupon-card-tb,
body.single .post-item-image .coupon-card-tb:first-child {
    background: #f97316 !important;
}

body.single .post-item-image .coupon-card-jd,
body.single .post-item-image .coupon-card-jd:first-child {
    background: #dc2626 !important;
}

body.single .post-item-image .coupon-card-text,
body.single .post-item-image .coupon-card-price {
    color: #fff !important;
}

@media (max-width: 1023px) {
    body.single .rd-inner {
        max-width: 820px !important;
    }

    body.single .rd-layout {
        display: block !important;
    }

    body.single .rd-layout > .rd-sidebar {
        width: 100% !important;
        max-width: none !important;
        position: static !important;
        margin-top: 24px !important;
    }
}

@media (max-width: 767px) {
    body.single .rd-inner {
        padding: 0 16px !important;
    }

    body.single .zz-decision-hero,
    body.single .zz-comparison-section,
    body.single .product-review-card,
    body.single #faq.related-articles {
        border-radius: 14px !important;
        padding: 16px !important;
        margin-bottom: 20px !important;
    }

    body.single .review-layout {
        display: block !important;
    }

    body.single .post-item-image {
        width: 100% !important;
        justify-self: auto !important;
    }
}

/* detail density pass 2026-06-20: reduce desktop page length without hiding article content */
@media (min-width: 1024px) {
    body.single .zz-comparison-section {
        padding: 18px 20px;
        margin-bottom: 22px;
    }

    body.single .zz-section-head {
        margin-bottom: 12px;
    }

    body.single .zz-comparison-table {
        table-layout: fixed;
        min-width: 700px;
        font-size: 13px;
    }

    body.single .zz-comparison-table th,
    body.single .zz-comparison-table td {
        padding: 9px 10px;
        line-height: 1.45;
    }

    body.single .zz-comparison-table th:nth-child(1),
    body.single .zz-comparison-table td:nth-child(1) {
        width: 30%;
    }

    body.single .zz-rank-link {
        display: -webkit-box;
        white-space: normal;
        overflow: hidden;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
    }

    body.single .product-review-card {
        padding: 18px 20px !important;
        margin-bottom: 22px !important;
    }

    body.single .review-title {
        padding: 0 !important;
        margin-bottom: 12px !important;
        font-size: 20px !important;
        line-height: 1.38 !important;
    }

    body.single .review-layout {
        grid-template-columns: minmax(0, 1fr) 240px !important;
        gap: 22px !important;
        margin-bottom: 16px !important;
    }

    body.single .post-item-image {
        width: 240px !important;
        align-self: start;
    }

    body.single .post-item-image img {
        width: 220px !important;
        max-width: 220px !important;
        height: 220px !important;
        max-height: 220px !important;
        padding: 6px;
    }

    body.single .coupon-card-list {
        width: 240px !important;
        margin-top: 10px !important;
        gap: 8px !important;
    }

    body.single .post-item-image .coupon-card,
    body.single .post-item-image .coupon-card:first-child {
        min-height: 42px !important;
        border-radius: 10px !important;
        padding: 0 8px !important;
        font-size: 13px !important;
    }

    body.single .pros-cons-grid {
        margin-top: 14px;
        gap: 14px;
    }

    body.single .pros-cons h3 {
        padding: 10px 12px;
        font-size: 15px !important;
    }

    body.single .pros-cons ul {
        padding: 10px 12px;
    }

    body.single .pros-cons li {
        margin-bottom: 6px;
        font-size: 14px;
        line-height: 1.5;
    }
}

/* keep comparison rows compact: auto columns avoid excessive title wrapping */
@media (min-width: 1024px) {
    body.single .zz-comparison-table {
        table-layout: auto;
        min-width: 760px;
    }

    body.single .zz-rank-link {
        display: inline;
        white-space: nowrap;
        overflow: visible;
        -webkit-line-clamp: unset;
        -webkit-box-orient: initial;
    }
}
