.trust-strip {
  background: #fbfbfd;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding: 26px 20px;
}

.trust-strip-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.trust-label {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-faint);
  font-weight: 700;
}

.trust-name {
  font-weight: 700;
  font-size: 17px;
  color: #94949b;
  font-family: var(--font-display);
  letter-spacing: -0.01em;
  transition: color .2s ease;
}
.trust-name:hover {
  color: #17171a;
}

@media (max-width: 768px) {
  .trust-strip-inner {
    gap: 20px 28px;
  }
  .trust-label {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .trust-strip {
    padding: 20px 14px;
  }
  .trust-strip-inner {
    gap: 14px 20px;
  }
  .trust-name {
    font-size: 15.5px;
  }
}
