[data-dynamic="articles"] {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

[data-section="articles"] .article {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    padding: 24px;
    transition: transform 0.2s ease;
}

[data-section="articles"] .article:hover {
    transform: translateY(-4px);
}

[data-section="articles"] .article img {
    width: 300px;
    height: 246px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Correction : remplacement de .page_blog_text par .article-content */
[data-section="articles"] .article-content .title a {
    font-size: 28px;
    font-weight: 700;
    color: #2975c9;
    display: block;
    margin-block: 20px;
    text-decoration: none;
    line-height: 1.3;
    transition: color 0.2s ease;
}

[data-section="articles"] .article-content .title a:hover {
    color: #1c5aa0;
}

[data-section="articles"] .description {
    color: #4a5568;
    line-height: 1.6;
    font-size: 16px;
    margin-bottom: 24px;
}

[data-section="articles"] .informations {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
}

[data-section="articles"] .time {
    color: #718096;
    font-size: 14px;
    background: #f7fafc;
    padding: 8px 16px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

[data-section="articles"] .time i {
    color: #2975c9;
}

[data-section="articles"] .read-more .btn-primary {
    background: #2975c9;
    color: white;
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

[data-section="articles"] .read-more .btn-primary:hover {
    background: #1c5aa0;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(41, 117, 201, 0.2);
}

/* Mobile */
@media only screen and (max-width: 600px) {
    [data-section="articles"] .article {
        flex-direction: column;
        padding: 16px;
    }

    [data-section="articles"] .article img {
        width: 100%;
        height: 200px;
        margin: 0 0 16px 0;
    }

    [data-section="articles"] .article-content .title a {
        font-size: 24px;
        margin-block: 16px;
    }

    [data-section="articles"] .description {
        margin-bottom: 20px;
    }

    [data-section="articles"] .informations {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
        padding-top: 16px;
    }

    [data-section="articles"] .time {
        justify-content: center;
    }

    /* Supprime le bloc vide */
    /* [data-section="articles"] .read-more {} ← SUPPRIME CE BLOC */
}