.site-footer {
  display: block;
  padding: 6px 0 26px;
  color: var(--muted);
  background: transparent;
  font-size: 0.82rem;
}

.site-footer .container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.footer-inner,
.footer-links {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-inner {
  justify-content: space-between;
}

.footer-logo {
  width: 150px;
  height: auto;
}

.footer-links a {
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--navy);
}

@media (max-width: 560px) {
  .site-footer .container {
    width: min(100% - 28px, 1180px);
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}
