/* Styles spécifiques au corps de l'article Assuromieux */

.article_body .article-content-container {
    --article-primary: #0f4c81;
    --article-soft: #eaf3fb;
    --article-border: #dbe3ee;
    --article-muted: #667085;
    color: #1f2937;
    line-height: 1.8;
}

/* Éviter conflit avec la classe .hero globale */
.article_body .article-hero-section {
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--article-border);
    margin-bottom: 2rem;
}

.article_body .article-breadcrumb, 
.article_body .article-update-date {
    color: var(--article-muted);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Blocs stylisés (Points clés, Notes, Sommaire) */
.article_body .article-key-points,
.article_body .article-note-box,
.article_body .article-cta-box,
.article_body #art-sommaire { /* Pour votre div dynamique */
    background: var(--article-soft);
    border: 1px solid var(--article-border);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 2rem 0;
}

/* Titres internes à l'article */
.article_body h2 {
    color: var(--article-primary);
    font-weight: 700;
    margin-top: 3rem;
}

.article_body h3 {
    color: #12395d !important;
}

/* Cartes de comparaison adaptées à Bootstrap */
.article_body .article-info-card {
    background: #fff;
    border: 1px solid var(--article-border);
    border-radius: 12px;
    padding: 1.25rem;
    transition: transform 0.2s;
}

.article_body .article-info-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* Liens */
.article_body a {
    color: #0b6bcb;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.article_body a:hover {
    color: var(--article-primary);
}