.teacher-card {
  background: #fff;
  border-radius: var(--border-radius-lg);
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow-soft);
  transition: .35s;
  border: 1px solid var(--border-light);
  height: 100%;
}

.teacher-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.teacher-img-wrapper {
  width: 110px;
  height: 110px;
  margin: 0 auto 1.2rem;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--primary-light-green);
}

.teacher-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.teacher-name {
  font-weight: 700;
  color: var(--primary-deep-green);
}

.teacher-role {
  display: block;
  font-size: 0.9rem;
  color: var(--accent-gold);
  font-weight: 600;
}

.teacher-subject {
  font-size: 0.9rem;
  color: var(--text-medium);
}

.teacher-email {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  text-decoration: none;
  color: var(--primary-vibrant-green);
  font-weight: 600;
}

.teacher-email:hover {
  color: var(--accent-gold);
}