.mzd-trust-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--mzd-paper, #fff);
  border-bottom: 1px solid var(--mzd-zinc, #d9e0e2);
  position: relative;
  z-index: 1;
}
.mzd-trust-card {
  padding: 1.6rem 1.2rem;
  text-align: center;
  border-right: 1px solid var(--mzd-zinc, #d9e0e2);
}
.mzd-trust-card:last-child {
  border-right: none;
}
.mzd-trust-card strong {
  display: block;
  font-family: var(--mzd-display, sans-serif);
  font-weight: 800;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--mzd-blue, #0b3a53);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.mzd-trust-card span {
  display: block;
  font-family: var(--mzd-body, sans-serif);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--mzd-muted, #58676f);
  line-height: 1.3;
}
@media (max-width: 780px) {
  .mzd-trust-bar {
    grid-template-columns: repeat(2, 1fr);
  }
  .mzd-trust-card:nth-child(2) {
    border-right: none;
  }
  .mzd-trust-card:nth-child(1),
  .mzd-trust-card:nth-child(2) {
    border-bottom: 1px solid var(--mzd-zinc, #d9e0e2);
  }
}
