.site-footer {
  background: linear-gradient(to right, #111, #000);
  color: #fff;
  padding: 28px 20px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;

  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-copy {
  font-size: 14px;
  opacity: 0.8;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  color: #fff;
  font-size: 14px;
  text-decoration: none;
  transition: 0.3s;
}

.footer-links a:hover {
  opacity: 0.6;
}

.footer-social {
  display: flex;
  gap: 14px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
  transition: 0.3s;
}

.footer-social a:hover {
  background: #fff;
  color: #000;
}

@media (max-width: 768px) {

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-social {
    order: 1;
  }

  .footer-links {
    order: 2;
    flex-wrap: wrap;
    justify-content: center;
  }

  .footer-copy {
    order: 3;
    font-size: 12px;
    opacity: 0.7;
  }

}