.site-footer {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 64px 24px;
  overflow: hidden;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  justify-items: center;
  gap: 24px;
}

.footer-logo .site-logo {
  justify-content: center;
}

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

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

.footer-nav-list li a:hover {
  color: var(--color-primary);
}

.footer-disclaimer {
  text-align: center;
}

.disclaimer-title {
  font-family: var(--font-dm);
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 12px;
}

.disclaimer-text {
  font-family: var(--font-dm);
  font-size: 12px;
  line-height: 1.8;
  opacity: 0.8;
  max-width: 800px;
}

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

.footer-logos img {
  max-height: 28px;
  width: auto;
  object-fit: contain;
}

.footer-copyright {
  font-family: var(--font-lato);
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  text-align: center;
  line-height: 16px;
}

@media (max-width: 768px) {
  .site-footer {
    padding: 48px 24px;
  }

  .footer-nav-list {
    gap: 12px;
    justify-content: center;
  }

  .footer-logos {
    gap: 16px;
    justify-content: center;
  }

  .disclaimer-text {
    font-size: 11px;
  }
}
