.site-footer {
  --sf-bg: #0a0a0a;
  --sf-text: #ffffff;
  --sf-text-muted: #888888;
  --sf-accent: #e34449;
  --sf-border: rgba(255, 255, 255, 0.08);
  --sf-transition: 0.15s ease;
}

.site-footer,
.site-footer *,
.site-footer *::before,
.site-footer *::after {
  box-sizing: border-box;
}

.site-footer {
  background-color: var(--sf-bg);
  border-top: 1px solid var(--sf-border);
  padding: 32px 0;
  margin-top: auto;
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer a {
  text-decoration: none;
  color: inherit;
}

.site-footer__container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 16px;
}

.site-footer__wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.site-footer__top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.site-footer__logo {
  display: block;
  height: 32px;
  width: auto;
}

.site-footer__logo img {
  height: 100%;
  width: auto;
}

.site-footer__nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 16px;
}

.site-footer__nav a {
  font-size: 13px;
  color: var(--sf-text-muted);
  transition: color var(--sf-transition);
}

.site-footer__nav a:hover {
  color: var(--sf-accent);
}

.site-footer__bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding-top: 24px;
  border-top: 1px solid var(--sf-border);
}

.site-footer__copyright {
  font-size: 12px;
  color: var(--sf-text-muted);
  text-align: center;
}

.site-footer__rta {
  height: 24px;
  width: auto;
  opacity: 0.6;
  transition: opacity var(--sf-transition);
}

.site-footer__rta:hover {
  opacity: 1;
}

@media (min-width: 768px) {
  .site-footer {
    padding: 40px 0;
  }

  .site-footer__wrapper {
    gap: 32px;
  }

  .site-footer__top {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .site-footer__nav ul {
    justify-content: flex-end;
    gap: 24px;
  }

  .site-footer__nav a {
    font-size: 14px;
  }

  .site-footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    padding-top: 32px;
  }

  .site-footer__copyright {
    text-align: left;
  }
}

@media (min-width: 1024px) {
  .site-footer__container {
    padding: 0 24px;
  }

  .site-footer__logo {
    height: 36px;
  }

  .site-footer__rta {
    height: 28px;
  }
}
