/* Supprimer le bloc de navigation jaune avec la flèche */
.single .navigation.post-navigation,
.single .nav-links {
    display: none !important;
}



/* Masquer la section Articles récents sur la page d’accueil du thème Ixion */
.home .recent-posts,
.home #recent-posts,
.home .ixion-recent-posts,
.home .entry-related,
.home .site-main > section {
    display: none !important;
}

cacher wordpress
/* Masquer le crédit Propulsé par WordPress.com */
.site-info,
.site-credit,
footer .site-info {
    display: none !important;
}







/* Force le style sur tous vos boutons d'action */
a.btn-gyg, 
.wp-block-button__link {
    background-color: #f39c12 !important;
    color: #ffffff !important;
    font-weight: bold !important;
    text-transform: uppercase !important;
    border-radius: 6px !important;
    padding: 14px 28px !important;
    text-decoration: none !important;
}

a.btn-gyg:hover, 
.wp-block-button__link:hover {
    background-color: #d68910 !important;
    color: #ffffff !important;
}

.branding-container {
    justify-content: center !important;
}



/* Cible tous les éléments du menu pour forcer la couleur en noir (ou la couleur de votre choix) */
header nav a, 
header nav span, 
header nav svg, 
header nav i,
.menu a, 
.menu span, 
.menu svg, 
.menu i {
    color: #000000 !important;
    fill: #000000 !important; /* Pour les icônes SVG si elles sont colorées via le remplissage */
}

/* Désactive aussi le bleu lors du survol ou du clic */
header nav a:hover, 
header nav a:focus, 
header nav a:active,
.menu a:hover, 
.menu a:focus, 
.menu a:active {
    color: #333333 !important; /* Couleur personnalisée au survol */
    fill: #333333 !important;
}





/* Enlève le bleu des liens du sommaire Rank Math */
.rank-math-block-toc a, 
.wp-block-rank-math-toc-block a {
    color: #000000 !important; /* Remplacez par la couleur de texte souhaitée */
    text-decoration: none !important; /* Supprime le soulignement si besoin */
}

/* Couleur au survol des liens du sommaire */
.rank-math-block-toc a:hover, 
.wp-block-rank-math-toc-block a:hover {
    color: #555555 !important; /* Couleur au survol de la souris */
}





/* Enlève le soulignement des liens dans le sommaire Rank Math */
.rank-math-block-toc a, 
.wp-block-rank-math-toc-block a {
    text-decoration: none !important;
}


/* Ajoute un espacement vertical de 20 pixels entre deux photos ou blocs d'images consécutifs dans les articles */
article img + img, 
.post img + img, 
.entry-content img + img,
article .wp-block-image + .wp-block-image,
.post .wp-block-image + .wp-block-image,
.entry-content .wp-block-image + .wp-block-image {
    margin-top: 20px !important;
}



/* 1. Souligner tous les liens du site par défaut */
a {
  text-decoration: underline;
}

/* 2. Retirer le soulignement pour les sommaires et les catégories */
.sommaire a,
.categories a,
.toc a,
.category-list a {
  text-decoration: none;
}

/* 3. Conserver ou réactiver explicitement le soulignement dans les articles */
.article a,
.post-content a,
article a {
  text-decoration: underline;
}