/* =========================================================
   BLUE ORBIT GROUP — SOCIAL LINKS STYLE
   Shared across all Group sites. All four footers use a dark
   background, so one light-icon-on-dark treatment works
   everywhere without per-site overrides.
   ========================================================= */
.social-links-mount{ margin-top:18px; }
.social-links{
  display:flex;
  gap:10px;
}
.social-links a{
  width:44px;
  height:44px;
  border-radius:50%;
  border:1px solid rgba(255,255,255,0.2);
  display:flex;
  align-items:center;
  justify-content:center;
  color:rgba(255,255,255,0.78);
  transition:all .2s ease;
  flex-shrink:0;
}
.social-links a:hover{
  background:rgba(255,255,255,0.12);
  border-color:rgba(255,255,255,0.45);
  color:#ffffff;
  transform:translateY(-2px);
}
.social-links a:active{
  background:rgba(255,255,255,0.18);
  transform:scale(0.94);
}
.social-links svg{
  width:18px;
  height:18px;
}
