/**
 * PureText PZG Theme — Print Styles
 *
 * Optimizes the theme for printing.
 *
 * @package PureText_PZG
 * @since 1.0.0
 */

/* Hide non-essential elements */
.wp-block-navigation,
.wp-block-search,
.wp-block-separator,
.wp-block-query-pagination,
.wp-block-post-comments-form,
.wp-block-comments,
.wp-block-site-tagline,
footer {
	display: none !important;
}

/* Reset colors for print */
body {
	color: #000;
	background: #fff;
	font-size: 12pt;
	line-height: 1.5;
}

/* Ensure links show their URLs */
a[href]::after {
	content: " (" attr(href) ")";
	font-size: 0.85em;
	color: #666;
}

/* Internal links — no URL appended */
a[href^="#"]::after,
a[href^="javascript:"]::after {
	content: "";
}

/* Headings — avoid page breaks after */
h1,
h2,
h3 {
	page-break-after: avoid;
}

/* Content width — full for print */
.wp-block-post-content,
main {
	max-width: 100%;
	width: 100%;
}

/* Avoid breaking inside blocks */
.wp-block-quote,
.wp-block-code,
p {
	page-break-inside: avoid;
}

/* Site title — print header */
.wp-block-site-title {
	font-size: 18pt;
	font-weight: 700;
}
