/* Styles pour les encarts */
.encart {
    margin: 20px 0;
    padding: 16px 20px;
    border-left: 4px solid;
    border-radius: 0 6px 6px 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
}

.encart-content {
    margin: 0;
}

.encart-content p {
    margin: 0 0 8px 0;
}

.encart-content p:last-child {
    margin-bottom: 0;
}

/* Types d'encarts */
.encart.info {
    background-color: #e3f2fd;
    border-left-color: #2196f3;
    color: #0d47a1;
}

.encart.warning {
    background-color: #fff3e0;
    border-left-color: #ff9800;
    color: #e65100;
}

.encart.danger {
    background-color: #ffebee;
    border-left-color: #f44336;
    color: #c62828;
}

.encart.success {
    background-color: #e8f5e8;
    border-left-color: #4caf50;
    color: #2e7d32;
}

.encart.juridique {
    background-color: #f3e5f5;
    border-left-color: #9c27b0;
    color: #4a148c;
}

.encart.zoom {
    background-color: #fff8e1;
    border-left-color: #ffc107;
    color: #ff6f00;
}

/* Icônes optionnelles */
.encart::before {
    content: "";
    position: absolute;
    left: -2px;
    top: 16px;
    width: 0;
    height: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .encart {
        margin: 16px 0;
        padding: 12px 16px;
    }
}