@media print {

    /* Dimension et marges de page */
    @page {
        size: A4 portrait;
        margin: 2cm 1.5cm;
    }

    /* Reset général */
    * {
        all: unset;
        display: revert;
        box-sizing: border-box;
    }

    img {
        max-width: 100%;
    }

    input,
    textarea,
    select {
        all: revert;
    }

    /* On redéfinit les styles globaux (12pt = 16px) */
    body {
        width: auto;
        margin: 0;
        font-family: serif;
        font-size: 12pt;
        font-family: Georgia, serif;
        line-height: 1.5;
        color:
            #000000 !important;
        background-color:
            #ffffff !important;
    }

    /* Espacements typographiques (15pt = 20px) */
    p,
    blockquote,
    label,
    ul,
    ol {
        margin-block: 0 15pt;
    }

    p:last-child {
        margin-bottom: 0;
    }

    /* Titrages (24pt = 32px) */
    h1 {
        margin-block: 0 24pt;
        font-weight: 700;
        font-size: 18pt;
        line-height: 1.1;
    }

    h2 {
        margin-block: 0 18pt;
        font-weight: 700;
        font-size: 16pt;
        line-height: 1.1;
    }

    h3 {
        margin-block: 0 15pt;
        font-weight: 700;
        font-size: 14pt;
    }

    h4 {
        margin-block: 0 12pt;
        font-weight: 700;
        font-size: 12pt;
    }

    /* Classes dédiées print / no-print */
    .print {
        display: revert;
    }

    .no-print {
        display: none;
    }

    /* Pas de veuves ou orphelines (3 lignes minimum) */
    p,
    blockquote {
        orphans: 3;
        widows: 3;
    }

    /* Pas de saut de page au sein de ces éléments */
    blockquote,
    ul,
    ol,
    figure,
    table {
        page-break-inside: avoid;
    }

    /* Pas de saut de page après ces éléments */
    h1,
    h2,
    h3,
    h4,
    caption {
        page-break-after: avoid;
    }

    /* Styles des liens */
    a,
    a:link,
    a:visited {
        background:
            transparent !important;
        color: unset;
        font-weight: 700;
        text-decoration: underline !important;
    }

    /* On affiche l'URL des liens externes */
    a[href^="http"]:after,
    a[href^="https"]:after {
        content: " (" attr(href) ")";
    }

    /* On masque les vidéos */
    video,
    object,
    iframe {
        display: none !important;
        width: 0 !important;
        height: 0 !important;
        overflow: hidden !important;
    }

    /* Personnalisation */

    header img {
        width: 35%;
        height: 35%;
        margin-left: 0;
        text-align: center;
    }

    /* Tout ce que l'on masque à l'écran */
    nav,
    .figuration,
    aside,
    .card__content picture, 
    footer .centrage {
        display: none;
    }

    body,
    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        font-family: "Trebuchet MS", Tahoma, sans-serif;
    }

    h1 em {
        display: block;
    }

    section {
        margin-top: 15pt;
        margin-bottom: 15pt;
    }

    #card_1::before {
        font-weight: bold;
        font-family: "Trebuchet MS", Tahoma, sans-serif;
        display: inline;
    }

    #card_1::before {
        content: "1. ";
    }

    #card_2::before {
        content: "2. ";
    }

    #card_3::before {
        content: "3. ";
    }

    #card_4::before {
        content: "4. ";
    }

    #card_5::before {
        content: "5. ";
    }

    #card_6::before {
        content: "6. ";
    }

    #card_7::before {
        content: "7. ";
    }

    #card_8::before {
        content: "8. ";
    }

    #card_9::before {
        content: "9. ";
    }

    #card_10::before {
        content: "10. ";
    }

    #card_11::before {
        content: "11. ";
    }


}