.sticky-ctas{width:100%;display:flex;flex-direction:row; /* orizzontale */ gap:0;max-width:90vw; /* sovrascritto inline da max-width:Npx */ overflow-x:auto;}
.sticky-cta {flex: 0 0 auto;display: flex;align-items: center;gap: 8px;padding: 10px 14px;border-radius: 0;text-decoration: none;box-shadow: none;border-left: 1px solid rgba(255,255,255,.7);flex-direction: column;flex-grow: 1;flex-basis: 0;}

.sticky-cta:first-child{ border-left:none; }
.sticky-cta-icon{ height:28px; display:inline-block }
.sticky-cta-text {font-weight: 400;line-height: 1;font-size: 16px;}


@media (max-width: 767px){
  .sticky-ctas{ max-width:100vw; }
  .sticky-cta{ padding:10px 12px; }
}

/* Toggle per device (usa data-device impostato via JS inline) */
.sticky-ctas[data-device="desktop"].hide-desktop{ display:none !important; }
.sticky-ctas[data-device="tablet"].hide-tablet{ display:none !important; }
.sticky-ctas[data-device="mobile"].hide-mobile{ display:none !important; }


.sticky-cta svg {width: 100%;height: inherit;}
