/*
 Theme Name: theme moussy
 Theme URI: https://www.levraidufauxmoussy.fr
 Description: Thème enfant de Twenty Twenty-Four
 Author: David ABRIAL
 Template: twentytwentyfour
 Version: 1.0.0
*/

/* --- Enlever les métadonnées inutiles (auteur, catégories, tags)
   ⚠ On ne touche PAS à la date --- */
.post-meta .author,
.post-meta .cat-links,
.post-meta .tags-links,
.wp-block-post-author,
.wp-block-post-terms {
    display: none !important;
}

/* Si ton thème met tout dans `.entry-meta`, on fait attention à ne pas supprimer la date.
   On masque seulement certains sous-éléments fréquents : */
.entry-meta .byline,
.entry-meta .cat-links,
.entry-meta .tags-links {
    display: none !important;
}

/* --- On NE masque PAS :
   .wp-block-post-date
   .entry-date
   .posted-on
   pour que la date reste visible --- */

/* --- Enlever les commentaires partout --- */
.comments-area,
.comment-respond,
.comment-content,
.comment-list {
    display: none !important;
}

/* --- Conserver la navigation entre articles
   → donc on NE masque pas .post-navigation, .navigation, .wp-block-post-navigation-link --- */

/* --- Masquer les sidebars éventuelles --- */
.sidebar,
.widget-area {
    display: none !important;
}

/* --- Nettoyage du footer (optionnel) --- */
.site-footer,
.wp-block-template-part[data-area="footer"],
footer {
    display: none !important;
}

/* --- Réduire l’espace vide laissée par les zones supprimées --- */
.entry-content,
.wp-block-post-content {
    margin-top: 0 !important;
}

/* --- Enlever les séparateurs décoratifs si tu veux un look très sobre --- */
hr,
.wp-block-separator {
    display: none !important;
}

/* --- Uniformisation des paragraphes --- */
p {
    line-height: 1.6;
}

/* --- Option : largeur max plus lisible pour les grands écrans --- */
.wp-block-post-content,
.entry-content {
    max-width: 800px;
    margin: auto;
}
/* Étiquette VRAI / FAUX / NUANCÉ — style générique */
.single-post .vf-label,
.blog .vf-label,
.archive .vf-label {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-bottom: 1em;
    text-transform: uppercase;
    background: #eee;
    color: #333;
}

/* Variantes de couleur */
.vf-vrai {
    background: #e3f7ea;
    color: #187a3b;
}

.vf-faux {
    background: #fde5e5;
    color: #b00020;
}

.vf-nuance {
    background: #fff7e0;
    color: #996500;
}
``