/* ===== LAYOUT ÉQUIPE ÉDITORIALE ===== */
.equipe-layout {
    display: flex;
    gap: 40px;
    padding: 60px 30px;
    max-width: 1200px;
    margin: 0 auto;
}
.equipe-main {
    flex: 1 1 70%;
    padding: 40px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    min-width: 300px;
    box-sizing: border-box;
}
.equipe-grid { display: flex; flex-direction: column; gap: 20px; }
.equipe-card {
    display: flex; align-items: center;
    background: #fff; border: 1px solid #e0e0e0; border-radius: 8px;
    padding: 15px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05); transition: box-shadow 0.3s ease;
}
.equipe-card:hover { box-shadow: 0 4px 12px rgba(0,0,0,0.1); }
.equipe-photo {
    flex-shrink: 0; width: 130px; height: 130px; background-color: #e0e0e0;
    border-radius: 50%; overflow: hidden; display: flex; align-items: center; justify-content: center; margin: 0 20px;
}
.photo-profil { width: 130%; height: 130%; object-fit: cover; border-radius: 50%; }
.equipe-infos { flex-grow: 1; }
.equipe-card h3 { font-size: 18px; margin: 10px 0; color: #222; }
.equipe-card p { margin: 0; color: #555; font-size: 14px; }
/* ===== MODAL PHOTO ÉQUIPE ===== */
.modal-photo {
    position: fixed; z-index: 9999; left: 0; top: 0; width: 100vw; height: 100vh;
    background: rgba(18, 21, 37, 0.86); display: flex; align-items: center; justify-content: center; flex-direction: column; transition: opacity 0.2s;
}
.modal-photo img { max-width: 340px; max-height: 75vh; border-radius: 16px; box-shadow: 0 8px 48px rgba(0,0,0,0.23); background: #fff; margin-bottom: 20px; }
.modal-photo-close {
    position: absolute; right: 22px; top: 16px; color: #fff; font-size: 2.6rem; font-weight: 700; cursor: pointer; z-index: 10001; background: rgba(0,0,0,0.15); border-radius: 50%; width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; transition: background 0.18s;
}
.modal-photo-close:hover { background: rgba(255,0,0,0.28); }
