/* Trust strip — accreditation badge band below hero */

.savvy-trust {
  background: var(--surface-alt);
  border-top: 1px solid var(--border-default);
  border-bottom: 1px solid var(--border-default);
}

.savvy-trust__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  /* Vertical padding bumped --space-5 -> --space-7 so the strip reads as
     a proper trust band instead of a thin line. Logo height increased
     alongside (see .savvy-trust__badge img below). */
  padding: var(--space-7) var(--container-padding);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--space-7);
}

.savvy-trust__label {
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  letter-spacing: var(--tracking-uppercase);
  color: var(--text-muted);
}

/* Badges — static centred row.
   NB: previously an infinite translateX marquee. Removed 2026-05-29 — a
   perpetual transform animation promotes a GPU layer that, on Windows Chrome,
   disables sub-pixel (ClearType) text AA page-wide and made body text fuzzy.
   A static row of the ~4 accreditation logos avoids that entirely and reads
   as more credible. No transform / animation = no compositing side-effects. */
.savvy-trust__badges {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-7);
}

.savvy-trust__badge {
  flex: 0 0 auto;
  white-space: nowrap;
}

.savvy-trust__badge img {
  height: 64px;
  width: auto;
  filter: grayscale(20%);
  opacity: 0.9;
  transition: opacity 0.15s ease, filter 0.15s ease;
}
.savvy-trust__badge:hover img {
  filter: grayscale(0);
  opacity: 1;
}

.savvy-trust__badge--text {
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  color: var(--text-muted);
}
