/* Le conteneur principal */
.courrier-lecteurs {
    background: #f9f5e9; 
    border-radius: 4px;
    padding: 30px;
    margin: 40px 20px 40px 220px; /* Tes réglages qui marchent sur PC */
    max-width: 750px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
    font-family: "Averia Serif Libre", serif;
}
/* Le titre : on lui donne un aspect plaque de cuivre */
.courrier-lecteurs h3 {
    margin: -30px -30px 25px -30px; /* Pour qu'il touche les bords en haut */
    padding: 15px;
    background: linear-gradient(to bottom, #b38259, #3f3023); /* Effet métal */
    color: #f3ecd8; /* Marron très foncé, presque noir */
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 4px 4px 0 0;
}

/* Les commentaires postés : Style papier/parchemin */
.comment-item {
    background: #f4ecd8; /* Couleur papier vieilli */
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #d2b48c;
    border-left: 5px solid #65462a; /* Accent marron chaud */
    box-shadow: 3px 3px 10px rgba(0,0,0,0.2);
    color: #1a1a1a; /* Lecture parfaite en noir */
}

.comment-item strong {
    color: #8b4513;
    border-bottom: 1px dashed #d2b48c;
    margin-bottom: 8px;
    padding-bottom: 4px;
    font-size: 0.9em;
}

/* Le formulaire : On le sépare visuellement avec un fond plus sombre */
.comment-form-container {
    margin-top: 40px;
    padding: 20px;
    background: rgba(225, 218, 193, 1); /* Creuse le fond pour différencier */
    border-radius: 5px;
}

.comment-form-container h4 {
    color: #000000;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-size: 0.9em;
}

/* Inputs : Papier propre pour l'écriture */
.comment-form input[type="text"],
.comment-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    background: #fffdf5; /* Blanc cassé */
    border: 2px solid #332a22;
    color: #000;
    font-family: inherit;
    box-sizing: border-box;
    transition: border-color 0.3s;
}

.comment-form textarea {
    height: 120px;
    resize: vertical;
}

.comment-form input:focus,
.comment-form textarea:focus {
    border-color: #fde08d;
    outline: none;
}

/* Nouveau Bouton : Style "Sceau de cire" ou bouton d'interface de jeu */
.comment-submit-btn {
    background: #674629;
    color: #fde08d;
    border: 1px solid #fde08d;
    padding: 10px 25px;
    cursor: pointer;
    font-family: inherit;
    font-weight: bold;
    text-transform: uppercase;
    transition: all 0.2s;
    display: inline-block; /* Ne prend plus toute la largeur */
}

.comment-submit-btn:hover {
    background: #fde08d;
    color: #4a3728;
    box-shadow: 0 0 10px #fde08d;
}