/* RIVEX Brand Letter Spacing - Global Style */
/* Apply 0.15em letter-spacing to all RIVEX text */

/* Target all text nodes containing RIVEX */
body {
    --rivex-letter-spacing: 0.15em;
}

/* Apply to specific RIVEX elements via JavaScript will be more reliable */
/* This CSS serves as a fallback and for manually classed elements */

.rivex-brand {
    letter-spacing: 0.15em !important;
}

/* Navigation RIVEX */
nav span:has-text("RIVEX"),
nav [alt="RIVEX"] + span {
    letter-spacing: 0.15em !important;
}
