/* Blocs pédagogiques */

.pedagogical-block {
    margin: 1.5rem 0;
    padding: 1rem 1.5rem;
    border-left: 5px solid;
    border-radius: 4px;
    background-color: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.pedagogical-block h3, 
.pedagogical-block h4 {
    margin-top: 0;
    text-transform: uppercase;
    font-size: 1rem;
    letter-spacing: 1px;
}

/* Définition */
.definition {
    border-left-color: #27ae60;
    background-color: #f1fcf4;
}
.definition h3, .definition h4 {
    color: #27ae60;
}
.definition h3::before, .definition h4::before {
    content: "📘 ";
}

/* Propriété */
.propriete {
    border-left-color: #e67e22;
    background-color: #fff9f2;
}
.propriete h3, .propriete h4 {
    color: #e67e22;
}
.propriete h3::before, .propriete h4::before {
    content: "📐 ";
}

/* Remarque */
.remarque {
    border-left-color: #3498db;
    background-color: #f0f7fd;
}
.remarque h3, .remarque h4 {
    color: #3498db;
}
.remarque h3::before, .remarque h4::before {
    content: "💡 ";
}

/* Exemple */
.exemple {
    border-left-color: #9b59b6;
    background-color: #f9f4fb;
}
.exemple h3, .exemple h4 {
    color: #9b59b6;
}
.exemple h3::before, .exemple h4::before {
    content: "📝 ";
}

/* Méthode */
.methode {
    border-left-color: #1abc9c;
    background-color: #effaf8;
}
.methode h3, .methode h4 {
    color: #1abc9c;
}
.methode h3::before, .methode h4::before {
    content: "🛠️ ";
}

/* Objectifs */
.pedagogical-block.objectifs {
    border-left-color: #34495e;
    background-color: #f4f6f7;
}
.pedagogical-block.objectifs h3, 
.pedagogical-block.objectifs h4 {
    color: #34495e;
}
.pedagogical-block.objectifs h3::before, 
.pedagogical-block.objectifs h4::before {
    content: "🔍 ";
    display: inline-block;
    margin-right: 5px;
}
