/* ============================================================
   typography.css — Composants typographiques éditoriaux
   ============================================================ */

/* ── Éléments typographiques ── */
.kicker {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--pourpre-700);
    display: block;
}

.chapo {
    font-family: var(--font-editorial);
    font-size: 1.15rem;
    color: var(--encre-600);
    line-height: 1.6;
}

.byline {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--encre-500);
    display: block;
}

.drop-cap::first-letter {
    font-family: var(--font-display);
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 0.8;
    float: left;
    margin-right: 0.1em;
    color: var(--pourpre-700);
}

.pull-quote {
    font-family: var(--font-editorial);
    font-size: 1.3rem;
    font-style: italic;
    color: var(--encre-700);
    border-left: 4px solid var(--pourpre-700);
    padding-left: 1.25rem;
    margin-left: 0;
    line-height: 1.55;
}

/* ── Séparateurs éditoriaux ── */
.filet {
    border: none;
    border-top: 1px solid var(--encre-200);
    margin: 0;
    opacity: 1;
}

.filet-epais {
    border: none;
    border-top: 2px solid var(--encre-800);
    opacity: 1;
}

.filet-double {
    border: none;
    border-top: 3px double var(--encre-700);
    opacity: 1;
}

.filet-pourpre {
    border: none;
    border-top: 3px solid var(--pourpre-700);
    opacity: 1;
}

/* Variantes de largeur (combiner avec .filet-pourpre) */
.filet-sm  { width: 60px; }
.filet-md  { width: 80px; }
.filet-lg  { width: 100px; }
.filet-xl  { width: 120px; }
