.Titre{
    color: var(--or);
    padding-bottom: 50px;
    font-family: var(--font-titre);
    font-size: clamp(30px, 6vw, 60px);
    font-weight: 400;
    letter-spacing: 0.08em;
    text-align: center;
}

.groupe1{
    display: flex;
    justify-content: center;
    gap: 200px;
}

.row{
    display: flex;
    justify-content: center;
    gap: 150px;
}

.membre, .membre-up, .membre-mid{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.membre, .membre-mid{
    margin-bottom: 50px;
}

.membre-mid{
    width: 400px;
    min-height: 350px;
}

.membre{
    width: 400px;
    min-height: 350px;
}

.membre-up img{
    width: 320px;
    height: 320px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--or);
    user-select: none;
}

.membre-mid img{
    width: 280px;
    height: 280px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--or);
    user-select: none;
}

.membre img{
    width: 240px;
    height: 240px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--or);
    user-select: none;
}

.name{
    color: var(--or);
    font-family: var(--font-titre);
    font-size: 34px;
    text-wrap: nowrap;
}

.name a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    vertical-align: middle;
    margin-left: 8px;
    color: var(--or);
    background-color: currentColor;
    -webkit-mask-image: url("../images/icon/instagram-logo.svg");
    mask-image: url("../images/icon/instagram-logo.svg");
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: 30px 30px;
    mask-size: 30px 30px;
    transition: color 0.2s ease;
}

.name a:hover {
    color: var(--or-clair);
}

.role{
    color: var(--texte-doux);
    font-size: 22px;
    margin-top: -15px;
}

.since{
    color: var(--texte-doux);
    font-size: 18px;
}

.citation{
    color: var(--or-clair);
    font-size: 18px;
}

@media (max-width: 768px) {

    .hero-banner {
        padding-bottom: 1em;
    }

    .Titre {
        margin-top: 0;
        padding-bottom: 0;
        font-size: 27px;
    }

    .Titre-1 {
        padding-bottom: 50px;
    }

    .separateur {
        width: 90%;
        margin: 20px auto;
    }

    .groupe1,
    .groupe2,
    .groupe3,
    .row {
        display: flex;
        flex-direction: column;
        gap: 50px;
    }

    .membre-up,
    .membre-mid,
    .membre {
        width: 90%;
        margin: 0 auto;
    }

    .membre-up img,
    .membre-mid img,
    .membre img {
        max-width: unset;
        width: 260px;
        height: 260px;
    }

    .name {
        margin: 10px 0 5px 0;
        font-size: 25px;
    }

    .name a {
        background-size: 24px;
        padding-right: 30px;
        padding-left: 5px;
        padding-top: 3px;
    }
}