footer {
  display: grid;
  gap: 0;
  align-items: center;
  justify-items: center;
  text-align: center;
  margin-bottom: 2rem;

  .logo {
    color: var(--brand);
    font-weight: 700;
  }

  .rights {
    font-size: 11px;
  }

  .links {
    display: grid;
    gap: 1rem;

    a {
      font-size: 11px;
      text-decoration: none;
      color: var(--ink-70);
    }
  }
}