/* ============================================================
   Trust Banner Section
   Single full-width image at the top of a page (e.g., free
   shipping / secure checkout / risk-free trust badges baked
   into one image). Optional CSS color inversion.
   ============================================================ */

.trust-banner {
  width: 100%;
  background: #fff;
  padding: 0;
}

.trust-banner__img {
  display: block;
  margin: 0 auto;
  width: auto;        /* let max-height drive width, preserving aspect */
  max-width: 100%;    /* never overflow viewport */
  max-height: 80px;   /* hard cap on banner height across all widths */
  height: auto;
}

.trust-banner--inverted .trust-banner__img {
  filter: invert(1);
}
