/* ---------- DESKTOP FOOTER BAR ---------- */
:root{

  --footer-grad: linear-gradient(90deg, #0E98D6 0%, #7FC8F8 100%);
  
}



.site-footer{ width:100%; }
.site-footer__bar{ max-width:1280px; margin:1px auto 4px; padding:0 16px; }
.site-footer__grid{
  background:var(--footer-grad); color:#fff; border-radius:14px; padding:22px 24px;
  display:grid; grid-template-columns:1fr 1fr 1fr; gap:16px;
}
.footer-col{ display:flex; flex-direction:column; gap:8px; }
.footer-title{ font-weight:700; }
.footer-text{ color:#e6f3ff; }
.footer-link{ color:#e6f3ff; text-decoration:none; }
.footer-link:hover{ text-decoration:underline; }
.footer-social{ display:flex; gap:12px; margin-top:8px; }
.soc{
  width:34px; height:34px; display:inline-flex; align-items:center; justify-content:center;
  border-radius:50%; background:#eaf2fb; color:#0E98D6; text-decoration:none;
}
.soc:hover{ filter:brightness(.96); }

@media (max-width:900px){
  .site-footer__grid{ grid-template-columns:1fr; text-align:left; }
  .text-md-end{ text-align:left !important; }
}
