/* =====================================
   TRUST BAR
===================================== */
/* Reusable trust-signal strip. Currently used on the homepage,
   but kept as a component (not a page style) since it's meant
   to be reused on other pages later without modification. */

.trust-bar {

  padding-block: var(--space-6);

  border-top: 1px solid var(--border);

  border-bottom: 1px solid var(--border);

  background: var(--surface);

}

.trust-list {

  list-style: none;

  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: var(--space-6);

}

.trust-list li {

  display: flex;

  align-items: center;

  justify-content: center;

  gap: var(--space-3);

  text-align: center;

  color: var(--text-secondary);

  font-size: 14px;

}

.trust-list svg {

  width: 20px;

  height: 20px;

  flex-shrink: 0;

  color: var(--accent);

}

@media (max-width: 992px) {

  .trust-list {

    grid-template-columns: repeat(2, 1fr);

  }

}

@media (max-width: 560px) {

  .trust-list {

    grid-template-columns: 1fr;

  }

}
