/* Styles améliorés pour la page auteur */
.auteur {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    min-height: 70vh;
}

.auteur-content {
    max-width: 800px;
    margin: 0 auto;
}

.auteur-bio {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.auteur-bio p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #e0e0e0;
    text-align: justify;
    text-indent: 2em;
}

.auteur-bio p:first-child {
    font-size: 1.15rem;
    font-weight: 500;
    color: #f0f0f0;
}

.auteur-bio p:last-of-type {
    margin-bottom: 30px;
    font-style: italic;
    color: #d0d0d0;
}

.quote {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #1a1a2e;
    padding: 25px 30px;
    border-radius: 15px;
    margin-top: 30px;
    position: relative;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.quote::before {
    content: '"';
    font-size: 4rem;
    font-weight: bold;
    position: absolute;
    top: -10px;
    left: 15px;
    color: rgba(26, 26, 46, 0.3);
    font-family: serif;
}

.quote p {
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.6;
    margin: 0;
    padding-left: 30px;
    text-indent: 0;
    text-align: left;
    font-style: normal;
    color: #1a1a2e;
}

@media (max-width: 768px) {
    .auteur-bio {
        padding: 25px;
        margin: 0 15px;
    }
    
    .auteur-bio p {
        font-size: 1rem;
        text-indent: 1em;
    }
    
    .quote p {
        font-size: 1.1rem;
        padding-left: 20px;
    }
    
    .quote::before {
        font-size: 3rem;
        left: 10px;
    }
}

