.team-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.team-card:hover {
  transform: translateY(-8px);
}

.team-img {
  position: relative;
  overflow: hidden;
}

.team-img img {
  width: 100%;
  height: auto;
}

.team-social {
  position: absolute;
  inset: 0;
  background: rgba(13,110,253,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  opacity: 0;
  transition: 0.3s;
}

.team-img:hover .team-social {
  opacity: 1;
}

.team-social a {
  color: #fff;
  font-size: 18px;
  width: 42px;
  height: 42px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.team-social a:hover {
  background: #fff;
  color: #0d6efd;
}

.team-info {
  padding: 25px 20px 30px;
}

.team-info h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

.team-info p {
  font-size: 14px;
  color: #6c757d;
  margin: 0;
}

.team-info .badge {
  display: inline-block;
  margin-bottom: 10px;
  padding: 6px 16px;
  background: #e7f1ff;
  color: #0d6efd;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
}

/* Featured Card */
.team-card.featured {
  background: #0d6efd;
}

.team-card.featured .team-info h4,
.team-card.featured .team-info p {
  color: #fff;
}

.team-card.featured .badge {
  background: rgba(255,255,255,0.2);
  color: #fff;
}
