/* Styles pour les encadrés promotionnels d'articles */
.article-callout {
    position: relative;
    margin: 30px 0 30px 20px;
    padding: 20px 20px 20px 25px;
    background: linear-gradient(135deg, #fff5e6 0%, #fff 100%);
    border-left: 5px solid darkorange;
    border-radius: 0 8px 8px 0;
    box-shadow: 0 2px 8px rgba(255, 140, 0, 0.15);
    transition: all 0.3s ease;
}

.article-callout:hover {
    box-shadow: 0 4px 16px rgba(255, 140, 0, 0.25);
    transform: translateX(5px);
}

.article-callout p {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    font-weight: 400;
}

/* Lien inline dans le callout */
.callout-inline-link {
    color: darkorange !important;
    text-decoration: underline !important;
    font-weight: 600;
    transition: all 0.2s ease;
}

.callout-inline-link:hover {
    color: #ff8c00 !important;
    text-decoration: none !important;
}

/* Responsive design */
@media (max-width: 768px) {
    .article-callout {
        margin-left: 10px;
        padding: 15px 15px 15px 20px;
    }
    
    .article-callout p {
        font-size: 14px;
    }
}

/* Styles pour l'éditeur CKEditor */
.cke_editable .article-callout {
    cursor: pointer;
}

.cke_editable .article-callout:hover {
    outline: 2px dashed darkorange;
}
