/*
Theme Name: Basic Headless
Theme URI: 
Author: Custom
Author URI: 
Description: A minimal, unopinionated WordPress theme with no layout constraints, no theme.json, and no forced wrappers. Built so custom HTML/CSS blocks render exactly as written, full-bleed by default.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: basic-headless
*/

/* ---- Bare reset. No layout constraints, no max-width, no forced padding. ---- */

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: #222;
  background: #fff;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
}

/* Intentionally no .entry-content, .wp-block-post-content, or
   is-layout-constrained rules here. Content renders at full width
   unless you add your own CSS to constrain it. */
