.our-team {
  width: 100%;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  justify-items: center;
}

.team-member {
  text-align: center;
  max-width: 360px;
  display: flex;
  border-bottom: 4px solid #222222;
  position: relative;
}

.team-member::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 4px;
  background-color: var(--glow-color);
  transition: width 0.4s ease-in-out;
}
.team-member:hover::after {
  width: 100%;
}

.team-member img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
  object-fit: cover;
  filter: drop-shadow(
    0 0 15px color-mix(in srgb, var(--glow-color) 80%, transparent)
  );
}
