Page-level Section wrapper. Every block inside an ACF Flex Content lives inside one of these — configures background color/pattern/image, outer (vertical) padding, inner max-width, and min-height. This preview renders 13 representative variants stacked.
1. Default — no background, default spacing
<Section />
Section content placeholder
Blocks added to this Section render here.
2. backgroundColor — solid navy
<Section backgroundColor="#070C3C" />
3. backgroundColor — paper
<Section backgroundColor="#F5F2EC" />
4. backgroundPattern — frame-1
<Section backgroundPattern="frame-1" backgroundColor="#070C3C" />
5. backgroundPattern — frame-5
<Section backgroundPattern="frame-5" backgroundColor="#070C3C" />
6. backgroundPattern + minHeight — vertically centred
<Section backgroundPattern="frame-3" backgroundColor="#070C3C" minHeight="md" />
7. outerSpacing — sm (tight vertical padding)
<Section outerSpacing="sm" backgroundColor="#F5F2EC" />
8. outerSpacing — xl (generous vertical padding)
<Section outerSpacing="xl" backgroundColor="#F5F2EC" />
9. innerSpacing — narrow (720px max-width)
<Section innerSpacing="narrow" backgroundColor="#F5F2EC" />
10. innerSpacing — full (edge-to-edge, no gutter)
<Section innerSpacing="full" backgroundColor="#070C3C" />
11. minHeight — screen (100svh, hero-style)
<Section minHeight="screen" backgroundPattern="frame-7" backgroundColor="#070C3C" />
12. minHeight — custom (200px)
<Section minHeight="custom" minHeightCustom={200} backgroundColor="#F5F2EC" />
13. sectionName — sets the section id (URL hash anchor)
<Section sectionName="hero" backgroundColor="#F5F2EC" />
<section id='hero' aria-label='hero'>
Blocks added to this Section render here.