/* Struttura principale dell'opera */
main[role="main"] {
    max-width: 700px; /* Leggermente più stretto per migliorare la lettura */
    margin: 40px auto;
    padding: 0 20px;
    font-family: Georgia, serif;
    line-height: 1.8; /* Interlinea ampia per non affaticare l'occhio */
    color: #1a1a1a;
}
        body {
            font-family: 'Georgia', serif;
            line-height: 1.7;
            color: #2d3436;
            max-width: 1100px;
            margin: 0 auto;
            padding: 40px 20px;
            background-color: #fdfbf7;
        }
        header {
            text-align: center;
            margin-bottom: 50px;
            border-bottom: 2px solid #c9ad6a;
            padding-bottom: 30px;
        }
        h1 {
            color: #1a2a3a;
            font-size: 2.2em;
            margin-bottom: 10px;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        .intro-text {
            font-style: italic;
            color: #5d6d7e;
            max-width: 850px;
            margin: 0 auto;
            text-align: justify;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            background: #fff;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            margin-top: 20px;
        }
        th {
            background-color: #1a2a3a;
            color: #c9ad6a;
            padding: 15px;
            text-align: left;
            text-transform: uppercase;
            font-size: 0.8em;
            letter-spacing: 1px;
        }
        td {
            padding: 15px;
            border-bottom: 1px solid #f0f0f0;
            vertical-align: middle;
        }
        tr:hover {
            background-color: #fcfaf5;
        }
        .thumb-cell {
            width: 150px;
            text-align: center;
        }
        .thumb-cell img {
            border: 1px solid #e0e0e0;
            padding: 4px;
            background: #fff;
            transition: transform 0.2s ease;
        }
        .thumb-cell img:hover {
            transform: scale(1.1);
            border-color: #c9ad6a;
        }
        .subject-name {
            display: block;
            font-weight: bold;
            color: #1a2a3a;
            font-size: 1.1em;
            margin-bottom: 5px;
        }
        .description {
            color: #636e72;
            font-size: 0.95em;
        }
        .section-divider {
            background-color: #f4f7f6;
            font-weight: bold;
            color: #7f8c8d;
            text-align: center;
            font-size: 0.9em;
            text-transform: uppercase;
        }
		
/* nuova aggiunta*/
.approfondimento {
    background-color: #fff;
    padding: 30px;
    border-left: 5px solid #c9ad6a;
    margin-bottom: 40px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
.approfondimento h2 {
    color: #1a2a3a;
    font-size: 1.5em;
    margin-top: 0;
}
.approfondimento h3 {
    color: #c9ad6a;
    font-size: 1.1em;
}		

/* Fine lettura */
.fine-lettura {
    text-align: center;
    margin-top: 30px;
    font-style: italic;
    color: #999;
}

img {
  width: auto;
  max-width: auto; /* o la larghezza che preferisci */
  height: auto;     /* mantiene le proporzioni originali della tua foto */
  object-fit: contain;
}


