.tool-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(260px,1fr));gap:20px;margin:20px 0}
.tool-card{border:1px solid #e5e7eb;border-radius:14px;overflow:hidden;box-shadow:0 1px 2px rgba(0,0,0,.05);background:#fff;display:flex;flex-direction:column}
.tool-card img{width:100%;height:160px;object-fit:cover;background:#f3f4f6}
.tool-card-body{padding:16px;display:flex;flex-direction:column;gap:10px}
.tool-badges{display:flex;flex-wrap:wrap;gap:8px}
.tool-badge{display:inline-block;padding:4px 10px;border-radius:999px;font-size:12px;border:1px solid #e5e7eb;background:#f9fafb}
.tool-price.badge-free{background:#ecfdf5;border-color:#a7f3d0}
.tool-price.badge-paid{background:#fef3c7;border-color:#fcd34d}
.tool-meta{font-size:13px;color:#6b7280}
.tool-title{margin:0;font-size:18px;line-height:1.3}
.tool-actions{margin-top:auto}
.tool-button{display:inline-block;text-decoration:none;border:1px solid #111827;border-radius:10px;padding:10px 14px;font-weight:600}
.tool-empty{padding:20px;border:1px dashed #d1d5db;border-radius:12px;background:#fbfbfb}

/* Related (single tool) */
.tool-related{margin-top:28px}
.tool-related h3{margin:0 0 12px 0;font-size:22px}
.tool-related-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(200px,1fr));gap:14px}
.tool-related-card{border:1px solid #e5e7eb;border-radius:12px;overflow:hidden;background:#fff}
.tool-related-card img{width:100%;height:110px;object-fit:cover;background:#f3f4f6}
.tool-related-body{padding:10px}
.tool-related-title{font-size:15px;margin:0 0 6px 0;line-height:1.3}
.tool-related-badges{display:flex;gap:6px;flex-wrap:wrap}

/* NEW: CTA box */
.tool-cta-box{
  margin-top:24px;
  padding:16px;
  border:1px solid #e5e7eb;
  border-radius:12px;
  background:#f9fafb;
}
.tool-cta-box p{margin:0 0 8px 0}

.tool-slogan{
  margin:8px 0 12px 0;
  font-size:1.05rem;
  color:#374151;
}

/* Pros & Cons */
.tool-pros-cons{margin-top:24px}
.tool-pros-cons .tpc-grid{
  display:grid !important;
  grid-template-columns:1fr 1fr !important;
  gap:20px !important;
}
@media (max-width:782px){
  .tool-pros-cons .tpc-grid{grid-template-columns:1fr !important;}
}
.tool-pros-cons .tpc-col{
  border:1px solid #e5e7eb;
  border-radius:12px;
  padding:12px;
  background:#fff;
}
.tool-pros-cons .tpc-col h3{margin:0 0 8px 0;font-size:18px}
.tool-pros-cons .tpc-list{margin:0;padding-left:18px}
.tool-pros-cons .tpc-list li{margin:6px 0}
.tool-pros-cons .tpc-empty{color:#6b7280;font-style:italic}
