.footer-links {
  gap: 14px;
}

.footer-brand {
  display: grid;
  align-content: start;
  gap: 12px;
}

.footer-contact {
  display: grid;
  gap: 2px;
  width: fit-content;
  color: var(--blue);
  text-decoration: none;
}

.footer-contact span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.footer-contact strong {
  font-size: 16px;
  font-weight: 650;
  text-decoration: underline;
  text-decoration-color: #6f858f;
  text-underline-offset: 5px;
}

.footer-contact:hover strong {
  text-decoration-color: var(--blue-dark);
}

.footer-login {
  display: inline-flex;
  width: fit-content;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  margin-block-start: 4px;
  padding: 10px 16px;
  border-radius: 8px;
  color: var(--ink);
  background: white;
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
  transition: background-color 140ms ease-out, transform 140ms ease-out;
}

.footer-login:hover {
  color: white;
  background: var(--blue);
}

.footer-login:active {
  transform: scale(.96);
}

.copyright {
  color: var(--muted);
}
