/* supplement.css — site-specific visual fixes (populated in Phase 4 QA) */

/* Fix 001 (#WF-0414): article/events pages use a Bootstrap `.navbar.fixed-top`
   header (height:120px). The article template's <main> carries utility classes
   `h-pt-150`/`h-pb-50` that the theme never defines, so content started at the
   very top and the fixed header overlapped the article title on /pages/.
   Define the utilities so the content clears the fixed header. */
.h-pt-150 { padding-top: 150px; }
.h-pb-50 { padding-bottom: 50px; }
@media screen and (max-width: 992px) {
	/* On mobile the collapsed navbar is shorter; keep clearance but less gap. */
	.h-pt-150 { padding-top: 100px; }
}
