.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px 20px;
  justify-items: center;
  align-items: start;
  margin-top: 20px;
  margin-bottom: 40px;
}

.team-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
}

.team-photo-wrapper {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  overflow: hidden;
  border: 0px solid #126872;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 12px;
}

.team-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.team-name {
  font-size: 20px;
  font-weight: 700;
  margin: 6px 0 2px 0;
  color: #1a1a1a;
}

.team-organization {
  font-size: 18px;
  color: #666;
  margin: 0 0 2px 0;
}

.team-designation {
  font-size: 18px;
  color: #333;
  font-weight: 500;
  margin: 0;
}

/* Intermediate screens (tablets) */
@media (max-width: 991px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile screens 499px and below */
@media (max-width: 499px) {
  .team-grid {
    grid-template-columns: 1fr;
    gap: 25px 0;
  }

  .team-photo-wrapper {
    width: 280px;
    height: 280px;
  }
}


/* Remove default focus outline and selection box */
.team-card,
.team-card:focus,
.team-card:active,
.team-card * {
  outline: none !important;
  box-shadow: none;
  -webkit-tap-highlight-color: transparent;
}