.footer {
  margin: var(--space-large) 0 var(--space-large) 0;
  font-family: var(--font-family-helvetica);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-small);
  line-height: 1.3;
  position: relative;
  z-index: 1;
}

.footer a {
  color: inherit;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

@media (max-width: 720px) {
  .footer {
    flex-wrap: wrap;
    gap: 0.5em 0.75em;
    padding: 0 1.25em;
    font-size: 14px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .footer {
    flex-direction: column;
    gap: 0.35em;
  }

  .footer p:nth-child(2n) {
    display: none;
  }
}
