/* ==========================================================================
   Footer
   ========================================================================== */

footer{
  margin-top: 22px;
  padding: 16px 0 28px;
  text-align: center;
  color: var(--muted, #98a2b3);
  background: transparent;
  position: relative;
  z-index: 0;
  font-size: .95rem;
  line-height: 1.4;
  -webkit-font-smoothing: antialiased;
}

/* subtle divider line with a faint accent glow */
footer::before{
  content: "";
  display: block;
  height: 1px;
  margin: 0 0 12px;
  background:
    linear-gradient(90deg,
      transparent,
      color-mix(in oklab, var(--link, #59b6ff) 40%, transparent),
      transparent);
  opacity: .55;
}

footer p{
  margin: 0;
}

footer a{
  color: var(--link, #59b6ff);
  text-decoration: none;
  border-radius: 4px;
  outline: none;
}
footer a:hover,
footer a:focus{
  text-decoration: underline;
}

/* Tighten up on very small screens */
@media (max-width: 420px){
  footer{ padding: 14px 0 22px; font-size: .9rem; }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce){
  *{ transition: none !important; }
}
