.elementor-4463 .elementor-element.elementor-element-8d1a99d{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}/* Start custom CSS for html, class: .elementor-element-5521c7c */.hbc-full-org {
        background-color: #fcfcfc;
        padding: 60px 20px;
        font-family: 'Oswald', sans-serif;
    }

    .org-container {
        max-width: 1200px;
        margin: 0 auto;
    }

    .org-title {
        font-family: 'Archivo Black', sans-serif;
        font-size: 2.2rem;
        text-align: center;
        margin-bottom: 10px;
        text-transform: uppercase;
    }

    .org-title span { color: #2ecc71; }

    .org-intro {
        text-align: center;
        color: #777;
        margin-bottom: 40px;
    }

    /* Grille Principale (Les 5 premiers) */
    .org-grid-main {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 20px;
        margin-bottom: 60px;
    }
    
    /* Le conteneur qui porte la bordure */
.org-grid-main .member-photo-wrapper {
    width: 120px; 
    height: 120px;
    border-radius: 20px;
    border: 3px solid #2ecc71;  
    overflow: hidden;
    position: relative;
    background-color: #2ecc71;
}

/* L'image à l'intérieur */
.org-grid-main .member-photo {
    width: 101%; 
    height: 101%;
    object-fit: cover;
    object-position: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

    /* Grille Secondaire (Les 11 autres) */
    .org-grid-secondary {
        display: grid;
        grid-template-columns: repeat(3, 1fr); 
        gap: 25px;
    }

    /* Style des petites cartes pour les 11 membres */
    .member-card-small {
        background: white;
        border-radius: 15px;
        padding: 15px;
        display: flex;
        align-items: center;
        gap: 20px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        border: 1px solid #eee;
    }

    .member-photo-wrapper-small {
        width: 60px;
        height: 60px;
        flex-shrink: 0;
    }

    .member-photo-wrapper-small .member-photo {
        width: 100%;
        height: 100%;
        border-radius: 50%;
        object-fit: cover;
        border: 2px solid #2ecc71;
    }

    .role-tag {
        display: block;
        font-size: 0.7rem;
        font-weight: 700;
        color: #2ecc71;
        text-transform: uppercase;
        margin-bottom: 3px;
    }

    .member-info-small h4 {
        margin: 0;
        font-size: 1rem;
        font-weight: 700;
        color: #333;
    }

    .org-divider {
        border: 0;
        height: 1px;
        background: #eee;
        margin: 60px 0;
    }
    
    .member-card-small.honor {
    background: #f0fff4;
    border: 1px dashed #2ecc71;
}

    /* Responsive */
    @media (max-width: 1024px) {
        .org-grid-main { grid-template-columns: repeat(3, 1fr); }
        .org-grid-secondary { grid-template-columns: repeat(2, 1fr); }
    }

    @media (max-width: 768px) {
        .org-grid-main { grid-template-columns: repeat(2, 1fr); }
        .org-grid-secondary { grid-template-columns: 1fr; }
    }/* End custom CSS */