/* Conteneur principal */
.modern-article-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 2rem 0;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Conteneur de contenu */
.container.main-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Article */
.modern-article {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* En-tête de l'article */
.modern-article-header {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
}

.header-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Titre de la catégorie */
.meta-categories a {
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Titre de l'article */
.entry-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #222;
    margin: 0;
}

/* Message d'introduction */
.article-intro-message {
    margin: 1.5rem 0;
    padding: 1rem;
    background: #f8f9fa;
    border-left: 4px solid #0073aa;
    border-radius: 0 4px 4px 0;
}

.article-intro-message h3 {
    margin: 0;
    font-size: 1.1rem;
    color: #555;
}

/* Métadonnées (auteur + date) */
.article-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #888;
    font-size: 0.9rem;
}

.meta-author img {
    border-radius: 50%;
}

/* Contenu de l'article */
.modern-article-content {
    margin: 2rem 0;
}

.content-wrapper {
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Lecteur audio (à adapter selon ta structure HTML) */
.audio-player-container {
    margin: 2rem 0;
    background: transparent !important;
    padding: 0;
}

.audio-player-container audio {
    width: 100%;
    margin: 1rem 0;
}

/* Navigation entre articles */
.modern-post-navigation {
    display: flex;
    justify-content: space-between;
    margin: 3rem 0;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
}

.nav-previous,
.nav-next {
    flex: 1;
    text-decoration: none;
    color: #555;
    padding: 1rem;
    border-radius: 4px;
    transition: background 0.2s;
}

.nav-previous:hover,
.nav-next:hover {
    background: #f8f9fa;
}

.nav-direction {
    display: block;
    font-size: 0.8rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-previous h4,
.nav-next h4 {
    margin: 0.5rem 0 0;
    font-size: 1rem;
    color: #222;
}

/* Mots-clés */
.article-tags {
    margin: 2rem 0;
    padding: 1rem 0;
    border-top: 1px solid #eee;
}

.tags-label {
    font-weight: 600;
    color: #666;
}

/* Section des commentaires */
.modern-comments-section {
    margin: 3rem 0;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 8px;
}

#respond {
    margin-top: 2rem;
    padding: 1.5rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
}

#respond input[type="text"],
#respond input[type="email"],
#respond textarea {
    width: 100%;
    padding: 0.8rem;
    margin: 0.5rem 0;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

#respond textarea {
    min-height: 150px;
}

#respond .form-submit input {
    margin: 2rem 0 0 0;
    background: #0073aa;
    color: #fff;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.2s;
}

#respond .form-submit input:hover {
    background: #005177;
}

/* Liste des commentaires */
.comment-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.comment-list .comment {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
}

.comment-author {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
}

.comment-author img {
    border-radius: 50%;
}

.comment-metadata {
    color: #888;
    font-size: 0.9rem;
}

.comment-content {
    margin: 1rem 0;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .modern-post-navigation {
        flex-direction: column;
        gap: 1rem;
    }

    .entry-title {
        font-size: 1.8rem;
    }
}



/* ajout le 28/11/25 pour l'affichage des descriptions des mp3 pour les message de la cabine */
.audio-description {
    margin-top: 0.6em !important;
    font-size: 0.95em;
    color: #333;
    background: #f8f8f8;
    padding: 8px 10px;
    border-radius: 6px;
    font-style: italic;
}

