/* Print: only the recipe card (#recipe-card) survives. Everything else hides. */
@media print {
	body * { visibility: hidden; }
	#recipe-card, #recipe-card * { visibility: visible; }
	#recipe-card {
		position: absolute; top: 0; left: 0; width: 100%;
		border: none; box-shadow: none; padding: 0;
	}
	#recipe-card .brewing-btn { display: none; }
	a[href]::after { content: ""; }
}
