.site-footer {
  background: #0f172a;
  color: var(--clr-white);
  padding: 1rem 0;
  font-size: 0.85rem;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  align-items: center;
  justify-content: space-between;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.footer-nav a {
  text-decoration: none;
  color: var(--clr-white);
  opacity: 0.8;
}

.footer-nav a:hover {
  opacity: 1;
}

.footer-right {
  display: flex;
  gap: 0.8rem;
  align-items: center;
  flex-wrap: wrap;
}

.footer-social {
  display: flex;
  gap: 0.4rem;
}

.footer-social a {
  color: var(--clr-white);
  opacity: 0.8;
}

.footer-social a:hover {
  opacity: 1;
}

@media (min-width: 650px) {
  .footer-inner {
    flex-direction: row;
  }
}
