/* =====================================
DESKTOP HOMEPAGE ONLY NAVIGATION STYLE
===================================== */

@media (min-width: 768px) {

  /* Main navigation links */
  body.home header .wp-block-navigation-item__content,
  body.home header .wp-block-navigation a,
  body.home header .wp-block-navigation-item a,
  body.front-page header .wp-block-navigation-item__content,
  body.front-page header .wp-block-navigation a,
  body.front-page header .wp-block-navigation-item a {
    color: #24181d !important;
    font-weight: 600;
  }

  /* Site title / logo text */
  body.home header .wp-block-site-title a,
  body.front-page header .wp-block-site-title a {
    color: #24181d !important;
  }

  /* Social icons */
  body.home header .wp-block-social-links svg,
  body.front-page header .wp-block-social-links svg {
    fill: #24181d !important;
    color: #24181d !important;
  }

  /* Hover color */
  body.home header .wp-block-navigation-item__content:hover,
  body.home header .wp-block-navigation a:hover,
  body.front-page header .wp-block-navigation-item__content:hover,
  body.front-page header .wp-block-navigation a:hover {
    color: #7b5a6d !important;
  }

  /* Dropdown menu background */
  body.home header .wp-block-navigation__submenu-container,
  body.front-page header .wp-block-navigation__submenu-container {
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,0.08);
  }

  /* Dropdown links */
  body.home header .wp-block-navigation__submenu-container a,
  body.front-page header .wp-block-navigation__submenu-container a {
    color: #24181d !important;
  }

}
/* Header top bar text (email etc) */
body.home header .wp-block-site-tagline,
body.home header .wp-block-site-tagline a,
body.home header .wp-block-site-description,
body.home header .wp-block-site-description a,
body.home header .wp-block-paragraph,
body.home header .wp-block-paragraph a,
body.front-page header .wp-block-site-tagline,
body.front-page header .wp-block-site-tagline a,
body.front-page header .wp-block-site-description,
body.front-page header .wp-block-site-description a,
body.front-page header .wp-block-paragraph,
body.front-page header .wp-block-paragraph a {
  color: #24181d !important;
}
/* =====================================
MOBILE HEADER TITLE FIX
===================================== */
@media (max-width: 767px) {

  /* Give the site title more room and stop awkward letter stacking */
  body.home header .wp-block-site-title,
  body.front-page header .wp-block-site-title {
    max-width: 220px;
    min-width: 0;
    line-height: 1.05;
    margin: 0;
  }

  body.home header .wp-block-site-title a,
  body.front-page header .wp-block-site-title a {
    display: block;
    font-size: 42px !important;
    line-height: 1.05;
    word-break: normal !important;
    overflow-wrap: normal !important;
    hyphens: none !important;
    white-space: normal !important;
    text-wrap: balance;
  }

  /* Prevent parent flex/grid items from crushing the title */
  body.home header .wp-block-group,
  body.front-page header .wp-block-group,
  body.home header .wp-block-columns,
  body.front-page header .wp-block-columns {
    min-width: 0;
  }
}