.gallery-thumbs {
    display: flex;
    gap: 10px;
    margin-top: 25px;
    justify-content: center;
    flex-wrap: wrap;
}

.gallery-thumbs img {
    width: 150px;
    height: auto;
    border-radius: 6px;
    object-fit: cover;
}

.gallery-thumbs a img {
    width: 150px;      /* scegli tu */
    height: 150px;     /* scegli tu */
    object-fit: cover; /* ritaglia mantenendo il centro */
    border-radius: 6px;
}

/* Mobile: impila le immagini */
@media (max-width: 600px) {
    .gallery-thumbs {
        flex-direction: column;
        align-items: center;
    }

    .gallery-thumbs img {
        width: 90%;
        max-width: 600px;
    }
}

.news-cover {
    
    height: 300px;       /* scegli tu l’altezza */
    object-fit: cover;   /* mantiene proporzioni senza deformare */
    border-radius: 8px;  /* opzionale */
    margin-bottom: 20px;
}

.news-content,
.news-source {
    text-align: left !important;
}

.news-source a {
    word-break: break-all;
    overflow-wrap: break-word;
    display: inline-block;
    max-width: 95%;
}


