.page-id-21 .entry-title {
	display: none;
}

/* Resize featured images on The Atelier Journal */
.blog .post-thumbnail img,
.archive .post-thumbnail img {
	max-width: 300px;
/* adjust to your preferred size */
	height: auto;
	object-fit: cover;
}

/* Float featured image left for all posts */
.blog .post, 
.archive .post {
	display: flex;
	flex-wrap: wrap;
/* Allows content to wrap on small screens */
	align-items: flex-start;
	gap: 20px;
/* space between image and content */
}

/* Image on the left */
.blog .post-thumbnail,
.archive .post-thumbnail {
	flex: 0 0 200px;
/* width of the image */
}

/* Content (title + excerpt + meta) */
.blog h2,
.archive h2,
.blog .post-content,
.archive .post-content {
	flex: 1;
/* takes remaining space next to image */
/* Float featured image left in single post */
/* image on the left */
	width: 300px;
/* adjust size */
	margin-right: 20px;
/* space between image and text */
	margin-bottom: 10px;
/* space below image for mobile */
}

/* Make text wrap nicely */
.single .entry-content {
	overflow: hidden;
/* wraps around floated image */
}	
}

/* Resize the featured image on single blog posts */
.single .post-thumbnail img {
	width: 60%;
/* adjust as needed */
	max-width: 200px;
/* prevents it from being huge on large screens */
	height: auto;
	display: block;
	margin: 0 auto 20px;
/* centers image and adds spacing below */
/* Make single post content and featured image share a horizontal layout */
	vertical-align: top;
}
/* Resizes the featured image header on single posts */
.single-post .post-thumbnail img, 
.single-post .entry-header img {
    max-width: 400px !important;
    width: 100% !important;
    height: auto !important;
    display: block;
    margin: 0 auto;
}
/* Hides Jetpack related posts section entirely */
#jp-relatedposts {
    display: none !important;
}
/* Hides author bio box and post metadata/footer details */
.author-bio, 
.entry-footer, 
.post-author,
.site-footer .author-section {
    display: none !important;
}