﻿@charset "UTF-8";
/* ─── Footer ─────────────────────────────────────────────────────────────── */
#footer {
  background-color: var(--primary-color);
  color: #fff;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}

.footer-inner {
  padding: 40px 32px;
  text-align: center;
}

#footer a,
#footer a:visited {
  color: #fff;
  text-decoration: none;
}

#footer a:hover {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: underline;
}

.footer-links {
  display: block;
  text-align: center;
  margin-top: 0.5rem;
}

.footer-links ul {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  display: inline-block;
}

.footer-links li {
  display: inline-block;
  padding: 5px 10px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 500;
  line-height: 1em;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.9);
}

.footer-links a:hover {
  color: #fff;
}

@media (max-width: 480px) {
  .footer-links li {
    display: block;
  }
}
