/* Hero News Detail - Logo Centrato */
.news-detail-hero .hero-background img {
    object-fit: contain !important;
    object-position: center;
    padding: 2rem;
}

/* Hero News List - Background Normale (cover) */
.news-list-hero .hero-background img {
    object-fit: cover !important;
    object-position: center;
}

/* Card News - Logo Centrato con Sfondo */
.news-card-img-wrapper {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    border-radius: 15px 15px 0 0;
}

.news-card-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain !important;
    object-position: center;
}