.team-card-hover {
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}
.team-card-hover:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1) !important;
  border-color: var(--theme-color, #0d6efd);
}
.team-card-hover::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: var(--theme-color, #0d6efd);
  transition: all 0.3s ease;
}
.team-card-hover:hover::before {
  width: 5px;
}
.team-square-img {
  object-fit: cover !important;
  height: 180px !important;
  width: 180px !important;
  min-width: 180px !important;
  border-radius: 20px !important;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15) !important;
}
.team-featured {
  padding-left: 0 !important;
}
