.site-footer {
  padding: 24px 0;
}

.site-footer .footer-line {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
  white-space: nowrap;
  color: #aaa;
  font-size: 13px;
}

.site-footer .footer-links {
  display: flex;
  justify-content: flex-end;
  gap: 22px;
  color: #fff;
  font-size: 13px;
}

.site-footer .footer-copyright {
  color: #fff;
}

.site-footer .social-links {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
}

.site-footer .social-links a {
  width: 42px;
  height: 42px;
  border: 1px solid #4a4a4a;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #252525;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}

.site-footer .social-links a:hover {
  background: var(--eros-gold);
  border-color: var(--eros-gold);
  transform: translateY(-2px);
}

.site-footer .social-links img {
  width: 19px;
  height: 19px;
  object-fit: contain;
  filter: invert(1);
}

@media (max-width: 900px) {
  .site-footer .footer-line {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 18px;
    white-space: normal;
    text-align: center;
  }
  .site-footer .footer-copyright { order: 1; width: 100%; }
  .site-footer .social-links { order: 2; width: 100%; flex-wrap: wrap; }
  .site-footer .footer-links {
    order: 3;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px 20px;
  }
  .site-footer .social-links { gap: 9px; }
  .site-footer .social-links a { width: 38px; height: 38px; }
  .site-footer .social-links img { width: 17px; height: 17px; }
}
