/*
Theme Name: Twenty Twenty-Five Child
Template: twentytwentyfive
Version: 1.0
Description: Child theme for Twenty Twenty-Five to reduce the top spacing under the header (navigation) and allow custom CSS tweaks.
Author: ChatGPT
*/

/* —— Reduce the space under the site header (navigation) —— */
/* Site‑wide: adjust the space between the top navigation and the page content */
main {
  margin-top: 1.5rem !important; /* Adjust to taste: 1rem–2rem are typical */
}

/* If you prefer to only affect the home page, replace the rule above with:
.home main { margin-top: 1.5rem !important; }
*/

/* Optional: restore text wrap around left/right‑aligned images (comment out if not needed) */
/*
.wp-block-image.alignleft { float: left; margin: 0 1em 1em 0; }
.wp-block-image.alignright { float: right; margin: 0 0 1em 1em; }
.wp-block-image img { height: auto; max-width: 100%; }
*/