/*
Theme Name: Kinderplezier
Theme URI: https://kinderplezier.nl
Description: Official Kinderplezier FSE block theme
Version: 1.0.0
Author: MaltaCode
Author URI: https://maltacode.eu
Text Domain: kinderplezier
Requires at least: 6.4
Requires PHP: 8.0
*/

/* Global image safety-net (round KB-1, 2026-07-14) — a page not wired to one of the
   per-page scoped `.kpX img` rules (cloned pages, new pages, anything outside the
   standalone PHP templates) had NO size constraint at all and rendered images at
   natural size. :where() keeps this at zero specificity so every existing scoped
   rule still wins outright — this is a floor, never an override. Loads on every
   page via the always-enqueued 'kinderplezier-style' handle (kinderplezier_enqueue()
   in functions.php), unlike shared.css/page CSS which only load on wired templates. */
:where(img) {
	max-width: 100%;
	height: auto;
}
