/* ═══════════════════════════════════════════════════════════════════
   /company — page-specific rules
   ═══════════════════════════════════════════════════════════════════

   Only the "Corporate facts" block lives here. It is the one piece of
   /company that has no counterpart in the approved mockups, so it did
   not make it into site.css during Wave 1.

   Promote these rules into site.css if a second page ever needs a
   mono-labelled key/value block (a /legal or /brand spec table is the
   likely candidate). Until then it stays page-local so site.css does
   not accumulate single-use classes.

   Consumes --rt-* tokens from /brand/tokens.css. Never redefines them.
   ═══════════════════════════════════════════════════════════════════ */

.rt-facts {
  margin: 28px 0 0;
  border-top: 1px solid var(--rt-rule);
}

.rt-facts__row {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 6px 28px;
  padding: 15px 0;
  border-bottom: 1px solid var(--rt-rule);
}

.rt-facts__label {
  font-family: var(--rt-font-mono);
  font-size: var(--rt-text-xs);
  letter-spacing: var(--rt-track-loose);
  text-transform: uppercase;
  color: var(--rt-ink-3);
  font-weight: 500;
  padding-top: 4px;
}

.rt-facts__value {
  margin: 0;
  color: var(--rt-ink);
  font-size: 15px;
}

/* Parenthetical qualifiers — "Merchant of Record", "submitted 2026". */
.rt-facts__note { color: var(--rt-ink-3); }

.rt-facts__value a {
  color: var(--rt-red-dk);
  text-decoration: none;
  font-weight: 500;
}
.rt-facts__value a:hover { text-decoration: underline; }

@media (max-width: 640px) {
  .rt-facts__row {
    grid-template-columns: 1fr;
    gap: 4px;
  }
  .rt-facts__label { padding-top: 0; }
}
