.team .team-member {
  background: #f9f9f9; 
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  padding-bottom: 20px;
}

.team .team-member:hover {
  transform: translateY(-5px);
}

.team .team-member .member-img {
  width: 100%;
  height: auto;
  border-radius: 12px 12px 0 0;
  overflow: hidden;
}

.team .team-member .member-img img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px 12px 0 0;
  object-fit: cover;
}

.team .team-member .social {
  position: absolute;
  top: -18px;
  left: 0;
  right: 0;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}

.team .team-member .social a {
  color: #fff;
  background: var(--color-primary);
  margin: 0 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  transition: background 0.3s;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.team .team-member .social a:hover {
  background: var(--color-primary-light);
}

.team .team-member .member-info {
  padding: 25px 15px;
  text-align: center;
  background: #fff;
  border-radius: 0 0 12px 12px;
  margin-top: -20px;
}