.sticky-ctas {
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 0;
    max-width: 90vw; /* sovrascritto inline da max-width:Npx */
    overflow-x: hidden;
    flex-wrap: nowrap;
}

.sticky-cta {
    flex: 1 1 0;          /* tutte le CTA si dividono lo spazio equamente */
    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;
    min-width: 0;         /* permette la riduzione sotto il contenuto */
}

.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;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 100%;
}

@media (max-width: 1024px) {
    .sticky-ctas {
        max-width: 100vw;
    }
}

@media (max-width: 767px) {
    .sticky-ctas {
        max-width: 100vw;
        width: 100vw;
    }
    .sticky-cta {
        padding: 10px 6px;
        flex: 1 1 0;
    }
    .sticky-cta-text {
        font-size: 13px;
    }
}

/* 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;
}