/* =============================================================================
 * MotionMatters — Druckausgabe
 *
 * Ziel: lesbarer Text auf Papier. Alles, was nur auf dem Bildschirm Sinn
 * ergibt (Navigation, Schaltflächen, Flächenfarben), fällt weg.
 * ========================================================================== */

@page {
	margin: 18mm 15mm;
}

body {
	font-size: 11pt;
	line-height: 1.4;
	color: #000;
	background: none;
}

.mm-kopf,
.mm-leiste,
.mm-menuknopf,
.mm-menutafel,
.mm-menutafel__schleier,
.mm-buehne,
.mm-nachoben,
.mm-fuss,
.mm-abschluss,
.mm-pfad,
.mm-nebenspalte,
form,
button,
.submit {
	display: none !important;
}

.mm-inhalt {
	max-width: none;
	padding: 0;
	display: block;
}

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

/* Ziel eines Verweises mitdrucken — auf Papier ist er sonst wertlos.
   Ausgenommen: Sprungmarken und Auszeichnungen ohne Ziel. */
a[href^="http"]::after {
	content: ' (' attr(href) ')';
	font-size: 9pt;
	word-break: break-all;
}

h1, h2, h3, h4 {
	color: #000;
	break-after: avoid;
}

img {
	max-width: 100% !important;
	break-inside: avoid;
}

table {
	break-inside: auto;
}

tr {
	break-inside: avoid;
}
