/* TEAM SECTION */
.team {
  padding: 4rem 0;
  background: #f9fbfd;
  text-align: center;
}

.team h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  background: linear-gradient(90deg, #022a44, #1d6fa5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.team .grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.team-member {
  background: #fff;
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;

  /* center all content */
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.team-member:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.team-member img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 1rem;
  border: 4px solid #0284C7;

  /* ensure image is centered */
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.team-member h3 {
  font-size: 1.25rem;
  margin: 0.5rem 0 0.25rem;
  color: #022a44;
}

.team-member p {
  font-size: 0.95rem;
  color: #555;
}
