/*
Theme Name: Michelle — Depth Psychotherapy
Theme URI: https://michelle.example
Author: Michelle
Description: Custom block theme carrying the bespoke Jungian/alchemical design (vellum, Fraunces & Lora, archetype wheel, fire cursor) into WordPress so pages and copy are editable in the block editor while the look stays identical. Enqueues the site's existing main.css and scripts.
Version: 1.1.0
Requires at least: 6.4
Tested up to: 7.0
Requires PHP: 8.0
Text Domain: michelle
*/

/* The visual design lives entirely in /css/main.css (enqueued in functions.php).
   Group blocks re-emit the same <section>/<div class="…"> the static markup used,
   so main.css applies unchanged — including its direct-child selectors such as
   `.services-preview > .container > h2`.

   This file deliberately holds no layout overrides. WordPress's own group
   stylesheet sets only `box-sizing`, so there is no stray block spacing to
   neutralise; a blanket `margin-block: 0` here would instead delete the design's
   own margin-bottom on .service-full-card, .philosophy-chapter, .cta and others. */

/* core/post-content wraps the page body in a `display: flow-root` div that the
   static markup did not have. flow-root suppresses margin collapsing through the
   wrapper, which changes the spacing above the first section and below the last.
   Restore plain block behaviour so the sections stack as they did when they were
   direct children of <main>. */
.michelle-page > .wp-block-post-content {
    display: block;
}
