/*
 * az-letter-wheel :: print.
 *
 * Loaded at media="print" as its own file rather than an @media block inside the
 * screen sheet, so it never costs a screen visitor a byte of parse time.
 *
 * What a printed page is FOR here: somebody printing this has spun a letter and wants
 * the letter and the categories on paper to play Basta/Stop at a table. So the wheel,
 * the controls and the 260-link directory all go, and the result plus the round card
 * stay.
 *
 * .lw-dir is a <section>, and .alphabet-container and .featured-section are the
 * theme's -- none are covered by a `header, footer, nav` list, which is exactly the
 * hole that left a sibling tool printing a -72px gap. They are named explicitly.
 */

@media print {
	body.lw-page .lw-stage,
	body.lw-page .lw-controls,
	body.lw-page .lw-history,
	body.lw-page .lw-hint,
	body.lw-page .lw-dir,
	body.lw-page .lw-deck-head,
	body.lw-page .lw-timerbar,
	body.lw-page .alphabet-container,
	body.lw-page .featured-section { display: none; }

	body.lw-page .lw,
	body.lw-page .lw-panel,
	body.lw-page .lw-game,
	body.lw-page .lw-round,
	body.lw-page .lw-card {
		min-height: 0;
		background: #fff;
		border-color: #999;
		box-shadow: none;
	}

	body.lw-page .lw-card { break-inside: avoid; }
	body.lw-page .lw a { color: #000; text-decoration: none; }
	body.lw-page .lw-panel-list { grid-template-columns: 1fr 1fr; }
}
