.site-footer {
  background: #151417;
  padding-top: 38px;
  overflow: hidden;
}

.site-footer__top {
  display: flex;
  align-items: center;
}

.site-footer__logo {
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  color: #fff;
}

.site-footer__logo-mark {
  display: block;
  width: 25px;
  height: 18px;
  flex-shrink: 0;
  overflow: hidden;
}

.site-footer__logo-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.site-footer__logo-text {
  font-family: ppmori, sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.6px;
  color: #fff;
  white-space: nowrap;
}

.site-footer__bottom {
  margin-top: 38px;
  min-height: 70px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.site-footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px 80px;
  min-height: 70px;
  padding: 24px 0;
}

.site-footer__menu {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 80px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer__menu li {
  margin: 0;
}

.site-footer__menu a,
.site-footer__copy {
  font-family: inter, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  color: #e5e5e6;
}

.site-footer__menu a {
  display: block;
  text-decoration: none;
  transition: color 0.3s ease-in-out;
}

.site-footer__menu a:hover {
  color: #fff;
}

.site-footer__copy {
  margin: 0 0 0 auto;
  text-align: right;
  white-space: nowrap;
}

@media (max-width: 991px) {
  .site-footer__bottom-inner {
    flex-wrap: wrap;
    gap: 16px 32px;
  }

  .site-footer__menu {
    gap: 24px 40px;
  }
}

@media (max-width: 639px) {
  .site-footer {
    padding-top: 32px;
  }

  .site-footer__bottom {
    margin-top: 32px;
  }

  .site-footer__bottom-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 0 28px;
  }

  .site-footer__menu {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .site-footer__copy {
    margin: 8px 0 0;
    text-align: left;
    white-space: normal;
  }
}
