/* ==========================================
   CHARTE GRAPHIQUE - LE FRANC RÂLEUR (STYLE COMBAT)
   ========================================== */

body {
    background-color: #FAF8F5;
    color: #111111;
    font-family: 'Times New Roman', Times, Georgia, serif;
    margin: 0;
    padding: 20px;
}

.journal-container {
    max-width: 650px;
    margin: 20px auto;
    padding: 30px;
    border: 1px solid #E0DCD5;
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
    background-color: #FAF8F5;
}

/* En-tête du Journal */
.journal-header {
    display: flex;
    border-bottom: 3px solid #111111;
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.header-left {
    flex: 2;
    padding-right: 20px;
    border-right: 1px solid #111111;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.header-right {
    flex: 1;
    padding-left: 20px;
    font-size: 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.motto {
    margin: 10px 0 0 0;
    font-size: 11px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.3;
}

.slogans {
    border-top: 1px dashed #111111;
    padding-top: 8px;
    line-height: 1.4;
}

.metadata-bar {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 25px;
    letter-spacing: 0.5px;
    color: #444444;
}

/* Zone Article principal (La Une) */
.article-title-zone {
    text-align: center;
    margin-bottom: 25px;
}

.article-title {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 34px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -1px;
    margin: 0 0 15px 0;
    line-height: 1.05;
}

.separator {
    width: 60px;
    height: 2px;
    background: #111111;
    margin: 15px auto 0 auto;
}

.article-body {
    display: flex;
    gap: 20px;
    text-align: justify;
    font-size: 15px;
    line-height: 1.55;
    margin-bottom: 30px;
}

.column {
    flex: 1;
}

.column-right {
    border-left: 1px dotted #111111;
    padding-left: 20px;
}

/* Encart Solution (Sponsor Inversé) */
.reclame-box {
    border: 2px solid #111111;
    padding: 20px;
    background-color: #ffffff;
    box-shadow: 2px 2px 0px #111111;
    margin-bottom: 30px;
}

.reclame-box h3 {
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 900;
    text-transform: uppercase;
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 15px;
    letter-spacing: 1px;
}

.reclame-box p {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 0;
}

.reclame-box a {
    color: #111111;
    font-weight: bold;
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* Zone "Au cours de la semaine" */
.semaine-zone {
    border-top: 3px double #111111;
    padding-top: 20px;
    margin-top: 40px;
}

.semaine-zone h3 {
    font-family: Arial, sans-serif;
    font-size: 16px;
    font-weight: 900;
    margin-bottom: 15px;
}

.archive-link {
    text-align: center;
    margin-top: 30px;
    font-size: 13px;
    font-weight: bold;
    text-transform: uppercase;
}

.archive-link a {
    color: #111111;
    text-decoration: none;
    border-bottom: 1px solid #111111;
}

/* Version Mobile Réactive */
@media (max-width: 600px) {
    .journal-header { flex-direction: column; }
    .header-left { border-right: none; padding-right: 0; margin-bottom: 15px; }
    .header-right { padding-left: 0; border-top: 1px dashed #111111; padding-top: 15px; }
    .article-body { flex-direction: column; }
    .column-right { border-left: none; padding-left: 0; }
}

/* Style de l'imprimerie clandestine pour les pièces à conviction */
.contexte-officiel {
    margin-top: 50px;
    border-top: 2px dashed #111111;
    padding-top: 20px;
    font-family: 'Times New Roman', serif;
    font-size: 14px;
    color: #111111;
    line-height: 1.5;
    text-align: justify;
}

.contexte-officiel a {
    color: #111111;
    font-weight: bold;
    text-decoration: underline;
    font-style: italic;
}

/* ✨ MODIFICATION : Traitement graphique style "Gravure d'époque" (Presse 1943) */
.gravure-container {
    text-align: center;
    margin: 15px auto 20px auto;
    padding: 12px;
    border: 1px dashed #111111;
    max-width: 320px;
    background-color: #FAF8F5;
}

.gravure-container-mini {
    margin-bottom: 15px;
    border: 1px dotted #111111;
    display: inline-block;
    padding: 6px;
    max-width: 140px;
}

.journal-gravure {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    /* Transformation radicale de l'encre : Noir & Blanc, contrasté, fusionné au papier */
    filter: grayscale(100%) contrast(145%) brightness(92%);
    mix-blend-mode: multiply;
}

.gravure-legende {
    display: block;
    font-family: 'Times New Roman', Times, serif;
    font-style: italic;
    font-size: 11px;
    color: #333333;
    margin-top: 8px;
    line-height: 1.2;
}
