/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jul 22 2025 | 15:47:25 */
/* ===== CHAPÔ BLOG ===== */
.david_chapo_blog {
    max-width: 50em; /* 800px */
    margin-bottom: 2em !important;
    padding: 2em;
    background: linear-gradient(135deg, rgba(241, 102, 42, 0.05), rgba(241, 102, 42, 0.02));
    border-radius: 0.5em;
    border-left: 0.25em solid #F1662A;
    position: relative;
}

.david_chapo_blog::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 4em;
    height: 0.125em;
    background: linear-gradient(90deg, #F1662A, transparent);
}

.david_chapo_blog p {
    font-size: 1.2em;
    line-height: 1.6;
    color: #1d2327;
    font-weight: 400;
    margin: 0;
    font-style: italic;
}

.david_chapo_blog strong {
    font-weight: 600;
    color: #F1662A;
}

.david_chapo_blog em {
    font-style: italic;
    color: #d14f17;
}

.david_chapo_blog a {
    color: #F1662A;
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
}

.david_chapo_blog a:hover {
    color: #d14f17;
}

.david_chapo_blog a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0.0625em;
    bottom: -0.0625em;
    left: 0;
    background-color: #F1662A;
    transition: width 0.3s ease;
}

.david_chapo_blog a:hover::after {
    width: 100%;
}

/* ===== ARTICLE BLOG CONTAINER ===== */
.david_blog_article {
    max-width: 50em; /* 800px */
    margin: 0 auto 3em auto;
    padding: 2em 0;
    position: relative;
    line-height: 1.6;
}

/* ===== TITRES ===== */
.david_blog_article h2 {
    font-size: 1.75em;
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 1em 0;
    color: #1d2327;
    position: relative;
    padding-bottom: 0.5em;
    text-transform: none;
}

.david_blog_article h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 3em;
    height: 0.125em;
    background-color: #F1662A;
}

.david_blog_article h3 {
    font-size: 1.4em;
    font-weight: 600;
    line-height: 1.3;
    margin: 1.5em 0 0.8em 0;
    color: #1d2327;
    border-left: 0.2em solid rgba(241, 102, 42, 0.3);
    padding-left: 0.75em;
    text-transform: none;
}

.david_blog_article h4 {
    font-size: 1.15em;
    font-weight: 600;
    line-height: 1.4;
    margin: 1.2em 0 0.6em 0;
    color: #333;
    position: relative;
    text-transform: none;
}

.david_blog_article h4::before {
    content: '';
    position: absolute;
    left: -0.5em;
    top: 50%;
    transform: translateY(-50%);
    width: 0.25em;
    height: 1em;
    background-color: #F1662A;
    border-radius: 0.125em;
}

/* ===== PARAGRAPHES ===== */
.david_blog_article p {
    font-size: 1.05em;
    line-height: 1.7;
    margin-bottom: 1.2em;
    color: #333;
}

.david_blog_article p:last-child {
    margin-bottom: 0;
}

/* Premier paragraphe en évidence */
.david_blog_article h2 + p {
    font-size: 1.1em;
    color: #1d2327;
    font-weight: 400;
    margin-bottom: 1.5em;
}

/* ===== TEXTE EN GRAS ===== */
.david_blog_article strong {
    font-weight: 600;
    color: #1d2327;
    position: relative;
}

/* ===== TEXTE EN ITALIQUE ===== */
.david_blog_article em {
    font-style: italic;
    color: #555;
}

/* ===== LIENS ===== */
.david_blog_article a {
    color: #F1662A;
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
    border-bottom: 0.0625em solid transparent;
}

.david_blog_article a:hover {
    color: #d14f17;
    border-bottom-color: rgba(241, 102, 42, 0.4);
}

.david_blog_article a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0.0625em;
    bottom: -0.0625em;
    left: 0;
    background-color: #F1662A;
    transition: width 0.3s ease;
}

.david_blog_article a:hover::after {
    width: 100%;
}

/* ===== LISTES NON ORDONNÉES ===== */
.david_blog_article ul {
    margin: 1.2em 0;
    padding-left: 0;
    list-style: none;
}

.david_blog_article ul li {
    position: relative;
    padding-left: 1.5em;
    margin-bottom: 0.8em;
    line-height: 1.6;
}

.david_blog_article ul li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: #F1662A;
    font-weight: bold;
    font-size: 1.1em;
}

.david_blog_article ul li:last-child {
    margin-bottom: 0;
}

/* ===== LISTES ORDONNÉES ===== */
.david_blog_article ol {
    margin: 1.2em 0;
    padding-left: 0;
    list-style: none;
    counter-reset: article-counter;
}

.david_blog_article ol li {
    position: relative;
    padding-left: 2.2em;
    margin-bottom: 0.8em;
    line-height: 1.6;
    counter-increment: article-counter;
}

.david_blog_article ol li::before {
    content: counter(article-counter);
    position: absolute;
    left: 0;
    top: 0.1em;
    width: 1.4em;
    height: 1.4em;
    background: linear-gradient(135deg, #F1662A, #d14f17);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.85em;
}

.david_blog_article ol li:last-child {
    margin-bottom: 0;
}

/* ===== LISTES IMBRIQUÉES ===== */
.david_blog_article ul ul,
.david_blog_article ol ol,
.david_blog_article ul ol,
.david_blog_article ol ul {
    margin: 0.8em 0;
    padding-left: 1em;
}

.david_blog_article ul ul li::before {
    content: '◦';
    color: rgba(241, 102, 42, 0.7);
    font-size: 1em;
}

/* ===== SOURCES BLOG ===== */
.david_sources_blog {
    max-width: 50em; /* 800px */
    margin-top: 3em;
	margin-bottom: -3em !important;
    padding: 2em;
    border-top: 0.25em solid #F1662A;
    position: relative;
}

.david_sources_blog::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4em;
    height: 0.125em;
    background: linear-gradient(90deg, #F1662A, transparent);
}

.david_sources_blog h2 {
    font-size: 1.3em;
    font-weight: 600;
    color: #1d2327;
    margin: 0 0 1.2em 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
}

.david_sources_blog h2::after {
    content: '';
    position: absolute;
    bottom: -0.3em;
    left: 0;
    width: 2em;
    height: 0.0625em;
    background-color: #F1662A;
}

.david_sources_blog ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.david_sources_blog ul li {
    position: relative;
    padding-left: 1.5em;
    margin-bottom: 0.8em;
    line-height: 1.5;
}

.david_sources_blog ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    top: 0.1em;
    color: #F1662A;
    font-weight: bold;
    font-size: 1em;
}

.david_sources_blog ul li:last-child {
    margin-bottom: 0;
}

.david_sources_blog a {
    color: #333;
    text-decoration: none;
    font-size: 1em;
    transition: all 0.3s ease;
    position: relative;
}

.david_sources_blog a:hover {
    color: #F1662A;
}

.david_sources_blog a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0.0625em;
    bottom: -0.0625em;
    left: 0;
    background-color: rgba(241, 102, 42, 0.4);
    transition: width 0.3s ease;
}

.david_sources_blog a:hover::after {
    width: 100%;
}

/* ===== RESPONSIVE DESIGN ===== */

/* Tablettes */
@media (max-width: 48em) { /* 768px */
	.david_sources_blog {
    	margin-bottom: 0 !important;
  	}
	
    .david_chapo_blog,
    .david_sources_blog {
        margin-left: 1em;
        margin-right: 1em;
        padding: 1.5em;
        max-width: none;
    }
    
    .david_chapo_blog {
        margin-bottom: 2.5em;
    }
    
    .david_sources_blog {
        margin-top: 2.5em;
    }
    
    .david_chapo_blog p {
        font-size: 1.1em;
        line-height: 1.5;
    }
    
    .david_sources_blog h2 {
        font-size: 1.2em;
        margin-bottom: 1em;
    }
    
    .david_sources_blog ul li {
        margin-bottom: 0.7em;
        padding-left: 1.3em;
    }
    
    .david_sources_blog a {
        font-size: 0.9em;
    }
    
    .david_blog_article {
        margin: 0 1em 2.5em 1em;
        padding: 1.5em;
        max-width: none;
    }
    
    .david_blog_article h2 {
        font-size: 1.5em;
        margin-bottom: 0.8em;
    }
    
    .david_blog_article h3 {
        font-size: 1.25em;
        margin: 1.2em 0 0.6em 0;
    }
    
    .david_blog_article h4 {
        font-size: 1.1em;
        margin: 1em 0 0.5em 0;
    }
    
    .david_blog_article p {
        font-size: 1em;
        margin-bottom: 1em;
    }
    
    .david_blog_article ul li,
    .david_blog_article ol li {
        margin-bottom: 0.6em;
    }
    
    .david_blog_article ol li {
        padding-left: 2em;
    }
    
    .david_blog_article ol li::before {
        width: 1.2em;
        height: 1.2em;
        font-size: 0.8em;
    }
}

/* Mobiles */
@media (max-width: 30em) { /* 480px */
	.david_sources_blog {
    	margin-bottom: 0 !important;
  	}
	
    .david_chapo_blog,
    .david_sources_blog {
        margin-left: 0.5em;
        margin-right: 0.5em;
        padding: 1.2em;
        border-radius: 0.3em;
    }
    
    .david_chapo_blog {
        margin-bottom: 2em;
    }
    
    .david_sources_blog {
        margin-top: 2em;
    }
    
    .david_chapo_blog::before,
    .david_sources_blog::before {
        width: 3em;
    }
    
    .david_chapo_blog p {
        font-size: 1.05em;
        line-height: 1.5;
    }
    
    .david_sources_blog h2 {
        font-size: 1.1em;
        margin-bottom: 0.8em;
        letter-spacing: 0.03em;
    }
    
    .david_sources_blog h2::after {
        width: 1.5em;
    }
    
    .david_sources_blog ul li {
        margin-bottom: 0.6em;
        padding-left: 1.2em;
        line-height: 1.4;
    }
    
    .david_sources_blog ul li::before {
        font-size: 0.9em;
    }
    
    .david_sources_blog a {
        font-size: 0.85em;
        line-height: 1.4;
    }
    
    .david_blog_article {
        margin: 0 0.5em 2em 0.5em;
        padding: 1.2em;
        border-radius: 0.3em;
    }
    
    .david_blog_article h2 {
        font-size: 1.3em;
        line-height: 1.4;
        margin-bottom: 0.7em;
        padding-bottom: 0.4em;
    }
    
    .david_blog_article h2::after {
        width: 2.5em;
    }
    
    .david_blog_article h2 + p {
        font-size: 1em;
        margin-bottom: 1.2em;
    }
    
    .david_blog_article h3 {
        font-size: 1.15em;
        margin: 1em 0 0.5em 0;
        padding-left: 0.6em;
    }
    
    .david_blog_article h4 {
        font-size: 1.05em;
        margin: 0.8em 0 0.4em 0;
    }
    
    .david_blog_article h4::before {
        left: -0.4em;
        width: 0.2em;
        height: 0.8em;
    }
    
    .david_blog_article p {
        font-size: 0.95em;
        line-height: 1.6;
        margin-bottom: 0.9em;
    }
    
    .david_blog_article ul li {
        padding-left: 1.2em;
        margin-bottom: 0.5em;
        font-size: 0.95em;
    }
    
    .david_blog_article ol li {
        padding-left: 1.8em;
        margin-bottom: 0.5em;
        font-size: 0.95em;
    }
    
    .david_blog_article ol li::before {
        width: 1.1em;
        height: 1.1em;
        font-size: 0.75em;
    }
    
    .david_blog_article ul ul,
    .david_blog_article ol ol,
    .david_blog_article ul ol,
    .david_blog_article ol ul {
        margin: 0.6em 0;
        padding-left: 0.8em;
    }
}

/* ===== TABLEAUX ===== */

/* Conteneur de tableau avec défilement */
.david_blog_article .table-container,
.david_sources_blog .table-container,
.david_blog_article div[style*="overflow-x: auto"],
.david_sources_blog div[style*="overflow-x: auto"] {
    margin: 2em 0;
    overflow-x: auto;
    border-radius: 0.5em;
    box-shadow: 0 0.25em 1em rgba(0, 0, 0, 0.05);
}

/* Style de base pour tous les tableaux */
.david_blog_article table,
.david_sources_blog table {
    width: 100%;
    border-collapse: collapse;
    background-color: #fff;
    border-radius: 0.5em;
    overflow: hidden;
    box-shadow: 0 0.25em 1em rgba(0, 0, 0, 0.05);
    margin: 2em 0;
}

.david_blog_article table th,
.david_blog_article table td,
.david_sources_blog table th,
.david_sources_blog table td {
    padding: 0.75em 0.95em;
    text-align: left;
    border-bottom: 0.0625em solid #e6e6e6;
    font-size: 1em;
    line-height: 1.5;
}

.david_blog_article table th,
.david_sources_blog table th {
    background-color: #f4f8fd;
    font-weight: 600;
    color: #555;
    border-bottom: 0.125em solid #F1662A;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    font-size: 0.9em;
}

.david_blog_article table tr:last-child td,
.david_sources_blog table tr:last-child td {
    border-bottom: none;
}

.david_blog_article table tr:nth-child(even),
.david_sources_blog table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.david_blog_article table tr:hover,
.david_sources_blog table tr:hover {
    background-color: rgba(241, 102, 42, 0.05);
    transition: background-color 0.3s ease;
}

/* Liens dans les tableaux */
.david_blog_article table a,
.david_sources_blog table a {
    color: #F1662A;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.david_blog_article table a:hover,
.david_sources_blog table a:hover {
    color: #d14f17;
    text-decoration: underline;
}

/* Texte en gras dans les tableaux */
.david_blog_article table strong,
.david_sources_blog table strong {
    font-weight: 600;
    color: #1d2327;
}

/* Texte en italique dans les tableaux */
.david_blog_article table em,
.david_sources_blog table em {
    font-style: italic;
    color: #666;
}

/* ===== RESPONSIVE TABLEAUX ===== */

/* Tablettes */
@media (max-width: 48em) { /* 768px */
    .david_blog_article .table-container,
    .david_sources_blog .table-container,
    .david_blog_article div[style*="overflow-x: auto"],
    .david_sources_blog div[style*="overflow-x: auto"] {
        margin: 1.5em -1em;
        width: calc(100% + 2em);
        border-radius: 0;
    }
    
    .david_blog_article table,
    .david_sources_blog table {
        margin: 1.5em 0;
        border-radius: 0;
    }
    
    .david_blog_article table th,
    .david_blog_article table td,
    .david_sources_blog table th,
    .david_sources_blog table td {
        padding: 0.7em 0.8em;
        font-size: 0.95em;
    }
    
    .david_blog_article table th,
    .david_sources_blog table th {
        font-size: 0.85em;
    }
}

/* Mobiles */
@media (max-width: 30em) { /* 480px */
    .david_blog_article .table-container,
    .david_sources_blog .table-container,
    .david_blog_article div[style*="overflow-x: auto"],
    .david_sources_blog div[style*="overflow-x: auto"] {
        margin: 1.2em -1.2em;
        width: calc(100% + 2.4em);
    }
    
    .david_blog_article table,
    .david_sources_blog table {
        margin: 1.2em 0;
        font-size: 0.9em;
    }
    
    .david_blog_article table th,
    .david_blog_article table td,
    .david_sources_blog table th,
    .david_sources_blog table td {
        padding: 0.6em 0.7em;
        font-size: 0.9em;
    }
    
    .david_blog_article table th,
    .david_sources_blog table th {
        font-size: 0.8em;
        letter-spacing: 0.02em;
    }
    
    /* Forcer le défilement horizontal sur mobile pour les gros tableaux */
    .david_blog_article table,
    .david_sources_blog table {
        min-width: 30em;
    }
}