/* ==================================================
   ARTICOLO 1 — LAYOUT MINIMALE EDITORIALE
================================================== */

.articolo-container {
    max-width: 900px; /* Ridotto per rendere le righe di testo perfette per la lettura */
    margin: 0 auto;
    padding: 40px 20px 80px;
    color: #f1f1f1;
}

/* Tasto Torna Indietro */
.articolo-back {
    margin-bottom: 40px;
}
.articolo-back a {
    color: var(--accent, #c8a96e);
    text-decoration: none;
    font-size: 0.95rem;
    transition: opacity 0.2s;
}
.articolo-back a:hover {
    opacity: 0.8;
}

/* Header Centrale */
.articolo-hero {
    text-align: center;
    margin-bottom: 60px;
}
.articolo-hero h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    font-family: var(--font1);
}
.articolo-hero .articolo-lead {
    font-size: 1.3rem;
    opacity: 0.7;
    font-style: italic;
}
.articolo-divider {
    width: 80px;
    height: 1px;
    background: var(--accent, #c8a96e);
    margin: 25px auto 0;
}

/* Griglia o Layout dei Blocchi */
.articolo-layout-clean {
    display: flex;
    flex-direction: column;
    gap: 45px; /* Spazio ordinato tra i paragrafi */
}

/* Singolo Capitolo */
.articolo-blocco {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 30px;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.articolo-blocco:hover {
    border-color: rgba(200, 169, 110, 0.2);
}

/* Testi Interni */
.articolo-testo h2 {
    color: var(--accent, #c8a96e);
    font-size: 1.4rem;
    margin-bottom: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.articolo-testo p {
    font-size: 1.1rem;
    line-height: 1.75;
    opacity: 0.85;
    margin-bottom: 14px;
}

.articolo-testo p:last-child {
    margin-bottom: 0;
}

/* Ottimizzazione Mobile */
@media (max-width: 768px) {
    .articolo-hero h1 {
        font-size: 2.2rem;
    }
    .articolo-blocco {
        padding: 20px;
    }
}