/* /evidence/ — certification posture: links, freshness, verdicts, audit, deliverables,
   stated limits, and the claim-boundary anchor linked from every page's footer. */

.evidence-blocks { display: flex; flex-direction: column; gap: 64px; }
.evidence-block + .evidence-block { padding-top: 64px; border-top: 1px solid var(--border); }
.evidence-block .body + .note { margin-top: 14px; }

.evidence-freshness { margin-top: 22px; }
.freshness-row { display: grid; grid-template-columns: 120px 1fr; gap: 12px; align-items: center; }
.freshness-row .pill { justify-self: start; }

/* ---------- Stated limits band ---------- */
.stated-limits { background: var(--surface-2); border-top: 1px solid var(--border); margin-top: 56px; padding: 88px 0 96px; }
.stated-limits__intro { max-width: 720px; margin-bottom: 44px; }

/* ---------- Claim boundary ---------- */
.claim-boundary {
  margin: 28px 0 0;
  max-width: 78ch;
  padding: 30px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-2);
}
.claim-boundary p { margin: 0; }
.claim-boundary p + p { margin-top: 14px; }

@media (max-width: 720px) {
  .evidence-blocks { gap: 48px; }
  .evidence-block + .evidence-block { padding-top: 48px; }
  .freshness-row { grid-template-columns: 1fr; gap: 6px; }
  .stated-limits { padding: 56px 0 64px; }
  .claim-boundary { padding: 22px; }
}
