@import url("https://fonts.googleapis.com/css2?family=Marcellus&family=Sora:wght@400;500;600&display=swap");

.site-footer {
  width: 100%;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #322f31;
  color: #ffffff;
  font-family: "Sora", sans-serif;
}

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

.site-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  width: calc(100% - 30px);
  max-width: 1300px;
  margin: 0 auto;
}

.site-footer-copyright {
  margin: 0;
  color: #ffffff;
  font-size: 15px;
  line-height: 1.5;
}

.site-footer-copyright a {
  color: #00ff6e;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.25s ease;
}

.site-footer-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  flex: 0 0 auto;
}

.site-footer-legal a {
  color: #ffffff;
  font-family: "Marcellus", serif;
  font-size: 17px;
  line-height: 1.2;
  text-decoration: none;
  transition: color 0.25s ease;
}

.site-footer-legal a:hover,
.site-footer-legal a:focus-visible,
.site-footer-copyright a:hover,
.site-footer-copyright a:focus-visible {
  color: #00ff6e;
}

.site-footer-divider {
  width: 1px;
  height: 28px;
  flex: 0 0 1px;
  background: #00ff6e;
}

.site-footer-social {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer-social li {
  margin: 0;
  padding: 0;
}

.site-footer-social a {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 1px solid #00ff6e;
  border-radius: 50%;
  color: #00ff6e;
  transition:
    color 0.25s ease,
    background-color 0.25s ease,
    transform 0.25s ease;
}

.site-footer-social a:hover,
.site-footer-social a:focus-visible {
  background: #00ff6e;
  color: #322f31;
  transform: translateY(-2px);
}

.site-footer-social svg {
  display: block;
  width: 14px;
  height: 14px;
}

@media (max-width: 767px) {
  .site-footer-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }

  .site-footer-actions {
    gap: 13px;
  }

  .site-footer-legal a {
    font-size: 16px;
  }

  .site-footer-divider {
    height: 26px;
  }
}

@media (max-width: 420px) {
  .site-footer-copyright {
    font-size: 13px;
  }

  .site-footer-actions {
    width: 100%;
    gap: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-footer a {
    transition: none;
  }
}
