/* ===== FORCE FULL-WIDTH HEADER ===== */
.site-header,
#masthead {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
	padding: 0px 0px 0px 0px;
  
}


/* Remove any centering container */
.site-header .container,
#masthead .container,
.site-header .wrapper,
#masthead .wrapper {
  max-width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}


/* ===== MAIN HEADER LAYOUT ===== */
#masthead {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
}

/* ===== LOGO ===== */
.site-logo {
  margin-right: 0px;
	padding: 0px 15px 0px 0px;
		margin-left: 0px;
}

.site-logo img {
  max-height: 100px;
  width: 100px;
}

/* ===== BRANDING (STACKED) ===== */
.site-branding {
  margin-bottom: 0 !important;
}
.site-branding {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center; /* helps vertical alignment */
  margin: 0;
  padding: 0;
  margin-top: -40px;
}

/* ===== SITE TITLE (SMALLER + NO UNDERLINE EVER) ===== */
.site-title {
  margin: 0;
}

.site-title a
 {
  font-size: 26px !important;
  font-weight: 600;
  text-decoration: none !important;
  white-space: nowrap;
}

.site-title a::after,
.site-title a::before {
  text-decoration: none !important;
  border-bottom: none !important;
  box-shadow: none !important;
  background: none !important;
}

.site-title {
  border-bottom: none !important;
}

.site-title::after {
  content: none !important;
  display: none !important;
}

/* ===== KILL TITLE UNDERLINE IN ALL STATES ===== */
.site-title a,
.site-title a:link,
.site-title a:visited,
.site-title a:hover,
.site-title a:focus,
.site-title a:active {
  text-decoration: none !important;
  border-bottom: none !important;
  box-shadow: none !important;
  background: none !important;
}

/* Kill pseudo-element underline */
.site-title a::after,
.site-title a::before {
  content: none !important;
  display: none !important;
}

/* Some themes reapply styles on resize via parent */
.site-title,
.site-title * {
  text-decoration: none !important;
  border-bottom: none !important;
}

/* Specifically kill pseudo-element underline */
.site-title a::after {
  content: none !important;
  display: none !important;
}

/* ===== TAGLINE (SMALLER) ===== */
.site-description {
  font-size: 14px !important;
  color: #666;
  margin: 2px 0 0 0;
  padding: 0;
  border: none;
}


/* ===== NAVIGATION ROW ===== */
.primary-navigation {
  width: 100%;
  margin-top: -15px;
  background-color: #D0DFDC !important;
  padding: 10px 0;
}

/* ===== MOBILE MENU STYLING (SAFE - DOES NOT BREAK FUNCTIONALITY) ===== */
@media (max-width: 600px) {

  /* ===== GENERAL NAV AREA ===== */
  .primary-navigation {
    background-color: #ffffff !important;
    padding: 10px 0;
  }
  /* ===== HEADER CLEANUP ===== */
  .site-description {
    display: none !important;
  }

  .site-title a { 
    display: none !important;
  }
	
	  .site-logo img {
    max-height: 80px !important;
    width: 80px !important;
  }

}