/*Change Header Color*/
#masthead{
	background: #fff;
}


/*Change link color*/
a{
	color: blue;
}


/*Change button colors*/
button {
    background: blue;
}

/*Change Header Color*/
#masthead{
	background: #fff;
}


/*Change link color*/
a{
	color: blue;
}


/*Change button colors*/
button {
    background: blue;
}

/* Make primary menu color black | 26251102-hc kf */
#menu-primary li a {
    color: blue;
}

/* Hide entry meta on homepage / 26364596-hc JAR */
.home .wp-block-newspack-blocks-homepage-articles article .entry-meta {
    display: none;
}

/* hide entry meta on single post pages 26365374-hc RS */
.single .entry-footer {
	display: none;
}

/* set site footer elements to be in a column | #26392442-hc eD */
.site-footer {
flex-direction: column;
}
/* set footer navigation width to 100% | #XXXXX-hc eD */
.footer-navigation {
flex-basis: 100%;
}

/* hide author bio and post navigation at the bottom of posts 28212154-hc */
.single .author-bio,
.post-navigation {
    display: none;
}

/* Menu Link Color HC-28212154-PA */
ul#menu-primary-1 a {
	color: #000;
	background: #fff;
}

/* Move logo next to title | 29974026-hc */
 @media screen and (min-width: 560px) {  
    .site-header-wrap {
        grid-template-areas: 
            "site-logo site-title main-navigation"
            "site-logo site-title main-navigation"
            "site-logo site-description social-navigation";
        grid-template-columns: 200px 0 1fr;
        grid-template-rows: 52px 52px 0;
    }
    .site-header-wrap .site-title,  
    .site-header-wrap .main-navigation {
        align-self: end;
    }
    .site-header-wrap .site-logo {
        margin-bottom: 0;
    }
  .site-logo {
    align-self: flex-start;
  }
}

/*  hide site name from footer -- 29974026-hc (DOC) */
.site-footer a.site-name  {
  display: none;
}


/*  widget font size -- 28549294-hc (DOC) */
.widget.widget_text p {
  font-size: 0.8rem;
}


/* hide site description | hc-29974026-LL */
p.site-description {
	visibility: hidden;
}