/* =================================
   XENYRA - WORDPRESS CLEANUP
   Removes default WordPress theme frame for Xenyra pages
   ================================= */


/* =================================
   1. HIDE DEFAULT WORDPRESS TITLE
   ================================= */

body.home .wp-block-post-title,
body.page .wp-block-post-title,
body .wp-block-post-title,
body.home .entry-title,
body.page .entry-title,
body.home h1.has-text-align-center,
body.page h1.has-text-align-center{
  display:none !important;
}


/* =================================
   2. HIDE DEFAULT THEME HEADER / FOOTER
   ================================= */

body.home header.wp-block-template-part,
body.home footer.wp-block-template-part,
body.page header.wp-block-template-part,
body.page footer.wp-block-template-part{
  display:none !important;
}


/* =================================
   3. REMOVE DEFAULT THEME PAGE SPACING
   ================================= */

body.home .wp-site-blocks,
body.page .wp-site-blocks{
  margin:0 !important;
  padding:0 !important;
}

body.home main,
body.page main{
  margin:0 !important;
  padding:0 !important;
}


/* =================================
   4. REMOVE DEFAULT CONTENT LIMITS
   ================================= */

body.home .entry-content,
body.page .entry-content,
body.home .wp-block-post-content,
body.page .wp-block-post-content{
  max-width:none !important;
  width:100% !important;
  margin:0 !important;
  padding:0 !important;
}


/* =================================
   5. REMOVE GUTENBERG CONSTRAINED LAYOUT
   ================================= */

body.home .is-layout-constrained > :where(:not(.alignleft):not(.alignright):not(.alignfull)),
body.page .is-layout-constrained > :where(:not(.alignleft):not(.alignright):not(.alignfull)){
  max-width:none !important;
  margin-left:0 !important;
  margin-right:0 !important;
}


/* =================================
   6. REMOVE DEFAULT BLOCK SPACING
   ================================= */

body.home .wp-site-blocks > *,
body.page .wp-site-blocks > *,
body.home .entry-content > *,
body.page .entry-content > *,
body.home .wp-block-post-content > *,
body.page .wp-block-post-content > *{
  margin-block-start:0 !important;
  margin-block-end:0 !important;
}


/* =================================
   7. REMOVE HTML BLOCK FRAME
   ================================= */

body.home .wp-block-html,
body.page .wp-block-html{
  margin:0 !important;
  padding:0 !important;
  max-width:none !important;
  width:100% !important;
}


/* =================================
   8. REMOVE WORDPRESS SPACER BLOCKS
   ================================= */

body.home .wp-block-spacer,
body.page .wp-block-spacer{
  display:none !important;
  height:0 !important;
  min-height:0 !important;
  margin:0 !important;
  padding:0 !important;
}


/* =================================
   9. XENYRA CUSTOM PAGE RESET
   ================================= */

body.home .xen-home,
body.page .xen-home{
  display:block;
  width:100% !important;
  margin:0 !important;
  padding:0 !important;
}


/* =================================
   10. MAKE FIRST HERO START DIRECTLY AFTER XENYRA HEADER
   ================================= */

body.home .xen-home > .xen-hero:first-child,
body.page .xen-home > .xen-hero:first-child{
  margin-top:0 !important;
  padding-top:52px;
}


/* =================================
   11. REMOVE SPACING LEFT BY HIDDEN TITLE AREA
   ================================= */

body.home .wp-block-post-title + *,
body.page .wp-block-post-title + *,
body.home .entry-title + *,
body.page .entry-title + *{
  margin-top:0 !important;
}