/* container flex qui centre parfaitement les enfants */
.team-row {
  display: flex;
  justify-content: center;   /* centre horizontalement */
  align-items: center;       /* centre verticalement si hauteur définie */
  gap: 2rem;                 /* espacement entre les cartes */
  flex-wrap: wrap;           /* wrap sur mobile */
  padding: 1rem 0;
}

/* carte person */
.person-card {
  width: 260px;              /* largeur fixe pour un centrage visuel identique */
  display: flex;
  flex-direction: column;
  align-items: center;       /* centre le contenu à l'intérieur */
  text-align: center;
  padding: 1rem;
  box-sizing: border-box;
}

/* photo ronde, taille contrôlée */
.person-photo {
  width: 140px;
  height: 140px;
  object-fit: cover;
  border-radius: 50%;
  display: block;
  margin: 0 auto;
}

/* responsive : réduire la largeur sur petits écrans */
@media (max-width: 480px) {
  .person-card { width: 90%; max-width: 320px; }
  .person-photo { width: 120px; height: 120px; }
}

 .person-card {
    margin-bottom: 3rem;
    text-align: center;
    line-height: 1;
    padding: 1rem;
}

.person-card img {
    width: 60%;
}

.person-card h4 {
    font-weight: bolder;
    margin-top: 2rem;
    font-size: 18px;
}

.mt30 {
    text-align: center;
    font-weight: bolder;
}

.txt2 {
    font-weight: bolder;
    font-size: 20px;
}

.txt3 {
    font-weight: bolder;
    font-size: 20px;
}