.auteur-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem;
}

.auteur-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.auteur-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.auteur-card h2 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.auteur-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin: 1rem auto;
    border: 3px solid #f0f0f0;
}

.auteur-card p {
    color: #666;
    margin: 0.5rem 0;
}

.auteur-card a {
    color: #007bff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.auteur-card a:hover {
    color: #0056b3;
}

.auteur-separator {
    margin: 1.5rem 0;
    border: none;
    border-top: 1px solid #eee;
    width: 70%;
    margin-left: auto;
    margin-right: auto;
}