.Corps {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    padding: 0rem 1rem 3rem 0;
    font-family: "Lexend", sans-serif;
}

/* Carte principale */
.person-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    width: 80%;
    max-width: 1000px;
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 20px;
    padding: 1.5rem;
    color: white;
    backdrop-filter: blur(6px);
    box-shadow: 0 0 15px rgba(0,0,0,0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.person-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.071);
}

/* Partie gauche : photo + infos */
.person-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center; /* ✅ centre verticalement tout le contenu */
    text-align: center;
    min-width: 180px;
    margin-right: 2rem;
}

.person-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    /* border: 3px solid white; */
    margin-bottom: 1rem;
}

.person-name {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 600;
}

.person-role {
    margin: 0;
    font-size: 1rem;
    color: #ccc;
}

/* Partie droite : texte de description */
.person-right {
    flex: 1;
}

.person-right p {
    color: white;
    font-size: 1rem;
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 700px) {
    .person-card {
        flex-direction: column;
        text-align: center;
    }

    .person-left {
        margin-right: 0;
        margin-bottom: 1rem;
    }

    .person-right {
        width: 100%;
    }
}

/* Cas avec deux photos */
.person-left.double {
    justify-content: center; /* ✅ force aussi le centrage vertical */
}

.photo-group {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

/* Deux photos plus petites mais occupant la même zone globale */
.person-left.double .person-photo {
    width: 85px;
    height: 85px;
    border-radius: 50%;
    object-fit: cover;
    /* border: 3px solid white; */
}

/* EFFET TEXT */
.spreadsheet-link {
    color: #36ab00;
    text-decoration: underline;
    font-weight: 600;
    position: relative;
}

.highlight {
    color: #ffa500;
}

.reflet-text {
    display: inline-block;
    font-weight: 700;
    /* font-size: 2rem; */
    background: linear-gradient(
        to right,
        #ffa500,
        #cc7a00,
        #663300,
        #cc7a00,
        #ffa500
    );
    background-size: 200%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: refletMove 4s linear infinite;
    text-shadow: 0 0 10px rgba(255, 165, 0, 0.3);
}

@keyframes refletMove {
    100% { background-position: -50% 50%; }
    0% { background-position: 150% 50%; }
}



/* Séparation entre catégories */
.category-separator {
    width: 80%;
    max-width: 1000px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin: 0rem 0 0rem 0;
}

.category-separator::before,
.category-separator::after {
    content: "";
    flex: 1;
    height: 2px;
    background: linear-gradient(to right, transparent, rgba(255,165,0,0.7), transparent);
    margin: 0 0rem;
}

.category-title {
    font-family: "Lexend", sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #ffa500;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    white-space: nowrap;
    text-shadow: 0 0 5px rgba(0, 0, 0, 1);
}
