/**
 * print.css — a clean, readable printout of an article. Hides chrome the
 * reader can't use on paper; keeps the content that matters.
 */

@media print {
	.fn-header,
	.fn-footer,
	.fn-skip-link,
	#fn-search-overlay,
	#fn-mobile-menu,
	.fn-icon-btn,
	.fn-hamburger {
		display: none !important;
	}

	body {
		background: #fff;
		color: #000;
	}

	.fn-article {
		border: none;
		padding: 0;
	}

	.fn-container {
		max-width: 100%;
		padding: 0;
	}

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

	a[href^="http"]::after {
		content: " (" attr(href) ")";
		font-size: 0.8em;
		color: #444;
	}
}
