/* ================================================
   MOUTARDE MANON — Compléments Divi
   Tables + espacement titres
   ================================================ */

/* --- Tableaux --- */
.et_pb_post_content table,
.entry-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.et_pb_post_content table thead,
.entry-content table thead {
    background-color: #8b7355;
    color: #ffffff;
}

.et_pb_post_content table th,
.entry-content table th {
    padding: 12px;
    text-align: left;
    border: 1px solid #ddd;
    font-weight: 600;
}

.et_pb_post_content table td,
.entry-content table td {
    padding: 10px 12px;
    border: 1px solid #ddd;
    vertical-align: top;
}

.et_pb_post_content table tbody tr:nth-child(even),
.entry-content table tbody tr:nth-child(even) {
    background-color: #f9f9f9;
}

.et_pb_post_content table tbody tr:hover,
.entry-content table tbody tr:hover {
    background-color: #fff9e6;
}

/* Scroll horizontal sur mobile */
.et_pb_post_content table,
.entry-content table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

@media (min-width: 768px) {
    .et_pb_post_content table,
    .entry-content table {
        display: table;
        overflow-x: unset;
    }
}

/* --- Espacement avant les titres --- */
.et_pb_post_content h2,
.et_pb_post_content h3,
.et_pb_post_content h4,
.entry-content h2,
.entry-content h3,
.entry-content h4 {
    margin-top: 20px;
}

/* Pas d'espace supplémentaire si le titre est en tout début de bloc */
.et_pb_post_content h2:first-child,
.et_pb_post_content h3:first-child,
.et_pb_post_content h4:first-child,
.entry-content h2:first-child,
.entry-content h3:first-child,
.entry-content h4:first-child {
    margin-top: 0;
}