.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  transform: translate(-0.1rem, -0.1rem);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-links a {
  color: var(--ink);
  text-underline-offset: 0.2rem;
}

.mobile-cta > a {
  border: 0;
  border-radius: 0.5rem;
  padding: 0.65rem 0.8rem;
  background: var(--orange);
  color: white;
  font-weight: 800;
  white-space: nowrap;
  text-decoration: none;
}

.statement {
  grid-template-columns: 1fr;
}

@media (hover: hover) {
  .button-primary:hover {
    box-shadow: 0.5rem 0.5rem 0 var(--ink);
  }
}

@media (max-width: 620px) {
  .mobile-cta > a {
    font-size: 0.88rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .button {
    transition: none;
  }
}
