/*
 * The Baobab Business Brief - print.css
 * Clean article printing for A4 and Letter. White background, dark ink.
 */

@page {
	margin: 20mm;
}

@media print {
	:root {
		--bbb-canvas: #FFFFFF;
		--bbb-ink: #12233A;
		--bbb-muted: #333333;
	}

	body {
		background: #FFFFFF !important;
		color: #12233A !important;
		font-size: 12pt;
		line-height: 1.5;
	}

	/* Remove non-content chrome. */
	.bbb-utility-bar,
	.bbb-header,
	.bbb-drawer,
	.bbb-search,
	.bbb-share,
	.bbb-post-sidebar,
	.bbb-progress,
	.bbb-newsletter,
	.bbb-footer,
	.bbb-postnav,
	.bbb-menu-toggle,
	.bbb-icon-btn,
	.bbb-subscribe-link,
	.bbb-endmatter .bbb-related,
	.wp-block-query-pagination {
		display: none !important;
	}

	main,
	.bbb-article,
	.bbb-content,
	.entry-content {
		max-width: 100% !important;
		width: 100% !important;
		margin: 0 !important;
	}

	a {
		color: #12233A !important;
		text-decoration: underline;
	}

	/* Expose destination URLs for external links. */
	.bbb-content a[href^="http"]::after,
	.entry-content a[href^="http"]::after {
		content: " (" attr(href) ")";
		font-size: 9pt;
		color: #555555;
		word-break: break-all;
	}

	/* Print the canonical source URL after the article. */
	.bbb-article::after {
		content: "Source: " attr(data-print-url);
		display: block;
		margin-top: 12pt;
		font-family: "IBM Plex Mono", monospace;
		font-size: 9pt;
		color: #555555;
	}

	h1, h2, h3 { color: #12233A !important; page-break-after: avoid; }
	img, figure, table, blockquote { page-break-inside: avoid; }

	.bbb-summary,
	.bbb-keyinsight,
	.bbb-note,
	.bbb-datapoint {
		border: 1px solid #999999 !important;
		background: #FFFFFF !important;
	}
}
