/* tribuna.css */
body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.7;
    color: #333;
    background-color: #fff;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 800px; /* Testo più stretto per leggere meglio */
    margin: 40px auto;
    padding: 20px;
    background: #fff;
}

/* Header emergenza economica */
.emergency-header {
    text-align: center;
    margin-bottom: 40px;
}

.emergency-header a {
    text-decoration: none;
    color: #000;
    font-family: 'TheBoldFont', sans-serif;
}

.emergency-small { font-size: 18px; font-weight: 300; }
.emergency-large { font-size: 28px; font-weight: 700; display: block; margin-top: 5px; }

/* Stili del testo */
h1 { color: #d32f2f; font-size: 24px; margin-bottom: 5px; }
.subtitle { font-style: italic; color: #666; margin-bottom: 30px; border-bottom: 1px solid #eee; padding-bottom: 10px; }
.author { font-weight: bold; font-size: 1.2em; color: #000; margin-top: 20px; }

p { margin-bottom: 1.5em; text-align: justify; }

/* Link e Azioni */
.actions {
    text-align: center;
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.actions a {
    margin: 0 15px;
    color: #d32f2f;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: bold;
    text-decoration: none;
}

.actions a:hover { text-decoration: underline; }

/* Responsive */
@media (max-width: 600px) {
    .container { padding: 15px; margin: 10px auto; }
    .emergency-large { font-size: 20px; }
}