/* ============================================================
   15-trust-row.css — trust signals strip
   Module: <section id="trust-row"> just below the hero
   Indi-creative-style: a clean horizontal row of credibility signals
   ============================================================ */

#trust-row {
  background: var(--c-white);
  padding: var(--s-5) 0;
  border-bottom: 1px solid var(--c-line);
}
#trust-row .trust-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--s-3);
  align-items: center;
}
.trust-item {
  text-align: center;
  padding: 0 var(--s-2);
  border-right: 1px solid var(--c-line);
}
.trust-item:last-child { border-right: 0; }
.trust-item strong {
  display: block;
  font-family: var(--f-display);
  font-size: 1.7rem;
  font-weight: 900;
  color: var(--c-blue);
  line-height: 1;
  margin-bottom: 4px;
}
/* Star-rating item gets the hi-vis yellow treatment */
.trust-item:last-child strong {
  color: var(--c-yellow-dark);
  text-shadow: 0 1px 0 var(--c-yellow);
}
.trust-item span {
  display: block;
  font-size: 0.78rem;
  color: var(--c-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
}

@media (max-width: 880px) {
  #trust-row .trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--s-4) var(--s-3);
  }
  .trust-item { border-right: 0; border-bottom: 1px solid var(--c-line); padding-bottom: var(--s-3); }
  .trust-item:nth-last-child(-n+2) { border-bottom: 0; padding-bottom: 0; }
}
