.welo-rouleurs {
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    gap: 15px;
}

.welo-rouleur {
    width: max(325px, 30%);
    padding: 2em 1em;
    border-radius: 9em;
    text-align: center;
}

.welo-rouleur:nth-child(3n +1) {
    background: var(--green-mint);
}

.welo-rouleur:nth-child(3n + 2) {
    background: var(--green);
    color: var(--white);
}

.welo-rouleur:nth-child(3n + 3) {
    background: var(--medium-green);
    color: var(--white);
}

.welo-rouleur-name {
    font-size: var(--fs-40);
    margin-bottom: 0.25em;
    font-weight: 700;
}

.welo-rouleur-function {
    margin-bottom: 0.25em;
    font-weight: 600;
}

.welo-rouleur-description {
    margin-bottom: 1em;
}