/* ---------------------------------------------
   DiPStrategy -- Fixed Social Sidebar
   style/sidebar.css
   --------------------------------------------- */

.social-fixed {
  position: fixed; right: 28px; top: 50%;
  z-index: 99; display: flex; flex-direction: column;
  gap: 16px; align-items: center; will-change: top;
}

.social-icon {
  width: 32px; height: 32px;
  background: rgba(255,255,255,0.85);
  border: 1.5px solid rgba(9,53,100,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
  cursor: pointer;
}

.social-icon:hover {
  background: #DEFF2D;
  border-color: #DEFF2D;
  transform: scale(1.1);
}

.social-icon svg { width: 14px; height: 14px; }

.aa-badge {
  width: 32px; height: 32px;
  background: rgba(255,255,255,0.85);
  border: 1.5px solid rgba(9,53,100,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700; font-size: 9px; color: #093564;
  cursor: pointer; transition: all 0.2s;
}

.aa-badge:hover { background: #DEFF2D; border-color: #DEFF2D; }

@media (max-width: 900px) {
  .social-fixed { display: none; }
}
