/**
 * CHPT Magazine — Дополнительные адаптивные стили
 *
 * Основные адаптивные стили находятся в style.css.
 * Этот файл содержит дополнительные корректировки.
 *
 * @package CHPT_Magazine
 */

/* Печать */
@media print {
    .main-nav,
    .burger-btn,
    .nav-right,
    .content-sidebar,
    .footer,
    .sidebar-widget,
    .post-navigation,
    .pagination,
    .comments-area {
        display: none !important;
    }

    .header-bg {
        background: none !important;
        color: #000 !important;
        padding: 10px 0 !important;
    }

    .header-title,
    .header-title a {
        color: #000 !important;
    }

    .header-tagline,
    .header-meta span {
        color: #333 !important;
    }

    .content-layout {
        display: block !important;
    }

    .content-main {
        width: 100% !important;
    }

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

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

    .entry-content img {
        max-width: 100% !important;
    }
}

/* Ультраширокие экраны */
@media (min-width: 1600px) {
    .container {
        max-width: 1400px;
    }

    .content-layout {
        grid-template-columns: 1fr 380px;
    }
}
