/* Trusted-by brand row */

.trusted {
  padding: 56px 24px 64px;
  background: #fff;
  border-top: 1px solid #e8eaef;
  border-bottom: 1px solid #e8eaef;
  text-align: center;
}

.trusted p {
  margin: 0 0 32px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #6b7280;
}

.trusted-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.trusted-logos li {
  width: 96px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 96px;
}

.trusted-logos img {
  display: block;
  max-width: 96px !important;
  max-height: 32px !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain;
  opacity: 0.68;
}

@media (max-width: 640px) {
  .trusted-logos {
    gap: 24px;
  }

  .trusted-logos li {
    width: 80px;
    flex-basis: 80px;
    height: 32px;
  }

  .trusted-logos img {
    max-width: 80px !important;
    max-height: 28px !important;
  }
}
