.trust-page .trust-identity {
  display: grid;
  grid-template-columns: minmax(150px, .45fr) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.trust-page .trust-identity > strong {
  margin: 3px 0 0;
}

.trust-identity dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 28px;
  margin: 0;
}

.trust-identity dl > div {
  min-width: 0;
}

.trust-identity dt {
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 760;
  text-transform: uppercase;
}

.trust-identity dd {
  margin: 0;
  color: var(--ink);
  font-size: 14px;
  font-weight: 680;
  overflow-wrap: anywhere;
}

.trust-page .trust-steps {
  display: grid;
  gap: 0;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.trust-steps li {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 24px;
  margin: 0;
  border-top: 1px solid var(--line);
  padding: 24px 0;
}

.trust-steps li:last-child {
  border-bottom: 1px solid var(--line);
}

.trust-steps span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 760;
  text-transform: uppercase;
}

.trust-steps h3 {
  margin: 0 0 7px;
  color: var(--ink);
  font-size: 18px;
}

.trust-steps p {
  margin: 0;
}

.trust-page .article-body .hero-actions a.button {
  color: #090909;
  text-decoration: none;
}

.trust-page .article-body .hero-actions a.button.ghost {
  color: var(--ink);
}

@media (max-width: 640px) {
  .trust-page .trust-identity {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .trust-identity dl {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .trust-steps li {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}
