/* ========================= A PROPOS ========================= */

.equipe {
    background-color: #A9C2D8;
}

.equipe .contenu {
    width: 100%;
}

.equipe_titre {
    width: 100%;
    text-align: center;
    color: #263544;
    margin-bottom: 10px;
}

.liste-prof {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    margin-top: 30px;
    width: 100%;
}

.professeur {
    width: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 3px 4px rgba(0,0,0,0.10);
    border-radius: 6px;
    overflow: hidden;
}

.professeur_media img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    border-radius: 6px 6px 0 0;
}

.professeur_texte {
    flex: 1;
    padding: 14px;
    background-color: white;
}

.professeur_texte h3 {
    font-size: 18px;
    margin-bottom: 4px;
    color: #4A6A8A;
}

.professeur_texte span {
    display: inline-block;
    margin-bottom: 10px;
    color: #B8860B;
    font-size: 14px;
    font-weight: 600;
}

.professeur_texte p {
    font-size: 13px;
    line-height: 1.5;
    color: #333;
    margin-bottom: 0;
}

.lien {
    color: #4A6A8A;
}
