/* 5500RADAR — the trust hub.
 *
 * Loads on top of site.css + secondary.css and owns only two layouts the
 * secondary shell does not already have: the four "check this now" cards and
 * the three-column design-partner block. Everything else on /trust/ reuses
 * .trust-split, .trust-ledger, .truth-note and .band from secondary.css.
 *
 * Type floor is 15px. Nothing on a page about credibility should be hard to
 * read.
 */

/* ---- Four things you can check ---------------------------------------- */

.verify-grid {
  display: grid;
  gap: 1px;
  margin-top: 46px;
  background: var(--line, #e4e4e6);
  border: 1px solid var(--line, #e4e4e6);
  border-radius: 3px;
  overflow: hidden;
  grid-template-columns: repeat(auto-fit, minmax(272px, 1fr));
}

.verify-grid article {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 26px 24px 24px;
  background: var(--canvas-raised, #fff);
}

.verify-idx {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--accent-ink, #0e7e9b);
}

.verify-grid h3 {
  margin: 0;
  font-size: 21px;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.verify-grid h3 a {
  color: inherit;
  text-decoration: none;
}

.verify-grid h3 a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.verify-grid p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-2, #33363d);
}

/* The falsification prompt. The point of the page is that a reader can go and
   test the claim, so each card ends by naming the test. */
.verify-check {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--line-subtle, #eff0f3);
  font-size: 14px;
  line-height: 1.5;
  font-style: italic;
  color: var(--ink-3, #686c7a);
}

/* ---- Design partners --------------------------------------------------- */

.partner-grid {
  display: grid;
  gap: 20px;
  margin-top: 46px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.partner-grid article {
  display: flex;
  flex-direction: column;
  padding: 26px 24px;
  border: 1px solid var(--line-strong, #d0d3da);
  border-radius: 3px;
  background: var(--canvas-raised, #fff);
}

.partner-grid h3 {
  margin: 0 0 14px;
  font-size: 18px;
  line-height: 1.3;
}

.partner-grid ul {
  margin: 0;
  padding-left: 19px;
  display: grid;
  gap: 9px;
}

.partner-grid li {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-2, #33363d);
}

.partner-grid b {
  font-weight: 700;
  color: var(--ink-1, #17191c);
}

.partner-terms {
  border-color: var(--accent-ink, #0e7e9b);
}

.partner-terms .btn {
  margin-top: 20px;
  align-self: flex-start;
}

/* Inline links inside .trust-copy inherit secondary.css's accent, which is
   4.69:1 on white but 4.32:1 on the .band surface half this page uses. Scoped
   to /trust/ rather than changed globally, so no other page's rendering moves. */
.secondary-body .trust-copy a,
.secondary-body .trust-ledger a,
.secondary-body .truth-note a {
  color: var(--accent-active, #0b6d87);
}

.verify-grid h3 a,
.partner-grid a.btn {
  color: inherit;
}

.partner-grid a.btn {
  color: #fff;
}
