.site-footer {
  background-color: var(--company-gray-200);
  padding: var(--m) var(--s);
}

.site-footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  grid-column-gap: var(--m);
  grid-row-gap: var(--s);
}

.site-footer__copy {
  color: var(--company-gray-600);
  font-size: 12px;
  margin: 0;
}

.site-footer__social {
  display: flex;
  grid-column-gap: var(--s);
}

.site-footer__social-link {
  width: 32px;
  height: 32px;
  border: 1px solid var(--company-gray-400);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color .2s ease, background-color .2s ease;
}

.site-footer__social-link img {
  width: 14px;
  height: 14px;
  filter: brightness(0) invert(1);
  transition: filter .2s ease;
}

.site-footer__social-link:hover {
  background-color: var(--white);
  border-color: var(--white);
}

.site-footer__social-link:hover img {
  filter: none;
}

@media screen and (max-width: 479px) {
  .site-footer__inner {
    justify-content: center;
    text-align: center;
  }
}
