.direct-contact {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.direct-contact a {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--deep);
  text-decoration: none;
  font-weight: 700;
}

.direct-contact a > span:first-child {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  border-radius: 11px;
  background: var(--mint);
  color: var(--teal);
}

.direct-contact a > span:last-child {
  min-width: 0;
  overflow-wrap: anywhere;
}

.direct-contact small {
  display: block;
  color: var(--muted);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.direct-contact a:hover,
.footer-contact a:hover {
  text-decoration: underline;
}

.form-helper {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 12px;
  text-align: center;
}

.footer-contact {
  display: grid;
  justify-items: end;
  gap: 3px;
}

.footer-contact a {
  color: #d7e8e6;
  text-decoration: none;
  font-size: 12px;
}

@media (max-width: 900px) {
  .footer-contact {
    justify-items: center;
  }
}
