.conseillers_cat {
    margin-bottom:20px;
}
.conseillers_cat h3 {
    color: var(--yellow-base);
}

.conseillers_liste {
  display:flex;
  margin-bottom:10px;
  width:100%;
  flex-wrap:wrap;
  justify-content:space-around;
}
.conseiller {
    flex:1;
    min-width:20%;
    margin:5px 0;
}
.conseiller_photo {
    background-color:#bbb;
    width:100%;
    max-width:120px;
    height:120px;
    border-radius:50%;
    margin:0 auto 10px auto;
    
    background-repeat:no-repeat;
    background-size:cover;
    background-position:center;
}
.conseiller_titre {
    text-align:center;
}
.conseiller_titre_0, .conseiller_titre_1 {
    text-align:center;
    font-weight:500;
}
.conseiller_role {
    text-align:center;
    color:#555;
    font-size:1.15rem;
}
.conseiller_commission {
    text-align:center;
    color:#888;
    font-size:1.2rem;
}

@media (max-width: 700px) {
  .conseiller {
    min-width:30%;  
  }

}