/* ===== TEACHERS LIST ===== */

.t-grid{
  display:grid;
  gap:14px;
  margin-top:14px;
  grid-template-columns: 1fr;
}

@media (min-width: 720px){
  .t-grid{ grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1040px){
  .t-grid{ grid-template-columns: repeat(3, 1fr); }
}

.t-card{ padding:14px; }

.t-top{ display:flex; gap:12px; align-items:center; }

.t-ava{
  width:56px;
  height:56px;
  border-radius:16px;
  border:1px solid var(--border);
  overflow:hidden;
  background:#f7f7f9;
  display:flex;
  align-items:center;
  justify-content:center;
  flex:0 0 auto;
}

.t-ava__img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.t-ava__placeholder{ font-size:20px; }

.t-info{ min-width:0; }

.t-name{ font-weight:800; line-height:1.15; }

.t-meta{
  margin-top:4px;
  font-size:13px;
  color:var(--muted);
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

.t-badge{
  margin-left:auto;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid var(--border);
  font-size:12px;
  font-weight:800;
  background:#fff;
}

.t-badge--pro{
  border:none;
  background:#111;
  color:#fff;
}

.t-empty{
  padding:18px;
  margin-top:14px;
  color:var(--muted);
}