/* ── Film Week Block — Frontend style ───────────────────────────────────── */
/* Mantiene il look identico al template originale, senza CSS inline ridondante */

#nnews-outings .film-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

#nnews-outings .film-item {
    display: grid;
    grid-template-columns: 160px auto;
    gap: 1.5rem;
    align-items: start;
    background: #f9f9f9;
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,.08);
    border: 1px solid rgba(0,0,0,.04);
    width: 100%;
    box-sizing: border-box;
}

#nnews-outings .film-cover {
    position: relative;
    cursor: pointer;
}
#nnews-outings .film-cover img:first-child {
    width: 100%;
    border-radius: 6px;
    display: block;
}
#nnews-outings .film-cover .play-icon {
    position: absolute;
    top: 50%; left: 50%;
    width: 44px; height: 44px;
    transform: translate(-50%, -50%);
    opacity: 0.9;
    pointer-events: none;
}

#nnews-outings .film-info { max-width: 100%; }
#nnews-outings .film-info h2 {
    margin: 0 0 0.25rem;
    font-size: 1.25rem;
    line-height: 1.3;
}
#nnews-outings .film-meta {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.6rem;
}
#nnews-outings .film-details {
    font-size: 0.95rem;
    line-height: 1.45;
    color: #222;
}
#nnews-outings .film-details p { margin: 0; }

#nnews-video-player {
    margin: 1.25rem 0;
    max-width: 900px;
}

@media ( max-width: 600px ) {
    #nnews-outings .film-item {
        grid-template-columns: 1fr;
    }
}
