/* Başta gizle; JS doğru yere taşıyınca görünecek */
.tutor-badges{ display:none; }

/* 6 sütun ızgara */
.tutor-badges.mounted{
  display:grid;
  grid-template-columns:repeat(6,minmax(0,1fr));
  gap:12px;
  margin-bottom:16px; /* thumb ile aralık */
}
.tutor-badge{
  display:flex; align-items:center; gap:8px;
  padding:10px 12px;
  border:1px solid rgba(0,0,0,.08);
  border-radius:12px;
  background:#fff;
}
.tutor-badge img{ width:32px; height:32px; object-fit:contain; }
.tutor-badge h3{ font-size:14px; margin:0; line-height:1.2; }

/* Responsive kırılımlar */
@media (max-width:1024px){ .tutor-badges.mounted{ grid-template-columns:repeat(3,1fr);} }
@media (max-width:640px){ .tutor-badges.mounted{ grid-template-columns:repeat(2,1fr);} }
