.ws-gouvernance-organisation {
    position: relative;
}

.ws-gouvernance-organisation__group .ws-gouvernance-organisation__group-title > * {
    color: var(--sporsora-primary-color);
    font-size: 18px;
    font-weight: 800;
    padding: 15px 0;
    text-transform: none;
}

.ws-gouvernance-organisation__member-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.ws-gouvernance-organisation__member {
    width: calc((100% - (3 * 10px)) / 4);
    min-height: 120px;
}

.ws-gouvernance-organisation__item {
    height: 100%;
    display: flex;
    gap: 15px;
    cursor: pointer;
    transition: opacity .3s ease-in-out;
}

.ws-gouvernance-organisation__item:hover {
    opacity: 0.7;
}

.ws-gouvernance-organisation__photo {
    width: 35%;
    max-height: 120px;
    max-width: 100px;
}

.ws-gouvernance-organisation__photo img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    filter: grayscale(100%);
}

.ws-gouvernance-organisation__society,
.ws-gouvernance-organisation__modal-society {
    text-transform: uppercase;
}

.ws-gouvernance-organisation__description {
    font-size: 12px;
    line-height: normal;
    flex: 1;
}

.ws-gouvernance-organisation__name {
    color: var(--sporsora-primary-color);
    font-weight: bold;
}

.ws-gouvernance-organisation__modal {
    width: 600px;
    height: auto;
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    background-color: #f5f5f6;
    border: solid 25px white;
    z-index: 10;
    padding: 15px;
    margin: 0 auto;
    transition: left 0.4s ease;
}

.ws-gouvernance-organisation__modal.visible,
#ws-gouvernance-organisation__bg-blur.visible {
    display: block;
}

.ws-gouvernance-organisation__modal-name {
    font-size: 18px;
    color: var(--sporsora-primary-color);
    line-height: normal;
    padding: 18px 0;
}

.ws-gouvernance-organisation__modal-society {
    font-size: 12px;
    font-weight: bold;
    line-height: normal;
}

.ws-gouvernance-organisation__modal-role {
    font-size: 12px;
    font-weight: bold;
    line-height: normal;
    padding: 12px 0;
}

.ws-gouvernance-organisation__modal-contact {
    font-size: 12px;
    line-height: normal;
}

.ws-gouvernance-organisation__modal-photo {
    font-size: 12px;
    line-height: normal;
    text-align: justify;
    padding-top: 12px;
}

.ws-gouvernance-organisation__modal-photo img {
    width: 120px;
    margin: 0 20px 20px 0;
    border: solid 20px white;
    float: left;
    filter: grayscale(100%);
}

.ws-gouvernance-organisation__modal-photo p {
    padding-bottom: 15px;
}

.ws-gouvernance-organisation__modal-close {
    position: absolute;
    right: -17px;
    top: -17px;
    font-size: 13px;
    cursor: pointer;
}

#ws-gouvernance-organisation__bg-blur {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #f5f5f6;
    opacity: 0.8;
    z-index: 9;
}

@media (max-width: 768px) {
    .ws-gouvernance-organisation__member {
        width: 100%;
        height: auto;
    }

    .ws-gouvernance-organisation__photo {
        width: 259px;
    }

    .ws-gouvernance-organisation__photo img {
        max-width: 100%;
        max-height: 100%;
    }

    .ws-gouvernance-organisation__modal {
        width: 100%;
    }

    body.ws-header-menu-mobile-open .ws-gouvernance-organisation__modal {
        left: -100%;
    }
}