.trust-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.trust {
  border-radius: 26px;
  padding: 1.2rem;
  background: #fff;
  border: 1px solid rgba(112, 163, 10, .22);
  box-shadow: 0 20px 55px rgba(7, 16, 6, .06);
}

/* If the parent section is dark, inherit some styles (optional compatibility) */
.dark-section .trust {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(155, 221, 34, 0.24);
  box-shadow: none;
}

.trust strong {
  display: block;
  font-family: Orbitron, Inter, sans-serif;
  font-size: 1.25rem;
  color: var(--pixo);
  line-height: 1.1;
  text-transform: uppercase;
}

.dark-section .trust strong {
  color: var(--pixo2);
}

.trust span, 
.trust p {
  display: block;
  color: var(--muted);
  font-size: .9rem;
  margin-top: .55rem;
  line-height: 1.5;
  margin-bottom: 0;
}

.dark-section .trust span, 
.dark-section .trust p {
  color: #b7c4b2;
}

@media (max-width: 1050px) {
  .trust-row {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .trust-row {
    grid-template-columns: 1fr;
  }
}
