/* ==========================================================================
   COMPONENTS · COLOPHON (extension) — the global colophon footer already exists
   in the system (.op-colophon). This unit only adds the one piece D7 mandates:
   the STANDING MEDICAL-DISCLAIMER SENTENCE printed on every page, plus the
   independence note (D2), set as ruled fine print above the imprint — apparatus,
   not an afterthought. Everything else composes the built .op-colophon classes.
   ========================================================================== */

/* The standing disclaimer — a ruled fine-print band, present on every page */
.op-colophon__disclaimer {
  margin-top: var(--space-lg);
  padding-top: var(--space-md);
  border-top: 1px solid var(--rule);
  display: grid;
  gap: var(--space-2xs);
}
.op-colophon__disclaimer-label {
  font-family: var(--font-furniture);
  font-size: var(--text-3xs);
  font-weight: var(--weight-semibold);
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
  color: var(--text-muted);
}
.op-colophon__disclaimer-text {
  font-family: var(--font-furniture);
  font-size: var(--text-2xs);
  line-height: var(--leading-normal);
  color: var(--text-secondary);
  max-width: 90ch;
  margin: 0;
}
