/* =========================================================
   Footer
   ========================================================= */

   .site-footer{
    border-top:1px solid rgba(0,0,0,.06);
    background:#fff; color:#111;
  }
  .site-footer .footer-inner{
    max-width:1100px; margin:0 auto; padding:20px 16px;
    display:grid; grid-template-columns:1fr auto 1fr; align-items:center;
  }
  
  /* Left / Center / Right alignment */
  .footer-links   { display:flex; align-items:center; gap:10px; justify-content:flex-start; justify-self:start; }
  .footer-copy    { margin:0; font-size:14px; opacity:.75; color:inherit; text-align:center; justify-self:center; }
  .footer-social  { display:flex; align-items:center; gap:10px; justify-content:flex-end; justify-self:end; }
  
  .footer-links a, .footer-social a { text-decoration:none; color:inherit; opacity:.75; }
  .footer-links a:hover, .footer-social a:hover { opacity:1; text-decoration:underline; }
  .footer-social a { gap:6px; font-weight:500; }
  .footer-social svg { fill:currentColor; display:none; opacity:.85; }
  
  /* Mobile: stack & center */
  @media (max-width:700px){
    .site-footer .footer-inner{ grid-template-columns:1fr; gap:8px; text-align:center; }
    .footer-links, .footer-social { justify-content:center; justify-self:center; }
  }
  