/* ============================================
   LA MIDNIGHT - TYPOGRAFIE

   Navigation/Breadcrumb und globale Text-Patterns.
   Font-Faces werden extern geladen (Google Fonts).
   ============================================ */

/* --- Navigation / Breadcrumb (MyBB .navigation) --- */
.navigation {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    color: var(--text-dim);
    padding: var(--space-md) 0;
}

.navigation a {
    color: var(--text-dim);
}

.navigation a:hover {
    color: var(--accent);
}

/* Trennzeichen zwischen Breadcrumb-Ebenen */
.navigation .nav-sep,
.navigation .navsep {
    margin: 0 var(--space-sm);
    color: var(--text-dark);
}

/* Aktive Seite im Breadcrumb */
.navigation .active {
    color: var(--text);
}
