/* ==========================================================================
   /css/compagnie.css - STYLE SPÉCIFIQUE À LA PAGE COMPAGNIE
   ========================================================================== */
.layout-histoire {
    align-items: center;
    margin-top: 40px;
    margin-bottom: 60px;
}

.histoire-text {
    font-size: 1.05rem;
    text-align: justify;
}

.histoire-text p {
    margin-bottom: 20px;
}

.histoire-image img {
    width: 100%;
    display: block;
    padding: 0;
}

.titre-equipe-separateur {
    width: 100%;
    text-align: left;
    border-bottom: 3px solid var(--primary-border);
    padding-bottom: 10px;
    margin-bottom: 40px;
}

/* Grille de l'équipe */
.equipe-grille {
    margin-top: 40px;
}

.membre-carte {
    text-align: center;
    padding: 20px;
}

.membre-photo {
    width: 100%;
    border: 3px solid var(--primary-border);
    margin-bottom: 15px;
    display: block;
    aspect-ratio: 1 / 1; /* Force la photo à être parfaitement carrée */
    object-fit: cover; /* Évite que l'image ne se déforme */
}

.membre-nom {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--blue-dark);
}

.membre-role {
    font-weight: bold;
    color: var(--accent); /* Le rouge théâtre pour le rôle */
    text-transform: uppercase;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 850px) {
    .layout-histoire {
        grid-template-columns: 1fr;
    }
}