/* footer.css - minimal, safe footer styles */

.site-footer {
  background: #fff;
  padding: 18px 20px;
  border-top: 1px solid #eef2f7;
  margin-top: 40px;
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center; /* icons centered by default */
  gap: 18px;
  flex-direction: column;
}

.footer-social {
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}

.social-link {
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease;
}

.social-link svg { display: block; }

.social-link:hover {
  background: rgba(10,102,255,0.06);
  color: var(--blue-500);
}

.footer-copy small {
  color: var(--muted);
  display: block;
}
