/* ── Lead Demand modal: traffic-sufficiency block ─────────────────────────
   The manager-facing read under the demand read line: a plain-language
   verdict (pill + sentence) over a small stat row whose sublines name each
   number's source and timeframe (docs/TRAFFIC_SUFFICIENCY_PLAN.md §5).
   Property-card popout (New Leases) — fr-* Frontier system. */

.fr-suff-block {
    margin: 10px 0 2px;
    padding: 12px 16px 14px;
    background: var(--fr-bg);
    border: 1px solid var(--fr-hairline);
    border-radius: 10px;
    font-family: var(--fr-font-sans);
}

/* Verdict line: pill + one plain sentence. */
.fr-suff-verdict {
    display: flex;
    align-items: baseline;
    gap: 10px;
    flex-wrap: wrap;
}
.fr-suff-verdict-text {
    font-size: 13px;
    color: var(--fr-ink);
}

/* Status pill — icon + label, mirroring the demand pill's shape. */
.fr-suff-pill {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.02em;
    white-space: nowrap;
}
.fr-suff-pill.is-good    { color: var(--fr-positive); }
.fr-suff-pill.is-line    { color: var(--fr-warning); }
.fr-suff-pill.is-short   { color: var(--fr-negative); }
.fr-suff-pill.is-neutral { color: var(--fr-ink-3); }

/* Stat row: value / label / provenance, text tokens only. */
.fr-suff-tiles {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px 18px;
    margin-top: 12px;
}
.fr-suff-tile { min-width: 0; }
.fr-suff-value {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.15;
    color: var(--fr-ink);
}
.fr-suff-value .fr-suff-unit {
    font-size: 12px;
    font-weight: 500;
    color: var(--fr-ink-2);
    margin-left: 2px;
}
.fr-suff-label {
    font-size: 12px;
    color: var(--fr-ink-2);
    margin-top: 3px;
}
.fr-suff-src {
    font-size: 11px;
    color: var(--fr-ink-3);
    margin-top: 1px;
}

/* Optional note under the tiles (pooled phases, borrowed rate). */
.fr-suff-note {
    font-size: 11px;
    color: var(--fr-ink-3);
    margin-top: 10px;
}

@media (max-width: 680px) {
    .fr-suff-tiles { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
