/* Remove spacing between blocks across site // 4934821-zen (JJ) */
.wp-site-blocks > * + *, .wp-block-post-content > * + * {
  margin-block-start: 0;
}

/*  Button hover color/ 35725450-HC (JW) */
.wp-block-buttons>.wp-block-button .wp-block-button__link:hover {
background-color: #343e47 !important;
}

/* fix color issue in footer nav widget | 36101783-hc */
.wp-block-navigation.has-text-decoration-underline .wp-block-navigation-item__content, .wp-block-navigation.has-text-decoration-underline .wp-block-navigation-item__content:active, .wp-block-navigation.has-text-decoration-underline .wp-block-navigation-item__content:focus {
	color: white;
}

/* Hide last errant block group 5565999-zd TM */
.wp-site-blocks > .wp-block-group:last-child {
    display:none;
}

/* Mouse Hover Image */
.img:hover {
  opacity: 0.5;
  filter: alpha(opacity=25);
}

/* Fix: Blog Posts Block: Load More Posts button doesn't have the same styling as seen in editor | 5624740-zen GH */

.wp-block-newspack-blocks-homepage-articles button {
  border-width: 0;
  border-radius: 5px;
  color:white;
  font-size: 1.1em;
  background-color: var(--wp--preset--color--custom-color-7);
  padding-top: calc(var(--wp--custom--button--spacing--padding--top) + var(--wp--custom--button--border--width));
  padding-bottom: calc(var(--wp--custom--button--spacing--padding--bottom) + var(--wp--custom--button--border--width));
  padding-left: calc(var(--wp--custom--button--spacing--padding--left) + var(--wp--custom--button--border--width));
  padding-right: calc(var(--wp--custom--button--spacing--padding--right) + var(--wp--custom--button--border--width));
  text-decoration: none;
  font-weight: var(--wp--custom--button--typography--font-weight);
}

.wp-block-newspack-blocks-homepage-articles button:hover {
  background-color: #6F7B42;var(--wp--preset--color--custom-color-7);
}

/* End  | 5624740-zen */


/* CSS to reduce the space b/w tag line and brand name | 5650841-zen (RK)*/
p.wp-block-site-tagline {
    margin: auto !important;
}
	
/* Same button size on mobile*/	
	@media screen and (max-width:480px){
#wp--skip-link--target > div > div:nth-child(4) > div > div:nth-child(1) > a {
    width: 207.58px!important;
 }
}
	
/* Change hover color of homepage's specific button | ( 5723387-zen ) MT */

.home .is-content-justification-center  .wp-block-button.is-style-fill .wp-block-button__link:hover {

    background-color: #fa7d61 !important;
    
}

/* Change hover color of about us ) MT */

.about-us .is-content-justification-center  .wp-block-button.is-style-fill .wp-block-button__link:hover {

    background-color: #fa7d61 !important;
    
}