/**** print ****/
@page {
    size: A4 landscape;
    margin: 0;
}

@media print {
    header nav,
    .recipe-sticky,
    .menu,
    footer {
        display: none !important;
    }

    ul,
    li,
    .instructions {
        position: relative;
        break-inside: avoid;
        page-break-inside: avoid;
    }
}