/**
 * Print Styles
 *
 * Hides non-essential UI and optimises typography for print.
 *
 * @package IBCES
 */

@media print {
    .site-header,
    .site-footer,
    .sidebar,
    .hero-section,
    .btn {
        display: none !important;
    }

    body {
        font-size: 12pt;
        line-height: 1.5;
        color: #000;
    }

    a {
        color: #000;
        text-decoration: underline;
    }

    .section {
        padding: 20pt 0;
    }
}
