/* Keep the product name and its meaning together everywhere the brand appears. */
.tribelib-brand {
    display: inline-flex;
    align-items: center;
    padding-block: 0;
}

.tribelib-brand__mark {
    display: inline-flex;
    align-items: center;
}

.tribelib-brand__text {
    display: inline-flex;
    flex-direction: column;
    line-height: 1;
}

.tribelib-brand__name {
    line-height: 0.95;
}

.tribelib-brand__tagline {
    margin-top: 0.28rem;
    color: var(--bs-primary);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.075em;
    text-transform: uppercase;
    white-space: nowrap;
}

@supports ((background-clip: text) or (-webkit-background-clip: text)) {
    .tribelib-brand__tagline {
        background-image: linear-gradient(90deg, var(--bs-primary), var(--bs-info));
        background-clip: text;
        -webkit-background-clip: text;
        color: transparent;
    }
}
