/* ═══════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════ */

footer {
  background: var(--ink);
  color: rgba(255, 255, 255, .5);
  padding: 2.5rem 0;
}

footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-brand {
  font-family: var(--serif);
  font-size: 1rem;
  color: rgba(255, 255, 255, .8);
}

footer p { font-size: .8rem; }

footer a {
  color: rgba(255, 255, 255, .5);
  text-decoration: none;
  transition: color .2s;
}

footer a:hover { color: #fff; }
