.team-section-modern {
  padding: 24px 0 24px 0;
  background: #fff;
}
.team-section-title-modern {
  /* font-family removed, global font applies */
  font-size: 2.3rem;
  font-weight: 700;
  color: var(--hr-primary, #3B82F6);
  text-align: center;
  margin-bottom: 36px;
  letter-spacing: 0.5px;
}
.team-grid-modern {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
}
.team-card-modern {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px 0 rgba(35,64,142,0.10);
  padding: 32px 24px 24px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.2s, transform 0.2s;
  position: relative;
  min-height: 340px;
}
.team-card-modern:hover {
  box-shadow: 0 8px 32px 0 rgba(35,64,142,0.18);
  transform: translateY(-6px) scale(1.025);
}
.team-avatar-modern-wrap {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 2px 12px 0 rgba(35,64,142,0.10);
  margin-bottom: 18px;
  background: #eaf2ff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.team-avatar-modern {
  width: 92px;
  height: 92px;
  object-fit: cover;
  border-radius: 50%;
}
.team-card-body-modern {
  width: 100%;
  text-align: center;
}
.team-name-modern {
  font-size: 1.18rem;
  font-weight: 700;
  color: var(--hr-primary, #3B82F6);
  margin-bottom: 4px;
  font-family: var(--hr-font, 'Playfair Display', serif);
}
.team-role-modern {
  font-size: 1.01rem;
  color: var(--hr-primary, #3B82F6);
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: 0.2px;
}
.team-excerpt-modern {
  font-size: 0.98rem;
  color: #444;
  margin-bottom: 18px;
  min-height: 38px;
}
.team-social-modern {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 8px;
}
.team-social-modern a img {
  filter: grayscale(0.2) brightness(0.95);
  transition: filter 0.2s, transform 0.2s;
}
.team-social-modern a:hover img {
  filter: none;
  transform: scale(1.12);
}
@media (max-width: 700px) {
  .team-section-modern {
    padding: 36px 0 24px 0;
  }
  .team-section-title-modern {
    font-size: 1.5rem;
    margin-bottom: 22px;
  }
  .team-grid-modern {
    gap: 18px;
  }
  .team-card-modern {
    padding: 18px 8px 16px 8px;
    min-height: 260px;
  }
  .team-avatar-modern-wrap, .team-avatar-modern {
    width: 64px;
    height: 64px;
  }
}