/**
 * Breadcrumb - Style unifié
 * Fil d'Ariane discret pour toutes les pages du site
 */

/* Style pour ariane.php (génère <p> avec liens .ariane) */
#contenu > p:first-of-type {
    font-size: 0.85em;
    margin: 12px 15px 18px 15px;
    color: #333;
}

.ariane {
    color: #888;
    text-decoration: none;
}

.ariane:hover {
    color: #666;
    text-decoration: underline;
}

/* Style pour classe .breadcrumb (pages custom) */
.breadcrumb {
    font-size: 0.85em;
    margin: 12px 15px 18px 15px;
    color: #333;
}

.breadcrumb a {
    color: #888;
    text-decoration: none;
}

.breadcrumb a:hover {
    color: #666;
    text-decoration: underline;
}

/* Dark mode */
[data-theme="dark"] .ariane,
[data-theme="dark"] .breadcrumb a {
    color: #999;
}

[data-theme="dark"] .ariane:hover,
[data-theme="dark"] .breadcrumb a:hover {
    color: #bbb;
}

[data-theme="dark"] #contenu > p:first-of-type,
[data-theme="dark"] .breadcrumb {
    color: #ddd;
}
