.equipe-section {
    padding: 80px 0;
    background: #ffffff;
}

.container--narrow {
    max-width: 1000px;
    margin: 0 auto;
}

.eyebrow-minimal {
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 800;
    font-size: 0.75rem;
    display: block;
    margin-bottom: 0.5rem;
}

.team-minimal-layout {
    margin-top: 50px;
}

/* --- Common Member Style --- */
.member-minimal {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s ease;
}

.portrait-circle {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 1rem;
    border: 2px solid #f0f0f0;
    padding: 3px;
    background: white;
    transition: all 0.3s ease;
}

.portrait-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.member-info h3 {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--color-tertiary);
    margin-bottom: 0.2rem;
}

.member-info p {
    font-size: 0.75rem;
    color: #888;
    font-weight: 600;
    margin: 0;
    line-height: 1.3;
}

/* --- Leader Specific --- */
.team-leader {
    display: flex;
    justify-content: center;
    margin-bottom: 4rem;
}

.member-minimal.leader .portrait-circle {
    width: 120px;
    height: 120px;
    border-color: var(--color-primary);
}

.member-minimal.leader h3 {
    font-size: 1.2rem;
}

.member-minimal.leader p {
    color: var(--color-primary);
}

/* --- Grid --- */
.team-grid-refined {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem 2rem;
}

/* --- Hover --- */
.member-minimal:hover .portrait-circle {
    border-color: var(--color-primary);
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(248, 152, 0, 0.1);
}

@media (max-width: 900px) {
    .team-grid-refined {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 500px) {
    .team-grid-refined {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}


/* --- Connecteurs --- */
.org-connector-main {
    width: 2px;
    height: 60px;
    background: linear-gradient(to bottom, var(--color-primary), rgba(248, 152, 0, 0.2));
    position: relative;
}

/* --- Grille des 8 membres --- */
.org-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    width: 100%;
    padding: 0 20px;
}

@media (max-width: 1200px) {
    .org-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .equipe-section {
        padding: 50px 0;
    }

    .team-leader {
        margin-bottom: 2.5rem;
    }

    .team-minimal-layout {
        margin-top: 30px;
    }

    .org-connector-main {
        height: 35px;
    }

    .org-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .org-card.leader {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }

    .org-card.member {
        padding: 1rem;
    }
}