/* Consultant Tiles Grid (Responsive) */
.cps-tiles{
  display:grid;
  justify-content: center;
  grid-template-columns:repeat(auto-fill,minmax(240px,280px));
  gap:16px;
  align-items:stretch;
  width:100%;
}
.cps-tile{
  display:block;
  background:#fff;
  border:1px solid #e5e7eb;
  border-radius:16px;
  overflow:hidden;
  text-decoration:none;
  color:#111827;
  box-shadow:0 6px 18px rgba(30,64,175,.08);
  transition:transform .18s ease, box-shadow .18s ease;
}
.cps-tile:hover{ transform:translateY(-2px); box-shadow:0 10px 26px rgba(30,64,175,.12); }
.cps-tile-img{ width:100%; height:auto; display:block; object-fit:cover; aspect-ratio:4/3; }
.cps-tile-body{ padding:12px 14px; }
.cps-tile-name{ font-size:16px; font-weight:700; margin:0 0 4px; }
.cps-tile-job{ font-size:12px; color:#6b7280; margin:0; }

@media (max-width: 1024px){
  .cps-tiles{ grid-template-columns:repeat(auto-fill,minmax(220px,260px)); gap:14px; }
}
@media (max-width: 768px){
  .cps-tiles{ grid-template-columns:repeat(auto-fill,minmax(180px,220px)); gap:12px; }
}
@media (max-width: 640px){
  .cps-tiles{ grid-template-columns:1fr; gap:12px; }
  .cps-tile-img{ height:auto !important; }
}
/* کارت‌های فیلترشده نامرئی می‌شوند ولی جای‌شان در گرید می‌ماند */
.cps-tile.is-hidden{
  visibility: hidden;
  pointer-events: none;
  opacity: 0;
}
