/**
 * @file    css/__print.css
 * @brief   Print stylesheet.
 *
 * @ingroup BLNG_CSS
 */

 /**
 * Table of Contents
 *
 * 1.0 - Single
 */

/*===========================================================================*/
/* 1.0 Single                                                                */
/*===========================================================================*/
@media print {

  body.single {
    font-size: 0.9em;
  }
  
  body.single #blng-site-header {
    background-color: initial;
    padding: 0
  }

  body.single #blng-logo {
    display: block;
    margin: 0 auto;
    width: 100%
  }

  body.single .social-search,
  body.single #primarynav,
  body.single #blng-breadcrumbs,
  body.single #blng-image,
  body.single #blng-toc,
  body.single #blng-toc-toggle-wrap,
  body.single #blng-comments,
  body.single #blng-site-footer,
  body.single #blng-info .blng-chunk-icon {
    display: none!important
  }
  
  body.single #blng-info .blng-chunk {
    min-width: 0px !important;
  }

  body.single #blng-single {
    width: 100%;
    max-width: 100%;
    margin: auto;
    padding: var(--blng-content-padding-block)var(--blng-content-padding-side);
    background-color: var(--blng-pe-brand-midnight-2g);
    border-radius: 5px
  }

  body.single #blng-content.has-toc .blng-single-wrap {
    display: flex
  }
}
