 .team-card {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: 0.3s ease;
}

.team-card:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}


.team-description h3 {
    /*background: #004aad;
    color: white;*/
    color: #004aad;
        margin-bottom: 5px;
    padding: 5px 5px;
    font-size:1rem;
    margin: 0;
}



/* Partie basse en 2 colonnes */
.team-body {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 5px;
    padding: 5px;
}

/* Description */
.team-description {
    color: #555;
    line-height: 1.6;
}

/* Responsable */
.team-responsable {
    text-align: center;
    border-left: 1px solid #eee;
    padding-left: 20px;
}

.responsable-photo img {
    width: 120px;
    /*height: 120px;*/
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 5px;
    border: 2px solid #004aad;
}


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

    .team-responsable {
        border-left: none;
        border-top: 1px solid #eee;
        padding-left: 0;
        padding-top: 20px;
    }
}
