/**
 * Cascade typographique globale
 *
 * Les poids Minion Pro s'activent via les contrôles natifs
 * Italique (Ctrl+I) et Gras (Ctrl+B) de l'éditeur WordPress.
 *
 * Headings (Minion Pro) :
 *   normal         → Regular (400)
 *   em             → Italic (400i)
 *   strong         → Medium (500)
 *   em strong      → Medium Italic (500i)
 *
 * Body (Inter) :
 *   normal         → Light (300)
 *   em             → Light Italic (synthétique)
 *   strong         → SemiBold (600)
 */

/* =============================================
   Rendu typographique global
   ============================================= */

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    font-synthesis: none;
}

/* =============================================
   Headings — Minion Pro
   ============================================= */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--wp--preset--font-family--heading);
}

/* Italic → Minion Pro Italic (400i) */
h1 em, h2 em, h3 em,
h1 i, h2 i, h3 i {
    font-style: italic;
    font-weight: 400;
}

/* Bold → Minion Pro Medium (500) */
h1 strong, h2 strong, h3 strong,
h1 b, h2 b, h3 b {
    font-weight: 500;
}

/* Bold + Italic → Minion Pro Medium Italic (500i) */
h1 em strong, h1 strong em,
h2 em strong, h2 strong em,
h3 em strong, h3 strong em,
h1 i b, h1 b i,
h2 i b, h2 b i,
h3 i b, h3 b i {
    font-style: italic;
    font-weight: 500;
}

/* Italic headings → copper (#C7743E) */
h1 em, h2 em, h3 em,
h1 i, h2 i, h3 i,
.wp-block-heading em,
.wp-block-heading i {
    color: var(--wp--preset--color--secondary, #C7743E);
}

/* H4 garde son poids Semibold (600) défini dans theme.json */

/* =============================================
   Template "Page avec titre" — post-title H1
   ============================================= */

.warein-page-title {
    padding-top: 48px;
}

.warein-page-title .wp-block-post-title {
    margin-top: 48px;
}

.warein-page-title .wp-block-post-title,
h1.wp-block-heading {
    font-family: var(--wp--preset--font-family--heading);
    font-size: var(--wp--preset--font-size--4-xl, 3rem);
    font-weight: 400;
    line-height: 1;
    color: var(--wp--preset--color--black);
}

.entry-content > h1.wp-block-heading,
.wp-block-post-content > h1.wp-block-heading {
    margin: 48px auto 40px !important;
}

/* =============================================
   Body — Inter
   ============================================= */

p, li, td, th, dd, dt, blockquote, figcaption {
    font-family: var(--wp--preset--font-family--body);
}

/* Italic */
p em, li em,
p i, li i {
    font-style: italic;
}

/* Bold → Inter SemiBold (600) */
p strong, li strong,
p b, li b {
    font-weight: 600;
}
