﻿


/* Base tipografica: assicurati che line-height sia consistente con il tema */

.label-text {
    display: block; /* <--- AGGIUNTO: fondamentale */
    line-height: 1.5;
    white-space: normal; /* per sicurezza, niente nowrap */

}

.label-wrapper {
    position: relative;
    overflow: visible !important;
}

.clamp-height-2 {
    max-height: calc(1.5em * 2); /* 2 righe */
    overflow: hidden;
    position: relative;
}

    .clamp-height-2::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 1.2em;
        background: linear-gradient(to bottom, rgba(255,255,255,0), #fff);
    }

/* Stile del pulsante toggle (UIkit opzionale) */
.toggle-link {
    margin-top: 4px;
    cursor: pointer;
}
