/* Sfondo generale */
body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', Arial, sans-serif;
    background-color: #d7d7d7;
    color: #222;
}

/* Contenitore principale della notizia */
.news-container {
    max-width: 900px;
    margin: 40px auto;
    padding: 20px 50px;  /* padding maggiore per distanziare le linee laterali */
    background-color: #fff;
    border-left: 3px solid #555;   /* linea verticale sinistra */
    border-right: 3px solid #555;  /* linea verticale destra */
}

/* Titolo */
.news-body h1 {
    font-size: 2.6rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: #37517e;
    text-align: left;
    text-shadow: 1px 1px 1px rgba(0,0,0,0.05);
    border-bottom: 1px solid #ccc;
    padding-bottom: 5px;
}

/* Data / autore sotto il titolo */
.news-date {
    display: block;
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 20px;
}

/* Sottotitolo */
.news-body h3 {
    font-size: 1.3rem;
    font-weight: 400;
    color: #555;
    margin-bottom: 25px;
    border-left: 4px solid #47b2e4;
    padding-left: 10px;
    text-align: left;
}

/* Immagine */
.news-body img {
    max-width: 100%;
    display: block;
    margin: 0 0 25px 0;  /* allineata a sinistra */
    object-fit: scale-down;
    border-radius: 6px;
    border: 1px solid #ccc;
    filter: brightness(0.95);  /* leggermente meno luminosa */
}

/* Testo */
.news-body p {
    line-height: 2;
    font-size: 1.05rem;
    margin-bottom: 25px;
    color: #333;
    text-align: justify;
}

/* Eventuali link all’interno della notizia */
.news-body a {
    color: #37517e;
    text-decoration: underline;
}

/* Header pagina (opzionale, tipo "Ultime News") */
.top-site {
    text-align: center;
    margin-bottom: 30px;
    font-size: 3rem;
    font-weight: 600;
    font-family: 'Inter', Arial, sans-serif;
}

.top-site a {
    text-decoration: none;
    color: #111;
}

.top-site hr {
    width: 200px;
    margin: 10px auto 0;
    border: 1px solid #ccc;
}