.site-footer {
  background-color: var(--royal-purple);
  padding: 40px 0;
}

.site-footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
  text-align: center;
}

.site-footer__logo img {
  height: 60px;
  width: auto;
}

.site-footer__menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 40px;
}

.site-footer__menu li a {
  font-family: "Rubik", sans-serif;
  font-weight: 900;
  font-size: 15px;
  color: var(--gold);
  transition: opacity 0.2s;
}

.site-footer__menu li a:hover {
  opacity: 0.75;
}

.site-footer__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.site-footer__logo-item img {
  max-height: 24px;
  width: auto;
}

.site-footer__disclaimer {
  max-width: 800px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.site-footer__disclaimer-text {
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
}

.site-footer__copyright {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 12px;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  opacity: 0.7;
}

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

  .site-footer__menu {
    gap: 8px 24px;
  }
}
