/* ==========================================================================
   Accreditor band — DEAC + BPPE + CHEA trust strip for in-page use
   (the footer has its own variant). Text-based lockups link out to each
   body; we do not reproduce third-party logo artwork.
   ========================================================================== */
.accreditor-band { background: var(--color-surface); border-block: 1px solid var(--color-border); }
.accreditor-band__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--space-4) var(--space-6);
  padding-block: var(--space-4);
}
.accreditor-band__label {
  width: 100%;
  text-align: center;
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: var(--space-1);
}
.accreditor-chip {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  text-decoration: none;
  color: var(--color-text);
}
.accreditor-chip__mark {
  display: grid; place-items: center;
  width: 48px; height: 48px;
  border-radius: var(--radius-md);
  background: var(--color-primary);
  color: #ffffff;
  font-family: var(--font-headline);
  font-weight: var(--weight-bold);
  font-size: 0.95rem;
}
.accreditor-chip__text { font-size: var(--text-sm); line-height: 1.35; max-width: 26ch; }
.accreditor-chip__text strong { display: block; color: var(--color-primary); }
.accreditor-chip__text span { color: var(--color-text-muted); font-size: var(--text-xs); }
.accreditor-chip:hover .accreditor-chip__text strong { text-decoration: underline; }
/* NOTE: the real-logo "plate" styles (.accreditor-logos / .accreditor-logo /
   .accreditor-caption) live in footer.css because the footer uses them on every
   page; this file is only loaded on pages with an in-body accreditor band. */
