/**
 * About page: override WP block CSS so our layout and paragraph spacing win.
 * This file is enqueued after wp-block-library so it loads last in the cascade.
 */

/* 1. Override .wp-block-column.is-vertically-aligned-center { align-self: center; }
   so the About page column content starts at the top (no massive gap). */
.about-page-main .wp-block-column.is-vertically-aligned-center {
	align-self: flex-start !important;
}

/* 2. Override :root :where(.is-layout-flow) > * { margin-block-start: 0; margin-block-end: 0; }
   so paragraphs on the About page get vertical spacing again. */
.about-page-main .wp-block-column.is-layout-flow > p {
	margin-block-start: 1.25rem !important;
	margin-block-end: 1.25rem !important;
}
.about-page-main .wp-block-column.is-layout-flow > p:first-of-type {
	margin-block-start: 0 !important;
}
.about-page-main .wp-block-column.is-layout-flow > p:last-child {
	margin-block-end: 0 !important;
}
