/* ===================================================
   QUI SOMMES-NOUS — Styles spécifiques
   =================================================== */

/* Liste membres de l'équipe */
.simple-list {
    list-style: none;
    padding: 0;
}

.simple-list li {
    margin-bottom: 0.5rem;
}

/* Section équipe : image + texte côte à côte */
#team {
    flex-direction: row;
    justify-content: space-around;
}

#team img {
    height: 80%;
}

/* ===================================================
   RESPONSIVE
   =================================================== */
@media (max-width: 768px) {
    #team {
        flex-direction: column;
        align-items: center;
    }

    #team img {
        height: auto;
        width: 80%;
        max-width: 300px;
        margin-bottom: 1rem;
    }
}
