/* general */
body {
    display: flex;
    flex-direction: column;
    align-items: center;
}

main {
    color: var(--main-color);
    box-sizing: border-box;
    margin: 0 calc(var(--marge) * 2);
    padding: 40px 0;
    max-width: 1100px;
}


/* header page */
header.page {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
    text-align: center;
    color: var(--second-color);
}

header.page * {
    margin: 0;
    text-transform: uppercase;
    text-align: center;
    line-height: 1;
}


/* règles generales articles */
.etiquette {
    padding-top: 45px;
    margin-top: 40px;
    /* margin-bottom: 20px; */
}

.etiquette::after {
    --translate: var(--marge);
    --corps: 1.40rem;
    --interlignage: 1.80rem;
    padding: 2px 12px;

    content: var(--content);
    transform: translate(calc(var(--marge) * -1), calc(var(--translate)*-1)) var(--rotate);
    background: var(--main-color);
    border: var(--border-width) solid var(--main-color);
}

.etiquette.gauche::after {
    --rotate: rotate(-3deg);
    --translate: calc(var(--marge) - 5px);
}

.etiquette.droite::after {
    --rotate: rotate(3deg);
    --translate: calc(var(--marge) + 1px);
}

.etiquette.droite {
    margin-top: 70px;
}



main>* {
    margin-bottom: 20px;
}

main>*:last-child {
    margin-bottom: 0;
}


/* presentation */
.presentation>* {
    margin-bottom: 20px;
}

.presentation>*:last-child {
    margin-bottom: 0;
}

.telechargements {
    margin: 20px 0 50px 0;
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 25%;
    justify-content: center;
}

.telechargements a[target="_blank"]::after {
    content: '↗' /'Externe';
    transform: scale(150%) translate(3px, -4px);
    display: inline-block;
}

/* règles colonnes */
.chapo {
    width: calc(50% - 20px);
    color: var(--second-color);
    margin-bottom: var(--marge);
}


/* style listes */
.liste {
    margin-bottom: 20px;
}

.liste:last-child,
.liste li:last-child {
    margin-bottom: 0;
}

.liste li:first-child {
    font-family: var(--bold_lucky);
    font-weight: normal;
    list-style-type: none;
}

.liste li {
    list-style-type: "• ";
}

.liste li i {
    font-family: var(--regular_lucky);
}

/* équipe */
.equipe {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    flex-wrap: wrap;
    gap: calc(var(--marge) * 1.5);
    padding-top: 60px;
}

.nom {
    text-transform: uppercase;
    color: var(--second-color);
    margin-bottom: 5px;
}

.membre .profil {
    width: 114px;
    float: left;
    margin-right: 13px;
}

@media (max-width: 2800px) {
    .equipe {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 2000px) {
    .equipe {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1180px) {
    main {
        width: 100%;
        padding: 20px;
    }

    .colonnes {
        column-count: 1;
        column-gap: 0;
    }

    .equipe {
        grid-template-columns: repeat(1, 1fr);
    }

    .chapo {
        width: 100%;
    }
}

@media (max-width: 600px) {
    .telechargements {
        margin: 40px 0 50px 0;
        display: flex;
        flex-flow: column nowrap;
        align-items: stretch;
    }

    .telechargements>* {
        min-width: unset;
        max-width: unset;
    }

    .equipe {
        gap: calc(var(--marge)* 2);
    }

    .membre {
        display: block;
        position: static;
    }

    .membre svg {
        width: 120px;
        height: auto;
        margin-bottom: 20px;
    }

    .etiquette::after {
        transform: translate(calc(var(--marge) * 0), calc(var(--marge)* -1)) var(--rotate);
    }
}