.trust-bar {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  align-items: stretch;
  background: #151713;
  border-top: 1px solid rgba(200, 167, 106, .5);
  border-bottom: 1px solid var(--line);
  padding: 0 5vw;
}

.trust-heading,
.trust-badge {
  min-height: 130px;
  display: flex;
  align-items: center;
}

.trust-heading {
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.trust-heading span {
  color: var(--gold);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.trust-heading strong {
  margin-top: 4px;
  color: var(--ivory);
  font: 500 1.6rem var(--serif);
}

.trust-badge {
  gap: 18px;
  padding-left: 34px;
  border-left: 1px solid var(--line);
}

.trust-badge svg {
  width: 43px;
  height: 43px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--gold);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trust-badge strong,
.trust-badge span {
  display: block;
}

.trust-badge strong {
  color: var(--ivory);
  font: 500 1.25rem var(--serif);
}

.trust-badge span {
  margin-top: 2px;
  color: var(--muted);
  font-size: .78rem;
}

.contact-trust {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 18px 0 0;
  color: var(--gold);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.contact-trust span {
  width: 21px;
  height: 21px;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  font-size: .7rem;
}

.button > span,
.service-card a > span {
  display: inline-block;
  transition: transform .25s ease;
}

.button:hover > span,
.service-card a:hover > span {
  transform: translateX(4px);
}

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

  .trust-heading {
    grid-column: 1 / -1;
    min-height: 105px;
    border-bottom: 1px solid var(--line);
  }

  .trust-badge {
    border-left: 0;
    padding-left: 0;
  }

  .trust-badge + .trust-badge {
    padding-left: 28px;
    border-left: 1px solid var(--line);
  }
}

@media (max-width: 620px) {
  .trust-bar {
    grid-template-columns: 1fr;
    padding: 0 6vw;
  }

  .trust-heading,
  .trust-badge {
    min-height: 104px;
  }

  .trust-heading,
  .trust-badge,
  .trust-badge + .trust-badge {
    grid-column: auto;
    padding-left: 0;
    border-left: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-badge:last-child {
    border-bottom: 0;
  }
}
