/* Aerovisus: floating social icons (YouTube over Facebook), anchored right */
.aero-social-float{
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  right: clamp(8px, 1.8vw, 16px);
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 950; /* below overlays (1000+) but above content */
  pointer-events: none; /* only icons capture clicks */
}
.aero-social-float a{
  pointer-events: auto;
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 9999px;
  box-shadow: 0 8px 24px rgba(0,0,0,.35);
  border: 1px solid rgba(255,255,255,.16);
  text-decoration: none;
  transition: transform .15s ease, filter .15s ease;
}
.aero-social-float a svg{ width: 22px; height: 22px; }
.aero-social-float a:hover{ transform: scale(1.05); filter: brightness(1.05); }

/* Brand colors */
.aero-social-float .yt{ background: #ff0000; color:#fff; }
.aero-social-float .fb{ background: #1877F2; color:#fff; }

/* On very small screens, move to bottom-right to avoid blocking text */
@media (max-width: 600px){
  .aero-social-float{
    top: auto; bottom: 16px; transform: none; right: 12px; gap: 8px;
  }
}
