/* HUB HEADER - SUBNAVIGATION */

/* HEADER Z-INDEX AND LAYOUT HEADER POSITIONING */
/* Ensure layout-header dropdowns appear above hub-header */
.layout-header{
  z-index: 100000 !important;
}

.layout-header ul.menu-primary > li > ul.sub-menu{
  z-index: 100001 !important;
}
/* END - HEADER Z-INDEX AND LAYOUT HEADER POSITIONING */

/* HUB HEADER BASE STYLES */
.hub-header{
  background-color: #000000; /* NDWA-Black */
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-end;
  align-items: stretch;
  height: 50px;
  position: fixed;
  /* top: 50px; */
  left: 0;
  z-index: 99999;
  overflow: visible;
  width: 100%;
}

@media only screen and (min-width:992px){
  .hub-header{
    height: auto;
    position: relative;
    overflow: initial;
  }
}
/* END - HUB HEADER BASE STYLES */

/* SCROLL BEHAVIOR - HEADER VISIBILITY AND POSITIONING */
/* HIDE LAYOUT-HEADER ON SCROLL FOR KNOW YOUR RIGHTS TEMPLATE */

body.page-template-page-know-your-rights.scroll .layout-header,
body[class*="page-template-page-know-your-rights"].scroll .layout-header{
  display: none !important;
  position: fixed !important;
  visibility: hidden !important;
  opacity: 0 !important;
  height: 0 !important;
  overflow: hidden !important;
}

/* KEEP HUB-HEADER FIXED AT TOP ON SCROLL */

body.page-template-page-know-your-rights.scroll .hub-header,
body[class*="page-template-page-know-your-rights"].scroll .hub-header{
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  z-index: 99999 !important;
  overflow: visible !important;
}

/* MOBILE SCROLL BEHAVIOR (< 992px) */
@media only screen and (max-width: 991px){
  body.page-template-page-know-your-rights.scroll .hub-header,
  body[class*="page-template-page-know-your-rights"].scroll .hub-header{
    top: 0 !important;
  }
  
  body.page-template-page-know-your-rights.scroll #rmp_menu_trigger-9528,
  body[class*="page-template-page-know-your-rights"].scroll #rmp_menu_trigger-9528{
    display: none !important;
  }
}

@media only screen and (min-width:992px){
  body.page-template-page-know-your-rights.scroll .hub-header,
  body[class*="page-template-page-know-your-rights"].scroll .hub-header{
    height: 50px !important;
  }
  
  /* Adjust body padding when hub-header is fixed at top */
  body.page-template-page-know-your-rights.scroll,
  body[class*="page-template-page-know-your-rights"].scroll{
    padding-top: 50px !important;
  }
}
/* END - SCROLL BEHAVIOR - HEADER VISIBILITY AND POSITIONING */

/* HUB NAV STRUCTURE */
.hub-title{
  flex: 1 1 auto;
  overflow: hidden;
  display: flex;
  margin: auto 0;
}

@media only screen and (min-width:992px){
  .hub-title{
    order: 1;
  }
}

.hub-nav{
}

/* Mobile only hub-nav styling */
@media only screen and (max-width: 991px){
  .hub-nav{
    flex: 1 1 375px;
    display: flex;
    overflow: visible;
    justify-content: flex-end;
  }
}

@media only screen and (min-width:992px){
  .hub-nav{
    order: 2;
    background-color: #000000; /* NDWA-Black */
    flex: 1 0 auto;

    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-end;
    align-items: stretch;
  }
}
/* END - HUB NAV STRUCTURE */

/* HUB TITLE STYLES */
/* Mobile only hub-title styling */
@media only screen and (max-width: 991px){
  .hub-title{
    flex: 1 1 107px;
    margin-right: auto;
  }
}

@media only screen and (max-width: 450px){
  .hub-title.spanish-only{
    font-size: 0.75em;
    padding-right: 10px;
  }
}

.hub-title a{
  /* height: 50px; */
  background-position: 10px center;
  background-size: auto 45%;
  background-repeat: no-repeat;
  display: block;
  color: #ff9d14; /* NDWA-Orange */
  font-family: 'Chiswick Grotesque Web', sans-serif;
  font-size: 0.85em;
  text-transform: uppercase;
  letter-spacing: 1px;
  overflow: hidden;
  /* max-width: 100px; */
  padding-left: 10px;
  text-decoration: none;
  line-height: 1;
  margin: auto 0;
}

@media only screen and (min-width: 600px){
  .hub-title a{
    font-size: 1.1em;
  }
}

@media only screen and (min-width:992px){
  .hub-title a{
    background-position: 20px center;
    padding-left: 20px;
    line-height: 1.1;
    font-size: 0.85em;
    /* height: 34px; */
  }
}

@media only screen and (min-width: 1100px){
  .hub-title a{
    font-size: 1em;
  }
}

@media only screen and (min-width: 1200px){
  .hub-title a{
    background-position: 25px center;
    padding-left: 25px;
    font-size: 1.2em;
  }
}

@media only screen and (min-width:992px){
  .hub-title a:hover{
    opacity: 0.8;
  }
}
/* END - HUB TITLE STYLES */

/* HUB NAV MENU - MOBILE BEHAVIOR AND MENU LIST */
/* Mobile menu behavior - hide all items except language switcher */
@media only screen and (max-width: 991px){
  /* Hide all menu items by default */
  ul.menu-know-your-rights > li{
    display: none !important;
  }
  
  /* Keep language switcher visible - target any WPML language switcher */
  ul.menu-know-your-rights > li[id*="menu-item-wpml-ls"],
  ul.menu-know-your-rights > li.wpml-ls-item,
  ul.menu-know-your-rights > li[class*="wpml-ls-"],
  ul.menu-know-your-rights > li.wpml-ls-menu-item{
    display: flex !important;
    position: relative;
    z-index: 100;
  }
  
  /* Ensure language switcher links are clickable */
  ul.menu-know-your-rights > li[id*="menu-item-wpml-ls"] a,
  ul.menu-know-your-rights > li.wpml-ls-item a,
  ul.menu-know-your-rights > li[class*="wpml-ls-"] a,
  ul.menu-know-your-rights > li.wpml-ls-menu-item a{
    pointer-events: auto;
    z-index: 101;
    position: relative;
  }
  
  /* Language switcher submenu on mobile */
  ul.menu-know-your-rights > li[id*="menu-item-wpml-ls"] > ul.sub-menu,
  ul.menu-know-your-rights > li.wpml-ls-item > ul.sub-menu,
  ul.menu-know-your-rights > li[class*="wpml-ls-"] > ul.sub-menu,
  ul.menu-know-your-rights > li.wpml-ls-menu-item > ul.sub-menu{
    display: none;
    position: absolute;
    top: 50px;
    left: 0;
    z-index: 102;
    background-color: #000000;
    min-width: 200px;
    box-shadow: 0 3px 4px rgba(0,0,0,0.2);
    pointer-events: auto;
  }
  
  ul.menu-know-your-rights > li[id*="menu-item-wpml-ls"].mobile-active > ul.sub-menu,
  ul.menu-know-your-rights > li.wpml-ls-item.mobile-active > ul.sub-menu,
  ul.menu-know-your-rights > li[class*="wpml-ls-"].mobile-active > ul.sub-menu,
  ul.menu-know-your-rights > li.wpml-ls-menu-item.mobile-active > ul.sub-menu{
    display: block;
    pointer-events: auto;
  }
  
  /* Ensure submenu links are clickable */
  ul.menu-know-your-rights > li[id*="menu-item-wpml-ls"] > ul.sub-menu a,
  ul.menu-know-your-rights > li.wpml-ls-item > ul.sub-menu a,
  ul.menu-know-your-rights > li[class*="wpml-ls-"] > ul.sub-menu a,
  ul.menu-know-your-rights > li.wpml-ls-menu-item > ul.sub-menu a{
    pointer-events: auto;
    cursor: pointer;
    z-index: 103;
    position: relative;
  }
  
  /* Show dropdown on mobile - position it to not interfere with language switcher */
  select.menu-know-your-rights-dropdown{
    display: block;
    width: 100%;
    height: 50px;
    padding: 0 15px;
    background-color: #000000; /* NDWA-Black */
    color: #FFFFFF; /* NDWA-White */
    border: none;
    font-size: 16px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23FFFFFF' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
    cursor: pointer;
    position: relative;
    z-index: 1;
    flex: 1 1 200px;
    max-width: 300px;
  }
  
  select.menu-know-your-rights-dropdown option{
    background-color: #000000;
    color: #FFFFFF;
    padding: 10px;
  }
}

ul.menu-know-your-rights{
  display: flex;
  flex-flow: row nowrap;
  padding: 0;
  margin: 0;
  list-style: none;
}

@media only screen and (max-width:991px){
  ul.menu-know-your-rights{
    width: auto;
  }
}

/* Hide dropdown on desktop */
@media only screen and (min-width:992px){
  select.menu-know-your-rights-dropdown{
    display: none !important;
  }
}

ul.menu-know-your-rights > li{
  flex: 0 0 auto;
  display: flex;
  flex-flow: column nowrap;
  align-items: stretch;
  position: relative;
}

ul.menu-know-your-rights li > a{
  display: flex;
  align-items: center;
  padding: 0 15px;
  color: #FFFFFF; /* NDWA-White */
  text-decoration: none;
  height: 50px;
  line-height: 1;
  font-size: 16px;
}

@media only screen and (min-width:992px){
  ul.menu-know-your-rights li > a{
    /* height: 50px; */
    padding: 0 10px;
  }
}

@media only screen and (min-width:1024px){
  ul.menu-know-your-rights li > a{
    padding: 0 15px;
  }
}

@media only screen and (min-width:1200px){
  ul.menu-know-your-rights li > a{
    padding: 0 20px;
  }
}

ul.menu-know-your-rights > li > a:hover{
  color: #ff9d14; /* NDWA-Orange */
  background-color: rgba(255, 157, 20, 0.1);
}

/* Dropdown triangle indicator for menu items with submenus */
ul.menu-know-your-rights > li.menu-item-has-children > a{
  position: relative;
  padding-right: 30px;
}

ul.menu-know-your-rights > li.menu-item-has-children > a:after{
  display: block;
  content: " ";
  pointer-events: none;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
  border-right: 3px solid transparent;
  border-top: 3px solid transparent;
  border-bottom: 3px solid #FFFFFF; /* NDWA-White */
  border-left: 3px solid #FFFFFF; /* NDWA-White */
  width: 6px;
  height: 6px;
}

ul.menu-know-your-rights > li.menu-item-has-children > a:hover:after{
  border-bottom-color: #ff9d14; /* NDWA-Orange */
  border-left-color: #ff9d14; /* NDWA-Orange */
}

@media only screen and (min-width:992px){
  ul.menu-know-your-rights > li.menu-item-has-children > a{
    padding-right: 30px;
  }
  
  ul.menu-know-your-rights > li.menu-item-has-children > a:after{
    right: 15px;
  }
}
/* END - HUB NAV MENU - MOBILE BEHAVIOR AND MENU LIST */

/* SUBMENU DROPDOWN */
ul.menu-know-your-rights > li > ul.sub-menu{
  padding: 0;
  margin: 0;
  list-style-type: none;
  display: none;
}

/* Mobile dropdown styles */
ul.menu-know-your-rights > li.mobile-active > ul.sub-menu{
  display: block;
  position: relative;
  top: 0;
  width: 100%;
  box-shadow: none;
}

@media only screen and (min-width:992px){
  ul.menu-know-your-rights > li > ul.sub-menu{
    position: absolute;
    top: 50px; /* SETTING: HEIGHT OF HUB NAV BAR */
    min-width: 200px; /* SETTING: MINIMUM WIDTH OF DROPDOWN */
    left: 0;
    box-shadow: 0 3px 4px rgba(0,0,0,0.2);
    z-index: 100000;
  }
  
  /* Language switcher submenu - adjusted top position */
  ul.menu-know-your-rights > li[id*="menu-item-wpml-ls"] > ul.sub-menu,
  ul.menu-know-your-rights > li.wpml-ls-item > ul.sub-menu,
  ul.menu-know-your-rights > li[class*="wpml-ls-"] > ul.sub-menu,
  ul.menu-know-your-rights > li.wpml-ls-menu-item > ul.sub-menu{
    top: 42px;
  }

  ul.menu-know-your-rights > li:hover > ul.sub-menu,
  ul.menu-know-your-rights > li > ul.sub-menu:hover{
    display: block;
  }
  
  /* Reset mobile-active class behavior on desktop */
  ul.menu-know-your-rights > li.mobile-active > ul.sub-menu{
    display: none;
  }
  
  ul.menu-know-your-rights > li.mobile-active:hover > ul.sub-menu{
    display: block;
  }
  
  /* Ensure dropdowns work on scroll */
  body.page-template-page-know-your-rights.scroll .hub-header .hub-nav,
  body[class*="page-template-page-know-your-rights"].scroll .hub-header .hub-nav{
    overflow: visible !important;
  }
  
  body.page-template-page-know-your-rights.scroll ul.menu-know-your-rights > li > ul.sub-menu,
  body[class*="page-template-page-know-your-rights"].scroll ul.menu-know-your-rights > li > ul.sub-menu{
    z-index: 100001 !important;
  }
}

ul.menu-know-your-rights > li > ul.sub-menu > li{
  display: block;
}

ul.menu-know-your-rights > li > ul.sub-menu > li > a{
  display: block;
  padding: 10px 20px;
  height: 45px;
  line-height: 24px;
  background-color: #000000; /* NDWA-Black */
  color: #FFFFFF; /* NDWA-White */
  text-decoration: none;
}

ul.menu-know-your-rights > li > ul.sub-menu > li > a:hover{
  color: #ff9d14; /* NDWA-Orange */
  background-color: #000000; /* NDWA-Black */
}
/* END - SUBMENU DROPDOWN */

/* WPML LANGUAGE SWITCHER */
ul.menu-know-your-rights li[id*="menu-item-wpml-ls"] > a,
ul.menu-know-your-rights li.wpml-ls-item > a,
ul.menu-know-your-rights li[class*="wpml-ls-"] > a,
ul.menu-know-your-rights li.wpml-ls-menu-item > a{
  color: #ff9d14; /* NDWA-Orange */
}

ul.menu-know-your-rights li[id*="menu-item-wpml-ls"] > a:hover,
ul.menu-know-your-rights li.wpml-ls-item > a:hover,
ul.menu-know-your-rights li[class*="wpml-ls-"] > a:hover,
ul.menu-know-your-rights li.wpml-ls-menu-item > a:hover{
  color: #000000; /* NDWA-Black */
}

/* Language switcher triangle icon - orange by default */
ul.menu-know-your-rights li[id*="menu-item-wpml-ls"].menu-item-has-children > a:after,
ul.menu-know-your-rights li.wpml-ls-item.menu-item-has-children > a:after,
ul.menu-know-your-rights li[class*="wpml-ls-"].menu-item-has-children > a:after,
ul.menu-know-your-rights li.wpml-ls-menu-item.menu-item-has-children > a:after{
  border-bottom-color: #ff9d14; /* NDWA-Orange */
  border-left-color: #ff9d14; /* NDWA-Orange */
}

/* Language switcher triangle icon - black on hover */
ul.menu-know-your-rights li[id*="menu-item-wpml-ls"].menu-item-has-children > a:hover:after,
ul.menu-know-your-rights li.wpml-ls-item.menu-item-has-children > a:hover:after,
ul.menu-know-your-rights li[class*="wpml-ls-"].menu-item-has-children > a:hover:after,
ul.menu-know-your-rights li.wpml-ls-menu-item.menu-item-has-children > a:hover:after{
  border-bottom-color: #000000; /* NDWA-Black */
  border-left-color: #000000; /* NDWA-Black */
}

ul.menu-know-your-rights li.wpml-ls-current-language > a{
  border: 1px solid #ff9d14;
  margin: 5px 0;
  height: 39px;
  width: 96px;
  line-height: 36px;
  display: block;
  padding: 0 9px;
}

ul.menu-know-your-rights li.wpml-ls-current-language > a:hover{
  background-color: #ff9d14; /* NDWA-Orange */
}

@media only screen and (min-width: 992px){
  ul.menu-know-your-rights li.wpml-ls-current-language > a{
    height: 36px;
    margin: 6px 0;
  }
}

@media only screen and (min-width: 992px){
	.es ul.menu-know-your-rights > li:not(.wpml-ls-menu-item) > ul.sub-menu{
		min-width: 250px;
	}
}
/* END - WPML LANGUAGE SWITCHER */

/* 2026 SIMPLIFIED LANGUAGE SWITCHER IN HERO */



/* END - 2026 SIMPLIFIED LANGUAGE SWITCHER IN HERO */