.pourquoi-adherer,
.comment-adherer {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    line-height: 2.5rem;
}

.pourquoi-adherer h2,
.comment-adherer h2 {
    margin-left: 0;
    margin-right: auto;
}

.pourquoi-adherer section div,
.pourquoi-adherer > p,
.pourquoi-adherer > div,
.comment-adherer .comment {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 1.6rem;
    background-color: #F8F8F8;
    border-radius: 6px;
    border: 1px solid #e9e9e9;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    box-sizing: border-box;
}

.comment-adherer > section:first-of-type {
    margin-bottom: 2rem;
}

.pourquoi-adherer > section:nth-child(even) {
    display: flex;
    flex-direction: column-reverse;
    gap: 1rem;
}

.pourquoi-adherer > section:nth-child(odd) {
    display:flex;
    flex-direction: column;
    gap: 1rem;
}

.pourquoi-adherer section img {
    width: 100%;
    border-radius: 6px;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
}

.pourquoi-adherer section,
.pourquoi-adherer > div:not(:last-child) {
    margin-bottom: 2rem;
}

.pourquoi-adherer section,
.pourquoi-adherer > p:not(:nth-of-type(2)),
.pourquoi-adherer > div {
    width: 100%;
}

.pourquoi-adherer section p {
    margin-bottom: 1rem;
}

.pourquoi-adherer section ul {
    list-style-type: disc;
    list-style-position: outside;
    padding-left: 2rem;
}

.pourquoi-adherer section h4,
.comment-adherer section h4 {
    margin-bottom: 1.5rem;
}


/* =========================
   DESKTOP VERSION
========================= */
@media (min-width: 1024px) {
    .pourquoi-adherer,
    .comment-adherer {
        width: 70%;
    }

    .pourquoi-adherer > section {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
        /* align-items: stretch; */
        box-sizing: border-box;
        gap: 2rem;
    }

    .pourquoi-adherer > section:nth-child(even),
    .pourquoi-adherer > section:nth-child(odd) {
        flex-direction: row;
    }

    .pourquoi-adherer section > div {
        align-self: stretch;
        flex: 1;
        min-width: 0;
    }

    .pourquoi-adherer section img {
        width: 40%;
        min-width: 28rem;
        flex-shrink: 0;
    }
}


/* =========================
   BIG DESKTOP VERSION
========================= */
@media (min-width: 1440px) {
    .pourquoi-adherer,
    .comment-adherer {
        width: 65vw;
    }

    .pourquoi-adherer section img {
        width: 30%;
    }
}