/*
 * Print Styles
 * Optimized for printing
 */

@media print {
	* {
		background: transparent !important;
		color: #000 !important;
		box-shadow: none !important;
		text-shadow: none !important;
	}

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

	/* Hide non-essential elements */
	.site-header,
	.site-footer,
	.main-navigation,
	.menu-toggle,
	.sidebar,
	.comments-area,
	.pagination,
	button,
	.button,
	.no-print {
		display: none !important;
	}

	/* Show links */
	a[href]:after {
		content: " (" attr(href) ")";
	}

	/* Don't show links for images or JavaScript */
	a[href^="#"]:after,
	a[href^="javascript:"]:after {
		content: "";
	}

	/* Page breaks */
	h1, h2, h3, h4, h5, h6 {
		page-break-after: avoid;
	}

	p, blockquote {
		orphans: 3;
		widows: 3;
	}

	/* Optimize images */
	img {
		max-width: 100% !important;
		page-break-inside: avoid;
	}

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