/* =========================================================
   PRINT PDF – LE COURRIER DE GUADELOUPE (PDFPRNT SAFE)
   Modifications : 2025-12-26 – fait par Nathaniel YDU
========================================================= */

/* BASE */
body.pdfprnt_print {
    background: #fff;
    color: #111;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 12pt;
    line-height: 1.65;
    margin: 0;
    padding: 0 0 90px;
}

/* CONTENEUR */
#content {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 30px 80px;
    position: relative;
}

/* =========================================================
   BANDEAU HAUT – LOGO CENTRÉ
========================================================= */
#content::before {
    content: "";
    display: block;
    width: calc(100% + 60px);
    height: 70px;
    margin-left: -30px;
    margin-top: -40px;
    margin-bottom: 30px;
    background-color: #e84e0f;
    background-image: url("https://lecourrierdeguadeloupe.com/wp-content/uploads/2024/11/Le-courrier-de-Guadeloupe.png");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 170px auto;
}

/* =========================================================
   TITRE ARTICLE
========================================================= */
.entry-header {
    text-align: center;
    margin-bottom: 10px;
}

.entry-title {
    font-size: 25pt;
    font-weight: bold;
    line-height: 1.25;
    margin: 0 0 14px;
}

/* =========================================================
   META AUTEUR / DATE
========================================================= */
.postmetadata {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 9.5pt;
    color: #555;
    text-align: center;
    margin-bottom: 4px;
}

.postmetadata .entry-author {
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.postmetadata .entry-date {
    font-style: italic;
    color: #777;
}

/* Ligne de séparation */
.postmetadata:last-of-type {
    position: relative;
    padding-bottom: 16px;
    margin-bottom: 26px;
}

.postmetadata:last-of-type::after {
    content: "";
    display: block;
    width: 80px;
    height: 2px;
    background-color: #e84e0f;
    margin: 16px auto 0;
}

/* =========================================================
   CATÉGORIE (MASQUÉE)
========================================================= */
.entry-category {
    display: none !important;
}

/* =========================================================
   IMAGE PRINCIPALE
========================================================= */
.entry-thumbnail {
    margin: 26px 0;
    text-align: center;
}

.entry-thumbnail img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
}

/* Légende : bloc centré, texte ferré à gauche */
.entry-caption {
    max-width: 100%;
    margin: 6px auto 0;
    font-size: 8pt;
    font-style: italic;
    color: #777;
    text-align: left;
}

/* =========================================================
   CONTENU TEXTE
========================================================= */
.entry-content p {
    margin-bottom: 16px;
    text-align: justify;
}

/* =========================================================
   TITRES DE SECTIONS (FERRÉS À GAUCHE)
========================================================= */
.entry-content h3 {
    font-size: 15pt;
    font-weight: bold;
    margin: 32px 0 12px;
    padding-left: 12px;
    border-left: 4px solid #e84e0f;
    text-align: left;
}

/* =========================================================
   CITATIONS
========================================================= */
blockquote {
    margin: 26px 0;
    padding: 14px 22px;
    border-left: 4px solid #e84e0f;
    background: #f6f6f6;
    font-style: italic;
    text-align: center;
}

figure.wp-block-pullquote {
    margin: 30px auto;
    padding: 22px;
    max-width: 90%;
    border: 2px solid #e84e0f;
    color: #e84e0f;
    font-style: italic;
    text-align: center;
}

/* =========================================================
   LIENS
========================================================= */
.entry-content a {
    color: #000;
    text-decoration: underline;
}

/* =========================================================
   FOOTER IMPRESSION – FIN DE DOCUMENT
========================================================= */

@media print {

    /* Réserve de l’espace pour le footer */
    body.pdfprnt_print {
        margin-bottom: 40px;
    }

    /* Footer fixe */
    body.pdfprnt_print::after {
        content: "Mentions légales – Le Courrier de Guadeloupe © 2026 – Tous droits réservés";
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background: #000;
        color: #fff;
        text-align: center;
        font-family: Arial, Helvetica, sans-serif;
        font-size: 8.5pt;
        padding: 10px;
        box-sizing: border-box;
    }
}