/* =========================================================================
   Njoyland Portfolio Filters — "Portfolio Filters" WPBakery block
   Salient-compatible styles for single portfolio post pages.
   ========================================================================= */

/* Block wrapper: left-aligned, inherits Salient font stack */
.njpf-vc-block {
    font-family: inherit;
    font-size: 14px;
    line-height: 1.6;
    color: #1a1a1a;
    text-align: left;
}

/* One row per ACF field: label + values side-by-side, baseline-aligned */
.njpf-vc-block__row {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 0 8px;
    margin-bottom: 7px;
}

.njpf-vc-block__row:last-child {
    margin-bottom: 0;
}

/* Field name — matches the same uppercase 11px style used in the filter bar */
.njpf-vc-block__label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #888;
    white-space: nowrap;
    flex-shrink: 0;
    padding-right: 4px;
}

.njpf-vc-block__label::after {
    content: ':';
}

/* Values container: wraps naturally when there are many values */
.njpf-vc-block__values {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    line-height: 1.6;
}

/* Individual value link */
.njpf-vc-block__value {
    color: #1a1a1a;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: color 0.18s ease, border-color 0.18s ease;
}

.njpf-vc-block__value:hover,
.njpf-vc-block__value:focus {
    color: #555;
    border-bottom-color: currentColor;
    outline: none;
}

/* Separator between multiple values in the same field */
.njpf-vc-block__sep {
    color: #bbb;
    font-size: 12px;
    margin: 0 1px;
    pointer-events: none;
    user-select: none;
}
