/* =========================================
   ARTICLE STYLE - PAUSA CAFFÈ
   Stili specifici per articoli della rubrica Pausa Caffè
   ========================================= */

/* OVERRIDE STILE POP - PAUSA CAFFÈ */

/* Importa stili condivisi */
@import url('article_style_shared.css');

/* Header più vivace e meno "istituzionale" */
.article-header.pop-header {
    /* background: linear-gradient(135deg, rgb(162, 191, 55) 0%, rgb(220, 230, 190) 100%); */
    background: #fff;
    border-bottom: none;
    padding: 4rem 0 3rem;
}

.article-header.pop-header h1 {
    color: #fff;
    text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.1);
    font-size: 3.5rem;
    line-height: 1.2;
}

.article-header.pop-header h1::after {
    background: #fff;
}

/* Corpo del testo più leggibile e arioso */
.article-content.pop-content {
    font-size: 1.15rem;
    line-height: 1.7;
}

.article-content.pop-content h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    border-bottom: none;
}

/* Citazioni in evidenza stile rivista */
.pull-quote {
    background: #fff9e6;
    border-left: 5px solid rgb(220, 230, 190);
    padding: 20px;
    font-size: 1.3rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: #555;
    margin: 2rem 0;
    border-radius: 0 10px 10px 0;
    line-height: 1.5;
}

/* Badge categoria colorato */
.pop-badge {
    background: rgb(50, 163, 205);
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 1rem;
    display: inline-block;
    margin-bottom: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Stili per tabelle semplici */
.simple-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.simple-table th {
    background: rgb(162, 191, 55);
    color: white;
    padding: 12px;
    text-align: left;
}

.simple-table td {
    padding: 12px;
    border-bottom: 1px solid #eee;
}

.simple-table tr:last-child td {
    border-bottom: none;
}

.simple-table tr:hover {
    background: #f9f9f9;
}

/* Box informativi */
.info-card {
    background: #f0f7ff;
    border-left: 5px solid rgb(106, 178, 230);
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 0 10px 10px 0;
}

.warning-card {
    background: #fff9e6;
    border-left: 5px solid rgb(254, 199, 81);
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 0 10px 10px 0;
}

/* TOC stile Pausa Caffè */
.toc-content[style*="rgb(162,191,55)"] h3,
.toc-content[style*="rgb(162, 191, 55)"] h3 {
    border-bottom-color: rgb(162, 191, 55);
}

/* =========================================
   RESPONSIVE - Pausa Caffè
   ========================================= */

@media (max-width: 768px) {
    .article-header.pop-header h1 {
        font-size: 2.5rem;
    }

    .article-content.pop-content h2 {
        font-size: 2rem;
    }

    .pull-quote {
        font-size: 1.1rem;
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .simple-table {
        display: block;
        overflow-x: auto;
    }

    .article-header.pop-header h1 {
        font-size: 2rem;
    }
}