@media (max-width: 768px) {
	/* PARENT CONTAINER (The List) */
	.wp-block-post-template,
	.wp-block-query .wp-block-post-template,
	.archive .posts,
	.blog .posts,
	.post-list,
	.posts,
	.cards,
	.grid,
	.post-grid,
	.entries {
		display: flex !important;
		flex-direction: column !important;
		align-items: center !important;
		justify-content: flex-start !important;
		padding-left: 0 !important;
		padding-right: 0 !important;
		gap: 40px !important;
	}

	/* CHILD CARD (The Stack) */
	.wp-block-post,
	.wp-block-query .wp-block-post,
	.post,
	.hentry,
	.entry,
	.card,
	.post-card,
	.grid-item {
		width: 85vw !important;
		max-width: 400px !important;
		margin-left: auto !important;
		margin-right: auto !important;
		margin-bottom: 0 !important;
		position: relative !important;
		left: auto !important;
		right: auto !important;
		overflow: visible !important; /* allow decorative 'fan' to extend without clipping */
	}

	/* Ensure main featured image area is centered */
	.wp-block-post-featured-image,
	.post .post-thumbnail,
	.card .post-thumbnail,
	.post-card .post-thumbnail {
		display: block !important;
		margin-left: auto !important;
		margin-right: auto !important;
		text-align: center !important;
	}

	/* Main image centered; do not clip rotated/offset backdrops */
	.wp-block-post-featured-image img,
	.post .post-thumbnail img,
	.card .post-thumbnail img,
	.post-card .post-thumbnail img {
		display: block !important;
		margin-left: auto !important;
		margin-right: auto !important;
	}

	/* TEXT ALIGNMENT (Title and Date) */
	.wp-block-post-title,
	.entry-title,
	.post-title,
	.wp-block-post-date,
	.posted-on,
	.entry-meta {
		text-align: center !important;
	}
}

