a.auteur {
    transition: transform 0.5s ease;
    overflow: hidden; 
}

a.auteur:hover {
    transform: scale(1.05);
}

.liste-auteurs {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
} 

.auteur {
    display: block;
    color: black;
    text-decoration: none;
    box-shadow: 0px 3px 6px #00000029;
    margin-bottom: 2.15rem;
    overflow: hidden;
}

.auteur .titre {
    font-size: 2.25rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.auteur figure {
    overflow: hidden;
    height: 350px; 
    width: 100%; 
    margin: 0;
}

.auteur figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.auteur .textes {
    padding: 34px 50px 80px 30px;
}

.auteur .description {
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    display: -webkit-box;
}
