.mh-city-teachers {
  margin-top: 32px;
  padding: 28px;
  border: 1px solid #bae6fd;
  border-radius: 18px;
  background: #f8fdff;
}

.mh-city-teachers .section-heading-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
}

.mh-city-teachers h2 {
  margin: 4px 0 0;
  color: #0f172a;
}

.mh-teacher-empty {
  padding: 18px 20px;
  border: 1px dashed #7dd3fc;
  border-radius: 12px;
  background: #fff;
  color: #475569;
}

.mh-teacher-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.mh-teacher-card {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 14px;
  padding: 18px;
  border: 1px solid #bae6fd;
  border-radius: 14px;
  background: #fff;
}

.mh-teacher-card h3 {
  margin: 0 0 6px;
}

.mh-teacher-card p {
  margin: 0 0 12px;
  color: #475569;
}

.mh-teacher-avatar {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #e0f2fe;
  color: #0369a1;
  font-size: 22px;
  font-weight: 800;
}

.mh-teacher-meta {
  color: #0369a1 !important;
  font-size: 14px;
  font-weight: 700;
}

@media (max-width: 680px) {
  .mh-city-teachers {
    padding: 20px 16px;
  }

  .mh-city-teachers .section-heading-row {
    align-items: stretch;
    flex-direction: column;
  }

  .mh-teacher-grid {
    grid-template-columns: 1fr;
  }

  .mh-teacher-card {
    grid-template-columns: 44px minmax(0, 1fr);
  }

  .mh-teacher-avatar {
    width: 44px;
    height: 44px;
  }
}
