.header_question {
    padding-top: 30px;
    padding-bottom: 15px;
    text-align: center;
}

.logo_question {
    max-width: 180px;
    height: auto;
    margin-bottom: 15px;
    filter: drop-shadow(0 0 15px rgba(251, 191, 36, 0.3));
}

.section_bio_top {
    width: 100%;
    max-width: 1050px;
    margin: 0 auto;
    padding: 10px 20px;
    min-height: auto;
}

.section_bio_top h3 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 1.6rem;
    color: var(--accent-gold);
    width: 100%;
}

.bio_wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 30px;
    width: 100%;
    margin-bottom: 40px;
}

.bio_photo_container {
    flex: 0 0 180px;
}

.author_portrait {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    border: 3px solid var(--accent-gold);
    object-fit: cover;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.parchment_block {
    background-image: url('../images/parchemin.webp');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    padding: 40px 40px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 25px; 
    border: none;
    filter: drop-shadow(0 15px 15px rgba(0, 0, 0, 0.8));
    max-width: 1050px;
}

.parchment_block .author_portrait {
    width: 140px;
    height: 140px;
    border: 3px solid #4a3419;
}

.parchment_block .bio_text {
    color: #f4f1ec;
    font-size: 1.05rem;
    line-height: 1.7;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
    /* MODIFICATION : Alignement à gauche demandé */
    text-align: left; 
}

.parchment_block .bio_text p {
    color: #f4f1ec; 
    margin-bottom: 15px;
}

.bio_sidebar {
    flex: 0 0 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.bio_title_img {
    display: block;
    width: 150px;
    height: auto;
    margin-top: 20px;
    margin-bottom: 10px;
    margin-left: auto;
    margin-right: auto;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
}

.bio_content {
    flex: 1;
}

.bio_text {
    color: var(--text-color);
    font-size: 0.95rem;
    line-height: 1.6;
}

.bio_text p {
    margin-bottom: 15px;
}

.bio_text p:last-child {
    margin-bottom: 0;
}

.title_question {
    font-family: 'Cinzel', serif;
    color: var(--accent-orange);
    font-size: 1.6rem;
    margin-bottom: 0px;
    text-align: center;
}

.section_question {
    padding: 20px;
    min-height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
}

.card_question {
    background-color: #eae7e1; 
    background-image: 
        radial-gradient(circle at center, rgba(0,0,0,0.06) 1px, transparent 1px);
    background-size: 5px 5px;
    padding: 35px;
    border-radius: 12px;
    border: 1px solid rgba(170, 132, 1, 0.3);
    width: 100%;
    margin-bottom: 30px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.5);
    position: relative;
    overflow: hidden;
}

.label_question {
    font-family: 'Cinzel', serif;
    color: var(--accent-dark-gold); 
    font-size: 1.15rem;
    margin-bottom: 18px;
    display: block;
    line-height: 1.0;
    text-align: left;
    font-weight: bold;
    letter-spacing: normal;
}

.text_question {
    color: #1a1a1a;
    font-size: 1.05rem;
    line-height: 1.7;
    text-align: left;
}

.list_question {
    margin-top: 10px;
    padding-left: 25px; 
    list-style-type: disc;
}

.list_question li {
    margin-bottom: 5px; 
    line-height: 1.4; 
    color: #1a1a1a; 
}

.footer_spacer_question {
    padding-bottom: 100px;
}

@media (max-width: 768px) {
    .section_bio_top {
        padding: 5px 10px; /* Moins de marge sur les côtés du bloc */
    }
    .bio_wrapper {
        flex-direction: column;
        gap: 15px;
        margin-bottom: 30px;
    }
    .parchment_block {
        background-image: url('../images/parchemin_mobile.webp'); /* Votre nouvelle image verticale */
        background-size: 100% 100%; /* S'adapte parfaitement à la hauteur du texte */
        padding: 50px 25px 60px 25px; /* Ajustez selon les bords de votre dessin mobile */
        flex-direction: column;
        filter: drop-shadow(0 10px 10px rgba(0, 0, 0, 0.7));
    }

    .bio_sidebar {
        flex: 0 0 auto;
        width: 100%;
        margin-bottom: 10px;
    }

    .bio_title_img {
        width: 120px; /* Titre "L'auteur" un peu plus petit sur mobile */
        margin-top: 0;
    }

    .parchment_block .author_portrait {
        width: 120px;
        height: 120px;
        margin-top: 10px;
    }

}