/**
 * WP Theme Core — Shared print styles.
 *
 * @package WP_Theme_Core
 */

@media print {
    /* Hide non-essential elements */
    .wtc-announcement-bar,
    .wtc-carousel__arrow,
    .wtc-carousel__dots,
    nav,
    aside,
    footer,
    .no-print {
        display: none !important;
    }

    /* Reset backgrounds and colors for readability */
    body {
        background: #fff !important;
        color: #000 !important;
        font-size: 12pt;
        line-height: 1.5;
    }

    /* Show link URLs */
    a[href]::after {
        content: " (" attr(href) ")";
        font-size: 0.8em;
        color: #555;
    }

    a[href^="#"]::after,
    a[href^="javascript:"]::after {
        content: "";
    }

    /* Prevent page breaks inside important elements */
    h1, h2, h3, h4, h5, h6 {
        page-break-after: avoid;
    }

    img, table, figure {
        page-break-inside: avoid;
    }

    /* Ensure images are contained */
    img {
        max-width: 100% !important;
    }

    /* Container full width */
    .wtc-container {
        max-width: 100%;
        padding: 0;
    }
}
