.sk8-footer {
  margin-top: 120px;
  padding: 50px 20px 70px;
  background: #9C9C9C;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  justify-content: center;
}

.sk8-footer .footer-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

.sk8-footer .footer-brand img {
  width: 110px;
  height: auto;
  object-fit: contain;
}

.sk8-footer .footer-socials {
  display: flex;
  gap: 28px;
  align-items: center;
  justify-content: center;
}

.sk8-footer .footer-socials a {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.sk8-footer .footer-socials a img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.sk8-footer .footer-socials a:hover {
  transform: translateY(-4px);
  opacity: 0.85;
}

@media (max-width: 640px) {
  .sk8-footer {
    padding: 42px 12px 60px;
  }

  .sk8-footer .footer-brand img {
    width: 95px;
  }

  .sk8-footer .footer-socials {
    gap: 20px;
  }
}
