.elementor-30800 .elementor-element.elementor-element-16124a9{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}:root{--page-title-display:none;}@media(min-width:768px){.elementor-30800 .elementor-element.elementor-element-16124a9{--content-width:100%;}}/* Start custom CSS for html, class: .elementor-element-dba2b2d *//* =========================================
   CHARTE GRAPHIQUE BLOG - KC FORMATION
   ========================================= */

/* --- Conteneur Principal --- */
.kc-article-poei {
    max-width: 800px;
    margin: 0 auto;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: #333333;
    background-color: #ffffff;
    padding: 20px;
}

.kc-section {
    margin-bottom: 40px;
}

/* --- Typographie --- */
.kc-article-poei h1 {
    font-size: 2.5rem;
    color: #1a202c; /* Gris très foncé */
    margin-bottom: 20px;
    line-height: 1.2;
}

.kc-article-poei h2 {
    font-size: 1.8rem;
    color: #2b6cb0; /* Bleu KC Formation */
    margin-top: 30px;
    margin-bottom: 15px;
    border-bottom: 2px solid #edf2f7;
    padding-bottom: 10px;
}

.kc-article-poei h3 {
    font-size: 1.4rem;
    color: #2d3748;
    margin-top: 25px;
    margin-bottom: 10px;
}

.kc-article-poei p {
    margin-bottom: 16px;
    font-size: 1.1rem;
}

.kc-article-poei strong {
    color: #2b6cb0; /* Mise en valeur en bleu */
    font-weight: 700;
}

.kc-article-poei a {
    color: #3182ce;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s;
}

.kc-article-poei a:hover {
    border-bottom: 1px solid #3182ce;
}

/* --- Label Thématique --- */
.kc-label {
    display: inline-flex;
    align-items: center;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #718096;
    font-weight: 700;
    margin-bottom: 10px;
}

.kc-label-dot {
    height: 8px;
    width: 8px;
    background-color: #2b6cb0;
    border-radius: 50%;
    margin-right: 8px;
}

/* --- Image Hero --- */
.kc-hero-image {
    margin: 20px 0 30px 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.kc-hero-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* --- Listes à puces simples --- */
.kc-article-poei ul:not(.kc-steps) {
    margin-bottom: 20px;
    padding-left: 20px;
}

.kc-article-poei ul:not(.kc-steps) li {
    margin-bottom: 8px;
    list-style-type: disc;
    padding-left: 5px;
}

/* --- Listes Numérotées (Étapes - Processus) --- */
.kc-steps {
    list-style: none;
    padding: 0;
    counter-reset: kc-step-counter;
    margin: 30px 0;
}

.kc-steps li {
    position: relative;
    padding-left: 60px;
    margin-bottom: 25px;
}

.kc-steps li::before {
    counter-increment: kc-step-counter;
    content: counter(kc-step-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    height: 40px;
    background-color: #ebf8ff; /* Bleu très clair */
    color: #2b6cb0; /* Bleu texte */
    border: 2px solid #2b6cb0;
    border-radius: 50%;
    text-align: center;
    line-height: 36px; /* Ajusté pour centrer verticalement */
    font-weight: bold;
    font-size: 1.2rem;
}

/* --- Blocs Avantages / Inconvénients --- */
.kc-box {
    border-radius: 8px;
    padding: 20px;
    margin: 30px 0;
    border-left: 5px solid;
}

.kc-box-title {
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.kc-box-title span {
    margin-right: 10px;
    font-size: 1.4rem;
}

/* Box Positive (Verte) */
.kc-box-positive {
    background-color: #f0fff4;
    border-color: #48bb78;
    color: #22543d;
}

.kc-box-positive .kc-box-title {
    color: #2f855a;
}

/* Box Négative / Vigilance (Rouge/Orange) */
.kc-box-negative {
    background-color: #fffaf0;
    border-color: #ed8936;
    color: #744210;
}

.kc-box-negative .kc-box-title {
    color: #c05621;
}

/* --- Bloc Résumé (Conclusion) --- */
.kc-summary {
    background-color: #2d3748; /* Fond sombre */
    color: #ffffff;
    padding: 30px;
    border-radius: 12px;
    margin-top: 50px;
    text-align: center;
}

.kc-summary h2 {
    color: #ffffff;
    border-bottom: 1px solid #4a5568;
    margin-top: 0;
    display: inline-block;
    padding-bottom: 10px;
}

.kc-summary p {
    font-size: 1.15rem;
    margin-bottom: 0;
    color: #e2e8f0;
}

/* --- Responsive Mobile --- */
@media (max-width: 600px) {
    .kc-article-poei {
        padding: 15px;
    }
    
    .kc-article-poei h1 {
        font-size: 2rem;
    }
    
    .kc-steps li {
        padding-left: 50px;
    }
    
    .kc-steps li::before {
        width: 35px;
        height: 35px;
        line-height: 31px;
        font-size: 1rem;
    }
}/* End custom CSS */