/* ==========================================================================
   FINDING · PROVENANCE COLOPHON — the D1 framing, set as furniture. The site's
   one honest sentence about HOW a finding was made: assessed by the editorial
   pipeline, against a published rubric, from N dated sources, methodology
   public. It is what turns a number into a *finding*. Set quiet — a ticked
   kicker, a hairline frame, the sentence in the note voice — so it reads as a
   standing imprint, never a marketing claim. Never implies a named clinician
   graded the report.
   ========================================================================== */

.op-provenance {
  display: grid;
  gap: var(--space-2xs);
  padding: var(--space-sm) var(--space-md);
  background: var(--surface-sunken);
  border: 1px solid var(--rule);
  border-left: 3px solid var(--rule-strong);
  border-radius: var(--radius-xs);
}

.op-provenance__label {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-family: var(--font-furniture);
  font-size: var(--text-3xs);
  font-weight: var(--weight-semibold);
  letter-spacing: var(--tracking-caps-wide);
  text-transform: uppercase;
  color: var(--text-secondary);
}
.op-provenance__label::before {           /* the register tick */
  content: "";
  inline-size: 1.6em;
  block-size: 2px;
  background: var(--accent);
  flex: none;
}

.op-provenance__text {
  font-family: var(--font-furniture);
  font-size: var(--text-xs);
  line-height: var(--leading-normal);
  color: var(--text-secondary);
  max-width: var(--measure-narrow);
  margin: 0;
}
/* the measured figures inside the sentence read as data */
.op-provenance__text b,
.op-provenance__text .op-provenance__n {
  font-family: var(--font-data);
  font-weight: var(--weight-medium);
  font-variant-numeric: tabular-nums lining-nums;
  color: var(--text);
}
/* "Methodology and rubric are public." resolves to the rubric */
.op-provenance__text a { color: var(--text); text-decoration-color: var(--link-underline); }
.op-provenance__text a:hover { color: var(--accent); }

/* The compact inline imprint — one line, for a card or list foot */
.op-provenance--inline {
  display: block;
  padding: 0;
  background: none;
  border: 0;
}
.op-provenance--inline .op-provenance__label { display: none; }
.op-provenance--inline .op-provenance__text {
  font-size: var(--text-3xs);
  font-style: italic;
  color: var(--text-muted);
}
