/* --- style.css --- */

@import url('variables.css');
@import url('base.css');
@import url('layout.css');
@import url('navigation.css');
@import url('components.css');
@import url('pages/index.css');

/* --- 印刷用設定 --- */
@media print {
    header nav, 
    .hamburger, 
    .contact,
    footer {
        display: none !important;
    }

    body {
        background: #fff !important;
        color: #000 !important;
        width: 100% !important;
    }

    .news {
        background: #fff !important;
        padding: 20px 0 !important;
    }

    .news-right ul {
        border-top: 1px solid #000 !important;
    }

    .news-right li {
        border-bottom: 1px solid #000 !important;
    }

    .material-symbols-outlined {
        display: none !important;
    }

    .card {
        border: 1px solid #ddd;
        page-break-inside: avoid;
    }
}