/**
 * Styles personnalisés pour les pages et articles
 */

/* Titres dans les pages et articles */
.page .entry-content h2,
.single .entry-content h2,
article .entry-content h2 {
    font-size: 42px;
    margin-top: 32px;
    margin-bottom: 5px;
}

.page .entry-content h1,
.single .entry-content h1,
article .entry-content h1 {
    font-size: 52px;
    margin-top: 32px;
    margin-bottom: 10px;
}

.page .entry-content h3,
.single .entry-content h3,
article .entry-content h3 {
    font-size: 32px;
    margin-top: 28px;
    margin-bottom: 5px;
}

.page .entry-content h4,
.single .entry-content h4,
article .entry-content h4 {
    font-size: 24px;
    margin-top: 24px;
    margin-bottom: 5px;
}

.page .entry-content h5,
.single .entry-content h5,
article .entry-content h5 {
    font-size: 20px;
    margin-top: 20px;
    margin-bottom: 5px;
}

.page .entry-content h6,
.single .entry-content h6,
article .entry-content h6 {
    font-size: 18px;
    margin-top: 16px;
    margin-bottom: 5px;
}

/* Responsive - Tablette */
@media (max-width: 991px) {
    .page .entry-content h2,
    .single .entry-content h2,
    article .entry-content h2 {
        font-size: 36px;
        margin-top: 28px;
    }
    
    .page .entry-content h1,
    .single .entry-content h1,
    article .entry-content h1 {
        font-size: 44px;
        margin-top: 28px;
    }
    
    .page .entry-content h3,
    .single .entry-content h3,
    article .entry-content h3 {
        font-size: 28px;
        margin-top: 24px;
    }
}

/* Responsive - Mobile */
@media (max-width: 767px) {
    .page .entry-content h2,
    .single .entry-content h2,
    article .entry-content h2 {
        font-size: 28px;
        margin-top: 24px;
    }
    
    .page .entry-content h1,
    .single .entry-content h1,
    article .entry-content h1 {
        font-size: 34px;
        margin-top: 24px;
    }
    
    .page .entry-content h3,
    .single .entry-content h3,
    article .entry-content h3 {
        font-size: 24px;
        margin-top: 20px;
    }
    
    .page .entry-content h4,
    .single .entry-content h4,
    article .entry-content h4 {
        font-size: 20px;
        margin-top: 18px;
    }
}



