/* ==========================================================================
   Block Styles: Core Heading - Variations pour ExecutionProjet
   ========================================================================== */

/* EP Classique - Styles originaux du thème (plus spécifiques pour surcharger) */
h1.wp-block-heading.is-style-ep-classic {
    font-family: var(--wp--preset--font-family--roboto-condensed) !important;
    font-size: var(--wp--custom--typography--font-size--colossal) !important;
    font-weight: 700 !important;
    letter-spacing: normal !important;
    padding-left: 0 !important;
}

h1.wp-block-heading.is-style-ep-classic::before {
    display: none !important;
}

h2.wp-block-heading.is-style-ep-classic {
    font-family: var(--wp--preset--font-family--roboto-condensed) !important;
    font-weight: 500 !important;
    letter-spacing: normal !important;
    padding-left: 0 !important;
}

h2.wp-block-heading.is-style-ep-classic::before {
    display: none !important;
}

h3.wp-block-heading.is-style-ep-classic {
    font-family: var(--wp--preset--font-family--roboto-condensed) !important;
    font-size: var(--wp--preset--font-size--x-large) !important;
    text-decoration: underline var(--wp--preset--color--primary) !important;
    text-underline-offset: 0.25ch !important;
    font-weight: normal !important;
    letter-spacing: normal !important;
    padding-left: 0 !important;
}

h3.wp-block-heading.is-style-ep-classic::before {
    display: none !important;
}

h4.wp-block-heading.is-style-ep-classic {
    font-family: var(--wp--preset--font-family--roboto-condensed) !important;
    font-size: var(--wp--preset--font-size--large) !important;
    font-weight: 700 !important;
    color: var(--wp--preset--color--primary-dark) !important;
    letter-spacing: normal !important;
    padding-left: 0 !important;
}

h4.wp-block-heading.is-style-ep-classic::before {
    display: none !important;
}

h5.wp-block-heading.is-style-ep-classic,
h6.wp-block-heading.is-style-ep-classic {
    font-family: var(--wp--preset--font-family--roboto-condensed) !important;
    font-weight: normal !important;
    letter-spacing: normal !important;
    padding-left: 0 !important;
}

h5.wp-block-heading.is-style-ep-classic::before,
h6.wp-block-heading.is-style-ep-classic::before {
    display: none !important;
}

/* EP Moderne - Style par défaut adaptatif selon le niveau */
.wp-block-heading,
.wp-block-heading.is-style-ep-modern {
    font-family: var(--wp--preset--font-family--helvetica);
    text-decoration: none;
}

/* H1 Moderne */
h1.wp-block-heading,
h1.wp-block-heading.is-style-ep-modern {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 300;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--wp--preset--color--foreground);
}

/* H2 Moderne */
h2.wp-block-heading,
h2.wp-block-heading.is-style-ep-modern {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 400;
    letter-spacing: -0.01em;
    line-height: 1.3;
    margin-bottom: 1.25rem;
    color: var(--wp--preset--color--primary-dark);
}

/* H3 Moderne - Avec barre latérale optionnelle */
h3.wp-block-heading,
h3.wp-block-heading.is-style-ep-modern {
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    font-weight: 500;
    letter-spacing: normal;
    line-height: 1.4;
    margin-bottom: 1rem;
    color: var(--wp--preset--color--foreground);
}

/* Barre latérale seulement pour H3 avec classe spécifique ou moderne */
h3.wp-block-heading.is-style-ep-modern {
    position: relative;
    padding-left: 25px;
}

h3.wp-block-heading.is-style-ep-modern::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--wp--custom--gradient--primary, var(--wp--preset--color--primary));
    border-radius: 2px;
}

/* H4, H5, H6 Moderne */
h4.wp-block-heading,
h4.wp-block-heading.is-style-ep-modern {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-weight: 600;
    color: var(--wp--preset--color--primary-dark);
    margin-bottom: 1rem;
}

h5.wp-block-heading,
h5.wp-block-heading.is-style-ep-modern,
h6.wp-block-heading,
h6.wp-block-heading.is-style-ep-modern {
    font-size: clamp(1.125rem, 2.5vw, 1.5rem);
    font-weight: 500;
    color: var(--wp--preset--color--foreground);
    margin-bottom: 0.75rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    h1.wp-block-heading,
    h1.wp-block-heading.is-style-ep-modern {
        font-size: clamp(1.75rem, 5vw, 2.5rem);
    }
    
    h2.wp-block-heading,
    h2.wp-block-heading.is-style-ep-modern {
        font-size: clamp(1.5rem, 4vw, 2rem);
    }
    
    h3.wp-block-heading.is-style-ep-modern {
        padding-left: 20px;
    }
    
    h3.wp-block-heading.is-style-ep-modern::before {
        width: 3px;
    }
}
