/* Hero trust line - scoped so site-wide resets stay untouched */

.trustline {
  --ink: #12131a;
  --ink-soft: #1b1d28;
  --line: rgba(245, 244, 240, 0.14);
  --line-strong: rgba(245, 244, 240, 0.28);
  --paper: #f5f4f0;
  --paper-dim: #b9bac2;
  --purple: #8a5a80;
  --purple-bright: #c98fbc;
  --radius: 3px;

  box-sizing: border-box;
  max-width: 1180px;
  margin: 32px auto 0 auto;
  padding: 0 1rem 2rem;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  color: var(--paper);
  -webkit-font-smoothing: antialiased;
}

.trustline *,
.trustline *::before,
.trustline *::after {
  box-sizing: border-box;
}

.trustline > .label {
  flex: 0 0 auto;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.4;
  text-transform: uppercase;
  color: var(--paper-dim);
  white-space: nowrap;
}

.trustline .chips {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1 1 12rem;
  flex-wrap: wrap;
}

.trustline .child {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: 0;
  padding: 0;
  text-decoration: none;
}

.trustline a.child:hover img,
.trustline a.child:focus-visible img {
  opacity: 1;
  filter: none;
}

.trustline .child img {
  display: block;
  height: 2.5rem;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  opacity: 0.7;
  filter: grayscale(1);
  transition: opacity 0.3s ease, filter 0.3s ease;
}

/* Black SVGs stay black after grayscale; invert so they read as grey on navy */
.trustline .child img[src$=".svg"] {
  opacity: 0.65;
  filter: grayscale(1) invert(1);
}

@media (max-width: 639px) {
  .trustline {
    gap: 12px;
  }

  .trustline > .label {
    width: 100%;
    white-space: normal;
  }
}
