/* ── logobar.css ─────────────────────────────────────────
   Module: nf--logobar
   ──────────────────────────────────────────────────────── */

.nf--logobar__label {
    display: block;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--slate);
    margin-bottom: 3.6rem;
}

.nf--logobar__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3.2rem;
    flex-wrap: wrap;
    max-width: calc(var(--grid-column-width) * 12 + var(--grid-gap) * 11);
    margin: 0 auto;
}

.nf--logobar__cell {
    flex: 1 1 12rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.2rem;
}

.nf--logobar__cell svg,
.nf--logobar__cell img {
    height: 2.6rem;
    width: auto;
    max-width: 100%;
    display: block;
    color: var(--slate);
    opacity: 0.55;
    filter: grayscale(1);
    transition: opacity 200ms ease, filter 200ms ease;
}

.nf--logobar__cell:hover svg,
.nf--logobar__cell:hover img {
    opacity: 1;
    filter: grayscale(0);
}

/* Fallback for viewports where grid vars aren't defined */
@media (max-width: 1136px) {
    .nf--logobar__row {
        max-width: 100%;
    }
}

@media (max-width: 900px) {
    .nf--logobar__cell {
        flex: 1 1 30%;
    }
}

@media (max-width: 600px) {
    .nf--logobar__cell {
        flex: 1 1 44%;
    }
}
