/* tyga.games shared site footer (rich grid). Uses page CSS vars:
   --cherry, --text, --text-secondary, --border, --bg-alt, --radius */
footer {
  border-top: 1px solid var(--border);
  background: var(--bg-alt);
  padding: 64px 0 32px;
}
footer .footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
footer .footer-brand img { height: 26px; display: block; }
footer .footer-brand p {
  color: var(--text-secondary);
  margin-top: 16px;
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 320px;
}
footer .footer-column h4 {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--text);
}
footer .footer-links { list-style: none; margin: 0; padding: 0; }
footer .footer-links li { margin-bottom: 10px; }
footer .footer-links a {
  color: var(--text-secondary);
  font-size: 0.9rem;
  transition: color 0.18s;
}
footer .footer-links a:hover { color: var(--cherry); }
footer .footer-bottom {
  padding-top: 28px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
  color: var(--text-secondary);
}
footer .footer-bottom a { color: var(--text-secondary); }
footer .footer-bottom a:hover { color: var(--cherry); }
footer .footer-social { display: flex; align-items: center; gap: 14px; }
footer .footer-social a { display: inline-flex; color: var(--text-secondary); transition: color 0.2s; }
footer .footer-social a:hover { color: var(--cherry); }
footer .footer-social svg { width: 20px; height: 20px; }

@media (max-width: 768px) {
  footer .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  footer .footer-bottom { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
  footer .footer-grid { grid-template-columns: 1fr; }
}
