/* Industry trust band — 5-pillar "service standards" band.
   Replaces the response-time stat cards on industry spokes. Reusable across
   industries via template-parts/industry-trust-band.php (data-driven pillars).
   Self-namespaced (.savvy-trust-band__*) on global tokens, so it is safe inside
   or outside the .savvy-sa page scope.
   Token notes vs the original brief: the accent dot uses --brand-emphasis (our
   reserved yellow; --brand-accent is black in this system); --border-subtle →
   --border-default; --lh-base → --lh-normal. */

.savvy-trust-band {
  background: var(--surface-base); /* white, for contrast against dark bands */
  border-bottom: 1px solid var(--border-default);
}
/* Grey variant — keeps section rhythm when the band sits between white sections. */
.savvy-trust-band--alt {
  background: var(--surface-alt);
}
.savvy-trust-band__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--space-9) var(--container-padding);
}
.savvy-trust-band__eyebrow {
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  letter-spacing: var(--tracking-uppercase);
  color: var(--text-muted);
  margin: 0 0 var(--space-3);
  display: flex;
  align-items: center;
  gap: var(--space-2);
}
.savvy-trust-band__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand-emphasis);
  flex: none;
}
.savvy-trust-band__head {
  font-family: var(--font-display);
  font-size: var(--fs-2xl);
  line-height: var(--lh-tight);
  letter-spacing: var(--tracking-tight);
  color: var(--text-default);
  margin: 0 0 var(--space-7);
  max-width: 28ch;
}
.savvy-trust-band__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-6);
}
.savvy-trust-band__pillar {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  border-top: 2px solid var(--brand-primary);
  padding-top: var(--space-4);
}
.savvy-trust-band__icon {
  display: inline-flex;
  width: 24px;
  height: 24px;
  color: var(--brand-primary);
}
.savvy-trust-band__icon svg { width: 24px; height: 24px; display: block; }
.savvy-trust-band__label {
  font-size: var(--fs-md);
  font-weight: var(--fw-bold);
  margin: 0;
  line-height: var(--lh-tight);
}
.savvy-trust-band__body {
  font-size: var(--fs-sm);
  line-height: var(--lh-normal);
  color: var(--text-muted);
  margin: 0;
}
.savvy-trust-band__foot {
  margin: var(--space-7) 0 0;
  padding-top: var(--space-5);
  border-top: 1px solid var(--border-default);
  font-size: var(--fs-sm);
  color: var(--text-muted);
  max-width: 70ch;
}
.savvy-trust-band__foot a {
  color: var(--text-default);
  font-weight: var(--fw-semibold);
  text-decoration: underline;
  text-underline-offset: 0.18em;
  text-decoration-thickness: 1px;
  text-decoration-color: var(--brand-emphasis);
  transition: text-decoration-thickness 0.15s ease;
}
.savvy-trust-band__foot a:hover { text-decoration-thickness: 3px; }

/* Mobile collapse */
@media (max-width: 1024px) {
  .savvy-trust-band__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .savvy-trust-band__grid { grid-template-columns: 1fr; gap: var(--space-5); }
}
