/* Hide featured image on single posts | KN-29827259-hc */
.single .post-thumbnail {
	display:none;
}
/* Change the footer copyright info #29838559-hc */
.site-info {
    font-size:0;
}

.site-info:before {
    font-size:16px;
    color:black;
    content:"\00a9  Ana Maria Santuario 2021. All Rights Reserved. Site powered by Wordpress (shout out to The Happiness Engineers, you are talented and wonderful).";
}
/* Hide posts meta - 29843385 - (MA) */
.entry-title + .entry-meta  {
  display:none;
}
/* Set justified text on author description in posts - 29843385-HC - (MA) */
p.author-description {
	
  text-align:justify;
}
/* Hide author name at the end of the post - 29843385-HC - (MA) */
span.byline {
	
	display: none;
}
/* change width of masthead | 4160187-zen | GM */
@media only screen and (min-width: 1024px) {
    body:not(.fse-enabled) #masthead {
        width: unset;
    }
}
/* Normalize Image Size on Search Results / 4435645-zen (BM) */
:is(.search-results) img.attachment-post-thumbnail {
    max-width: 830px;
}



/* Normalize Image Size on Archive Pages / 4435645-zen (JH) */
:is(.archive) img.attachment-post-thumbnail {
max-width: 830px;
}

/* Normalize Image Size on Archive Pages / 4882363-zen (FC) */
:is(.search-results) figure.post-thumbnail,
:is(.archive) figure.post-thumbnail {
max-height:450px;
overflow:hidden;
}

/* Rearrange the header menu - 32626973-HC (NS) */
@media only screen and (min-width: 560px) {
    .site-header#masthead {
        align-items: center;
        display: grid;
        grid-template-columns: auto;
        grid-template-rows: auto;
        grid-column-gap: 16px;
        grid-template-areas:
            "site-logo social-navigation"
            "site-title ."
            "site-description main-navigation";
    }
    .site-header .social-navigation {
        align-self: start;
    }
}
/* END: Rearrange the header menu - 32626973-HC (NS) */
/* make shop page full width | 5290342-zen eD */
body.woocommerce-shop #page .woocommerce:not(.widget), 
body.woocommerce-shop #page #woocommerce-wrapper, 
body.woocommerce-shop #page .woocommerce-Tabs-panel.entry-content > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.wp-block-separator):not(.entry-attachment) {
    width:100%;
}
.yrm-button-text-2.yrm-button-text-span {
  color: black;
}

/* Hide featured images on pages (not including blog post blocks) | 7449677-zen JP */
.page #main > .page > .post-thumbnail {
    display: none;
}
/* Fix submenu obstruction issue / 7864200-zen / ADS */
.menu-item-has-children .sub-menu {
left: auto !important;
right: 10%;
text-align: right;
}
/*remove max width of page titles 7906764-zen DF*/
.entry-header {
	max-width: none;
}