body #secondaire:not(#header) div.medailles.contenu-large {
    display: flex;
    align-items: center;
    gap: 56px;
    margin-top: 40px;
    margin-bottom: 80px;
}

.medailles-texte {
    width: calc((400 * 100%) / 1160);
    line-height: 140%;
    text-align: left;
}

.medailles-texte a {
    color: #00C599;
}

.medailles-texte ul {
    padding-left: 20px;
    list-style: disc;

}

.medailles-texte ol {
    padding-left: 20px;
    list-style: decimal;
}

.medailles-texte > * {
    margin-bottom: 16px;
}

.medailles-liste {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.medailles-ligne {
    height: 76px;
    display: flex;
    align-items: center;
    gap: 40px;
}

.medailles-medaille {
    display: flex;
    height: 76px;
    min-width: 52px;
}

.medailles-medaille img {
    object-fit: contain;
}

.medailles-images {
    height: 34px;
    display: flex;
    gap: clamp(20px, 3vw, 40px);
}

.medailles-images a {
    font-size: 0;
}

.medailles-image {
    max-width: 100px;
    max-height: 34px;
}

.medailles-image img {
    height: 100%;
    width: 100%;
}

@media (max-width: 840px) {
    .medailles {
        flex-direction: column;
    }

    .medailles-texte {
        width: 100%;
    }

    .medailles-liste {
        gap: 40px;
    }

    .medailles-ligne {
        height: auto;
    }

    .medailles-images {
        height: 88px; /* 34px * 2 lignes + 20px gap */
        flex-wrap: wrap;
        row-gap: 20px;
        column-gap: 40px;
    }

    .medailles-image {
        width: calc((100% - 40px) / 2);
        max-width: none;
    }
}