/* ================================================================
   NEWS PAGES STYLES - UNIFIED
   wwwroot/css/news.css
   Pages: News/Index, News/Dettaglio, NewsAdmin/Index, 
          NewsAdmin/Create, NewsAdmin/Edit
   
   NOTE: Stili base (card, form, table, badge, ecc.) sono in site.css
         Questo file contiene SOLO stili specifici News
   ================================================================ */

/* ============================================================
   NEWS/INDEX - NEWS CARDS
   ============================================================ */
.news-card {
    transition: all 0.3s ease;
    overflow: hidden;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2) !important;
}

.news-card img {
    transition: all 0.3s ease;
}

.news-card:hover img {
    transform: scale(1.1);
}

/* ============================================================
   NEWS/DETTAGLIO - ARTICLE VIEW
   ============================================================ */
.dettaglio-container {
    max-width: 1000px;
}

.hero-wrapper {
    overflow: hidden;
    border-radius: 20px;
}

.hero-img {
    width: 100%;
    max-height: 520px;
    object-fit: contain;
    background: #f3f4f6;
}

/* ============================================================
   NEWS/DETTAGLIO - EVENTO BOX
   ============================================================ */
.evento-box {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 16px;
    border: 1px solid #e5e5e5;
}

.evento-meta {
    font-size: .95rem;
    color: #555;
}

/* ============================================================
   NEWS/DETTAGLIO - AVATAR PARTECIPANTI
   ============================================================ */
.avatar-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #667eea;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
}

.avatar-more {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #ccc;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ============================================================
   NEWS/DETTAGLIO - CONTENT STYLING
   ============================================================ */
.news-content img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

.news-content p {
    line-height: 1.7;
}

/* ============================================================
   NEWSADMIN - MAP PREVIEW
   ============================================================ */
#mapBox .ratio {
    border-radius: 12px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
    .hero-img {
        max-height: 300px;
    }
}
