.trust-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.trust-item {
  min-height: 150px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 22px 18px;
  text-align: center;
}

.trust-item > div:last-child {
  width: 100%;
  min-width: 0;
}

.trust-item strong {
  font-size: 0.92rem;
  line-height: 1.45;
}

.trust-item span {
  max-width: 245px;
  margin: 5px auto 0;
  font-size: 0.79rem;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-item {
    min-height: 148px;
    padding: 20px 16px;
  }

  .trust-item:nth-child(odd) {
    border-inline-start: 0;
  }

  .trust-item:nth-child(n + 3) {
    border-top: 1px solid rgba(255, 255, 255, 0.11);
  }
}

@media (max-width: 520px) {
  .trust-item {
    min-height: 164px;
    padding: 18px 12px;
  }

  .trust-item strong {
    font-size: 0.86rem;
  }

  .trust-item span {
    font-size: 0.74rem;
    line-height: 1.55;
  }
}
