.personnel-tiles-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    overflow: visible;
}

.personnel-tiles-main-wrapper,
.personnel-tiles-item-wrapper {
    position: absolute;
    overflow: visible;
    left: 0;
    top: 0;
}

.personnel-tiles-main-tile,
.personnel-tiles-item {
    position: relative;
    width: 100%;
    height: 100%;
    clip-path: polygon(
        /* Sommet haut-gauche (5 points) */
        26% 1.6%,
        27% 0.6%,
        28% 0.2%,
        29% 0%,
        30% 0%,
        /* Bord haut */
        70% 0%,
        /* Sommet haut-droite (5 points) */
        71% 0%,
        72% 0.2%,
        73% 0.6%,
        74% 1.6%,
        /* Sommet droite (5 points) */
        99% 46%,
        99.4% 48%,
        99.7% 49.4%,
        99.8% 50%,
        99.7% 50.6%,
        99.4% 52%,
        99% 54%,
        /* Sommet bas-droite (5 points) */
        74% 98.4%,
        73% 99.4%,
        72% 99.8%,
        71% 100%,
        70% 100%,
        /* Bord bas */
        30% 100%,
        /* Sommet bas-gauche (5 points) */
        29% 100%,
        28% 99.8%,
        27% 99.4%,
        26% 98.4%,
        /* Sommet gauche (5 points) */
        1% 54%,
        0.6% 52%,
        0.3% 50.6%,
        0.2% 50%,
        0.3% 49.4%,
        0.6% 48%,
        1% 46%
    );
}

.personnel-tiles-photo {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.personnel-tiles-main-tile {
    display: flex;
    align-items: center;
    justify-content: center;
}

.personnel-tiles-text-container {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.personnel-tiles-main-person-info {
    text-align: center;
}


.personnel-tiles-main-person-name {
    color: white;
    font-size: 36px;
    line-height: 2rem;
    font-weight: bold;
    margin: 0 0 10px 0;
    text-align: center;
}

.personnel-tiles-main-person-role {
    color: white;
    font-size: 24px;
    margin: 0;
    text-align: center;
    opacity: 0.9;
}

.personnel-tiles-text {
    color: white;
    text-align: center;
    font-size: 32px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    white-space: pre-line;
}

.personnel-tiles-item {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.personnel-tiles-item:hover {
    transform: scale(1.05);
}

.personnel-tiles-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 20px;
}

.personnel-tiles-item:hover .personnel-tiles-overlay {
    opacity: 1;
}

.personnel-tiles-name {
    color: white;
    font-size: 24px;
    font-weight: bold;
    margin: 0 0 10px 0;
    text-align: center;
}

.personnel-tiles-role {
    color: white;
    font-size: 18px;
    margin: 0;
    text-align: center;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .personnel-tiles-wrapper {
        padding: 20px 10px;
    }
    
    .personnel-tiles-main-text {
        font-size: 24px;
    }
    
    .personnel-tiles-name {
        font-size: 20px;
    }
    
    .personnel-tiles-role {
        font-size: 16px;
    }
}
