/* TITRE PAGE */

.page-title {
    text-align: center;
    padding: 50px 10%;
    background: #f8f9fa;
}

.page-title h2 {
    color: #1E3A8A;
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.page-title p {
    color: #444;
}


/* EQUIPE */

.equipe-section {
    padding: 50px 10%;
    text-align: center;
}

.equipe-section h3 {
    color: #1E3A8A;
    margin-bottom: 30px;
    font-size: 1.8rem;
}

.equipe-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.equipe-card {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    width: 220px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
}

.equipe-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}

.equipe-card h4 {
    color: #1E3A8A;
    margin-bottom: 5px;
}

.equipe-card p {
    color: #555;
    font-size: 0.95rem;
}

.equipe-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    border: 2px solid #16A34A;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
    gap: 20px;
    justify-items: center;
    align-items: stretch;
    margin-top: 30px;
}

.team-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
    transition: transform 0.3s;
    width: 100%;
    max-width: 250px;
}

.team-card:hover {
    transform: translateY(-5px);
}

.team-card img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 15px;
}

.team-card h3 {
    color: #1e3a8a;
    margin: 8px 0 4px;
}

.team-card p {
    color: #444;
    font-size: 14px;
}


/* Sur smartphone : affichage vertical */

@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
}