/* src/client/components/Footer.css */
.footer {
  color: #f5f5f78c;
  padding: 1.75rem var(--page-padding-x);
  background: #000;
  border-top: 1px solid #f5f5f714;
  margin-top: auto;
  font-size: .8125rem;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items:  flex-start;
  gap: .75rem;
  max-width: 1312px;
  margin: 0 auto;
}

@media (width >= 640px) {
  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items:  center;
    gap: 1.5rem;
  }
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  align-items:  center;
  gap: .5rem;
}

.footer-dot {
  color: #f5f5f74d;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.footer-link {
  color: #f5f5f7a6;
  text-decoration: none;
  transition: color .12s;
}

.footer-link:hover {
  color: var(--brand-orange);
}
