.site-footer {
  background-color: #1a1a1d;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}

.site-footer__container {
  padding: 2rem 0.5rem;
  color: #fff;
  font-size: 0.8rem;
}

.site-footer__main {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.site-footer__container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.site-footer__main a {
  text-decoration: none;
  color: #fff;
}

.site-footer__brand {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.footer-navigation__list {
  display: flex;
  flex-direction: column;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 1.5rem;
}

.legal-info {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.legal-info__copyright {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  align-items: center;
}

.legal-info__badge {
  width: 40px;
  height: 40px;
}

.legal-info__text p {
  margin: 0;
}

.legal-links__list {
  list-style: none;
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
}

.footer-navigation__item a,
.legal-links__item a {
  padding: 0.5rem;
  border-radius: 10px;
  transition: 0.2s;
}

.footer-navigation__item a:hover,
.legal-links__item a:hover {
  background-color: #262628;
}

@media (max-width: 1010px) {
  .legal-links__list {
    flex-wrap: wrap;
  }

  .site-footer__container {
    font-size: 0.5rem;
  }
}

@media (max-width: 768px) {
  .legal-info__badge {
    width: 20px;
    height: 20px;
  }

  .legal-info__copyright {
    flex-direction: column;
  }
}
