.team-section { padding: 4rem 0; }

.section-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #6c757d;
  margin-bottom: 0.5rem;
}
.section-title { font-size: 2rem; font-weight: 500; margin-bottom: 1rem; }
.section-line { width: 40px; height: 3px; background: #178ec5; border-radius: 2px; }

.member-card {
  background: #fff;
  border: 0.5px solid rgba(0,0,0,0.1);
  border-radius: 12px;
  overflow: visible;
}

.card-top {
  background: #f8f9fa;
  padding: 2rem 1.5rem 3.5rem;
  position: relative;
    border-radius: 12px 12px 0 0; /* ← coins arrondis seulement en haut */
}
.card-top::after {
  /* content: ''; */
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  /* background: linear-gradient(90deg, #178ec5, #5db8e0); */
}

.avatar-wrap {
  width: 80px; height: 80px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,0.12);
  position: absolute;
  bottom: -36px; left: 50%;
  transform: translateX(-50%);
}
.avatar-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }

.card-body-team { padding: 3.5rem 1.5rem 1.25rem; }
.member-name { font-size: 15px; font-weight: 600; color: #1a1a2e; margin-top: 4px; }
.member-title { font-size: 13px; color: #6c757d; margin-bottom: 0; }

.card-footer-custom {
  padding: 0.75rem 1.5rem 1.25rem;
  border-top: 0.5px solid rgba(0,0,0,0.08);
   border-radius: 0 0 12px 12px; /* ← coins arrondis seulement en bas */
}
.member-email {
  font-size: 12px;
  color: #185FA5;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.member-email:hover { text-decoration: underline; }
