.site-footer {
  background: var(--color-primary-dark);
  overflow: hidden;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px var(--side-padding) 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

.footer-logo {
  margin-bottom: 16px;
}

.footer-logo img {
  max-height: 40px;
  width: auto;
}

.footer-nav-list {
  display: flex;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-nav-list li a {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 16px;
  color: var(--color-white);
  line-height: 24px;
  transition: opacity 0.3s ease;
}

.footer-nav-list li a:hover {
  opacity: 0.8;
}

.footer-copyright {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 12px;
  color: var(--color-white);
}

.footer-disclaimer {
  max-width: 1198px;
}

.footer-disclaimer p {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 12px;
  color: var(--color-white);
  line-height: 18px;
  text-align: center;
}

.footer-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 23px;
  padding: 40px 0;
}

.footer-logo-item {
  display: inline-flex;
  align-items: center;
}

.footer-logo-item img {
  height: 28px;
  width: auto;
}

@media (max-width: 1023px) {
  .footer-nav-list {
    gap: 24px;
  }

  .footer-disclaimer {
    padding: 0 20px;
  }
}
