.site-footer {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
  padding: 80px 0 40px;
  background: transparent;
  color: #7a7a7a;
}

.site-footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  text-align: center;
}

.site-footer__top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.site-footer__brand {
  display: inline-block;
  font-family: "Inter", sans-serif;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 700;
  color: #f5a623;
  text-decoration: none;
  text-align: center;
}

.site-footer__email,
.site-footer__creator,
.site-footer__policy {
  display: inline-block;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  line-height: 1.5;
  color: #7a7a7a;
  text-decoration: none;
  text-align: center;
  transition: opacity 0.2s ease, color 0.2s ease;
}

.site-footer__email:hover,
.site-footer__creator:hover,
.site-footer__policy:hover,
.site-footer__social:hover {
  opacity: 0.78;
}

.site-footer__socials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.site-footer__social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  text-decoration: none;
}

.site-footer__social-icon {
  display: block;
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.site-footer__bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.site-footer__policy {
  font-weight: 500;
}

@media (max-width: 768px) {
  .site-footer {
    width: min(100%, calc(100% - 24px));
    margin: 44px auto 24px;
  }

  .site-footer__brand {
    font-size: 22px;
  }

  .site-footer__email,
  .site-footer__creator,
  .site-footer__policy {
    font-size: 14px;
  }

  .site-footer__socials {
    gap: 12px;
  }

  .site-footer__social {
    width: 26px;
    height: 26px;
  }
}
