.site-footer {
  color: #fff;
  background: var(--magenta);
}

.site-footer__inner {
  display: grid;
  margin: 0 auto;
  padding: 24px 20px 0 20px;
  text-align: left;
}

.site-footer__brand {
  display: inline-flex;
  align-items: center;
  margin: 0 auto 24px auto;
  padding: 20px 60px;
}

.site-footer__brand img {
  display: block;
  width: 194px;
  height: auto;
  filter: brightness(0) invert(1);
}

.site-footer__nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(145px, 1fr));
  gap: 32px 24px;
}

.site-footer__group h2 {
  margin: 0 0 24px;
  color: inherit;
  font-size: 20px;
  line-height: 135%;
  font-weight: 600;
}

.site-footer__group ul,
.site-footer__social,
.site-footer__legal ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer__group li + li {
  margin-top: 20px;
}

.site-footer a {
  color: inherit;
}

.site-footer__group a {
  font-size: 16px;
  line-height: 135%;
  font-weight: 500;
}

.site-footer__group a:hover,
.site-footer__legal a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site_footer__social_container {
  width: 100%;
  display: flex;
  justify-content: center;
}

.site-footer__social {
  width: 248px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 64px;
}

.site-footer__social a {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 999px;
  background: #fff;
}

.site-footer__social img {
  display: block;
  width: 37.5px;
  height: 37.5px;
  object-fit: contain;
}

.site-footer__legal {
  display: grid;
  align-items: end;
  gap: 24px;
  padding: 24px 0 60px 0;
  margin-top: 24px;
}

.site-footer__legal p {
  margin: 0;
  font-size: 14px;
  line-height: 100%;
}

.site-footer__legal ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
}

.site-footer__legal a {
  font-size: 14px;
  font-weight: 400;
  line-height: 100%;
}

@media (min-width: 768px) {
  .site-footer__inner {
    padding: 20px 60px;
  }
  .site-footer__brand {
    width: fit-content;
    padding: 20px 0;
    margin: 0 0 24px;
  }

  .site-footer__nav {
    grid-template-columns: repeat(4, minmax(0, 225px));
    gap: 60px;
    padding-bottom: 40px;
  }

  .site-footer__group h2 {
    margin-bottom: 24px;
    font-size: 20px;
  }

  .site-footer__group li + li {
    margin-top: 18px;
  }

  .site-footer__social {
    justify-content: start;
    gap: 24px;
    width: 100%;
    margin: 48px 0 20px 0;
  }

  .site-footer__social a {
    width: 38px;
    height: 38px;
  }

  .site-footer__legal {
    display: flex;
    justify-content: space-between;
  }

  .site-footer__legal p {
    font-size: 14px;
    line-height: 1.05;
  }

  .site-footer__legal ul {
    justify-content: space-between;
    gap: 40px;
    white-space: normal;
  }
}

@media (max-width: 340px) {
  .site-footer__legal {
    gap: 16px;
    padding: 24px 16px 0;
  }

  .site-footer__legal ul {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 12px 20px;
  }
}