@media print {
    :root {
        --hidden_mobile: none;
    }

    #header {
        position: initial;
        margin-bottom: -2cm;
    }

    #content {
        overflow: visible;
    }

    #search_mobile > button {
        display: none;
    }

    #navigation {
        display: none;
    }

    #article table tr, td {
        break-inside: avoid;
        page-break-inside: avoid;
    }

    img {
        break-inside: avoid;
        page-break-inside: avoid;
    }

    #footer {
        break-inside: avoid;
        page-break-inside: avoid;
    }

    #footer * {
        break-before: avoid;
        page-break-inside: avoid;
    }
}

@page {
    margin-top: 0.5cm;
    margin-bottom: 0.5cm;
    orphans: 5;
    widows: 5;
}