/* Ensure post content always has side padding */
.wp-block-post-content {
	padding-left: 1.5rem;
	padding-right: 1.5rem;
	box-sizing: border-box;
}

/* Legacy content centering — old pages without block markup */
.wp-block-post-content > *:not(.alignfull):not(.alignwide):not(.wp-block-columns):not(.wp-block-group):not(.wp-block-buttons) {
	max-width: 960px;
	margin-left: auto;
	margin-right: auto;
}

/* Ensure images inside legacy content are centered */
.wp-block-post-content img {
	display: block;
	margin-left: auto;
	margin-right: auto;
	height: auto;
	max-width: 100%;
}

/* Legacy tables centered */
.wp-block-post-content table {
	margin-left: auto;
	margin-right: auto;
}

/* Header — remove extra top margin on inner pages */
.wp-site-blocks > .wp-block-group:first-child {
	margin-top: 0;
}

/* Buttons side by side */
.wp-block-buttons {
	gap: 0.75rem;
}
