/* Hub-only styles (optional) */
.th-heroGrid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
@media (min-width: 900px){
  .th-heroGrid{ grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
.th-heroCard{
  display:flex;
  gap:12px;
  align-items:center;
  text-decoration:none;
  color: inherit;
  padding: 12px;
  border-radius: 16px;
  border: 1px solid rgba(15,23,42,.10);
  background: rgba(255,255,255,.86);
}
.th-heroCard:hover{
  transform: translateY(-1px);
  box-shadow: 0 12px 30px rgba(15,23,42,.08);
}
.th-heroCard img{
  width: 54px;
  height: 54px;
  border-radius: 14px;
  object-fit: cover;
  border: 1px solid rgba(15,23,42,.10);
}
.th-heroCardName{ font-weight: 1000; }
.th-heroCardMeta{ display:flex; flex-wrap:wrap; gap:6px; margin-top:4px; }
