#caroselloannunci .carousel-item img {
    max-height: 50vh; /* Altezza massima delle immagini nel carosello di dettaglio annunci */
    object-fit: contain; /* Or use 'cover' if you prefer that behavior */
}


.text-truncate-2 {
    display: -webkit-box; /* Usa il layout flexbox */
    -webkit-line-clamp: 2; /* Numero di righe massimo */
    -webkit-box-orient: vertical; /* Orientamento verticale */
    overflow: hidden; /* Nasconde il testo in eccesso */
}
@media (min-width: 1441px) {
    .text-truncate-2 {
        -webkit-line-clamp: 4; /* Limite di 4 righe */
    }
}
