/* ── components/badge-row.css ───────────────────────────
   Component: nf--badge-row
   Horizontal row of small pills with a colored dot + label.
   Designed for any background — the badge has its own
   subtle bg, dot color is configurable per badge via a
   modifier or inline style.
   ──────────────────────────────────────────────────────── */

.nf--badge-row {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing3);
    justify-content: center;
}

.nf--badge-row__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.6rem 1.4rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--white);
    line-height: 1;
}

.nf--badge-row__dot {
    width: 0.8rem;
    height: 0.8rem;
    border-radius: 50%;
    background: var(--orange);
    flex-shrink: 0;
}

/* On light backgrounds */
.node--nf section[data-bg="white"] .nf--badge-row__badge,
.node--nf section[data-bg="pale"] .nf--badge-row__badge {
    background: var(--white);
    border-color: var(--fog);
    color: var(--black);
}

/* Beat global ul/li specificity */
.node--nf .nf--badge-row {
    list-style: none !important;
    padding-left: 0;
}

.node--nf .nf--badge-row__badge {
    padding-left: 1.4rem;
    margin-bottom: 0;
}
