

@media print {
	/* Hide navigation/header */
	.site-header,
	.related-posts,
	.footer-links {
	  display: none !important;
	}
  
	/* Force full-width thumbnail image with 16:9 aspect ratio */
	.post-thumbnail {
	  position: relative;
	  width: 100%;
	  aspect-ratio: 16 / 9;
	  overflow: hidden;
	  margin: 0 0 2rem;
	}
  
	.post-thumbnail img {
	  width: 100%;
	  height: 100%;
	  object-fit: cover;
	  display: block;
	}
  
	/* Optional: Reduce margin/padding on printed entry */
	.entry-content {
	  padding: 0;
	}
  
	/* Optional: Add page-break control */
	.entry-content p,
	.entry-content h1,
	.entry-content h2 {
	  break-inside: avoid;
	}
  }
  