@page  
{ 
    size: auto;   /* auto is the initial value */ 

    /* this affects the margin in the printer settings */ 
    margin: 25mm 10mm 50mm 10mm;  
} 

@media print {
    .article-body,
    body{

        color: #000;
    }

    #header{
        position: static;
    }

    
    .samecategory-news{
        display: none;
    }

    .menu-burger,
    .btn-search,
    .main-menu,
    .samecategory-news,
    .social-buttons{
        display: none;
        visibility: hidden;
    }

    .wp-block-image, 
    .image-wrap{
        box-shadow: 0 0 0 0 none;
        margin-bottom: 20mm;
    }
}

