.site-footer {
  background: #000000;
  color: var(--white);
}

.site-footer__inner {
  align-items: center;
  display: grid;
  gap: 28px;
  grid-template-columns: 1fr auto;
  min-height: 120px;
}

.site-footer p {
  margin: 0;
  overflow-wrap: anywhere;
}

.site-footer__social {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}

.site-footer__social a {
  align-items: center;
  background: #31ad42;
  color: var(--white);
  display: inline-flex;
  font-size: 18px;
  height: 38px;
  justify-content: center;
  text-decoration: none;
  width: 38px;
}

.site-footer__copyright {
  padding: 0 20px 24px;
  text-align: center;
}

@media (max-width: 767px) {
  .site-footer__inner {
    grid-template-columns: 1fr;
    padding: 35px 20px 18px;
    text-align: center;
  }

  .site-footer__social {
    justify-content: center;
  }

  .site-footer__copyright {
    font-size: 14px;
  }
}
