/* AOS SiteHeader — scoped so it does not restyle the rest of Salient */

body.aos-custom-header {
  --dark-blue: #172643;
  --mid-blue: #056C75;
  --brand: #08B3C3;
  --light-blue: #76E4E7;
  --lightest: #C7E9EE;
  --electric: #0FEAB0;
  --not-white: #F4F4F4;
}

body.aos-custom-header #header-space {
  display: block;
  min-height: 72px;
}

body.aos-custom-header #header-outer.aos-site-header {
  -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
  /* background: #fff; */
  padding: 14px 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: auto;
  z-index: 9999;
  box-shadow: none;
  overflow: visible;
}

body.aos-custom-header #header-outer.aos-site-header header#top {
  display: block;
  float: none;
  width: 100%;
  padding: 0;
  margin: 0;
  background: transparent;
}

body.aos-custom-header #header-outer.aos-site-header .container.w {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  position: relative;
  z-index: 2;
  float: none;
  height: auto;
  width: 100%;
  margin: 0 auto;
  max-width: var(--container-width, 1650px);
  /* padding-left: var(--container-padding, 60px);
  padding-right: var(--container-padding, 60px); */
  box-sizing: border-box;
}

@media only screen and (max-width: 999px) {
  body.aos-custom-header #header-outer.aos-site-header .container.w {
    max-width: var(--mobile-container-width, 88%);
    padding-left: 0;
    padding-right: 0;
  }
}

body.aos-custom-header #header-outer.aos-site-header .w > a,
body.aos-custom-header #header-outer.aos-site-header .custom-logo-link {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

@media only screen and (max-width: 999px) {
  body.aos-custom-header #header-outer.aos-site-header .w > a,
  body.aos-custom-header #header-outer.aos-site-header .custom-logo-link {
    flex-grow: 1;
  }
}

body.aos-custom-header #header-outer.aos-site-header img,
body.aos-custom-header #header-outer.aos-site-header .custom-logo {
  height: 44px;
  width: auto;
  display: block;
  flex-shrink: 0;
  max-height: 44px;
}

body.aos-custom-header #header-outer.aos-site-header .nav-links {
  display: flex;
  gap: 4px;
  align-items: center;
  flex: 1;
  justify-content: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

body.aos-custom-header #header-outer.aos-site-header .nav-item {
  position: relative;
}

body.aos-custom-header #header-outer.aos-site-header .nav-item > a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--dark-blue);
  text-decoration: none;
  padding: 10px 13px;
  border-radius: 200px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: background 0.15s;
  line-height: 1.2;
}

body.aos-custom-header #header-outer.aos-site-header .nav-item > a:hover {
  background: var(--not-white);
  color: var(--brand);
}

body.aos-custom-header #header-outer.aos-site-header .nav-item > a .caret {
  font-size: 9px;
  color: var(--brand);
}

body.aos-custom-header #header-outer.aos-site-header .dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: #fff;
  border-radius: 16px;
  min-width: 290px;
  box-shadow: 0 12px 40px rgba(23, 38, 67, 0.18);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: all 0.18s ease;
  z-index: 200;
}

body.aos-custom-header #header-outer.aos-site-header .nav-item:hover > .dropdown,
body.aos-custom-header #header-outer.aos-site-header .nav-item:focus-within > .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

body.aos-custom-header #header-outer.aos-site-header .dropdown a {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  text-decoration: none;
  padding: 10px 12px;
  border-radius: 12px;
  color: var(--dark-blue);
}

body.aos-custom-header #header-outer.aos-site-header .dropdown a:hover {
  background: var(--not-white);
}

body.aos-custom-header #header-outer.aos-site-header .dd-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--lightest);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
}

body.aos-custom-header #header-outer.aos-site-header .dd-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--dark-blue);
  line-height: 20px;
}

body.aos-custom-header #header-outer.aos-site-header .dd-title .pill {
  font-size: 10px;
  font-weight: 700;
  background: var(--electric);
  color: var(--dark-blue);
  border-radius: 200px;
  padding: 2px 8px;
  margin-left: 6px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

body.aos-custom-header #header-outer.aos-site-header .dd-desc {
  font-size: 12px;
  color: #4d4d4d;
  line-height: 18px;
  margin-top: 1px;
}

body.aos-custom-header #header-outer.aos-site-header .nav-right {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

body.aos-custom-header #header-outer.aos-site-header .login-link {
  font-size: 14px;
  color: var(--dark-blue);
  text-decoration: none;
  opacity: 0.75;
  white-space: nowrap;
}

body.aos-custom-header #header-outer.aos-site-header .login-link:hover {
  color: var(--brand);
  opacity: 1;
}

body.aos-custom-header #header-outer.aos-site-header .btn-nav,
body.aos-custom-header .aos-ocm-actions a.btn-nav {
  background: var(--brand);
  color: #fff !important;
  font-weight: 600;
  font-size: 14px;
  padding: 11px 24px;
  border-radius: 200px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s;
  box-shadow: 0 4px 14px rgba(8, 179, 195, 0.35);
  line-height: 1.2;
}

body.aos-custom-header #header-outer.aos-site-header .btn-nav:hover,
body.aos-custom-header .aos-ocm-actions a.btn-nav:hover {
  background: var(--mid-blue);
}

/* Salient OCM toggle: hidden on desktop, shown with the mobile breakpoint */
body.aos-custom-header #header-outer.aos-site-header .slide-out-widget-area-toggle {
  display: none !important;
  position: relative !important;
  top: auto !important;
  right: auto !important;
  left: auto !important;
  transform: none !important;
  flex-shrink: 0;
  width: 28px;
  height: 24px;
  margin: 0;
}

body.aos-custom-header .aos-ocm-actions {
  margin-top: 24px;
  padding: 16px 0 0;
  list-style: none;
}

body.aos-custom-header .aos-ocm-actions li {
  margin: 0 0 12px;
}

body.aos-custom-header .aos-ocm-actions a.login-link {
  opacity: 0.85;
}

@media (max-width: 980px) {
  body.aos-custom-header #header-outer.aos-site-header .nav-links,
  body.aos-custom-header #header-outer.aos-site-header .login-link {
    display: none;
  }

  body.aos-custom-header #header-outer.aos-site-header .slide-out-widget-area-toggle {
    display: block !important;
  }
}

/* Campaign: logo-only header, no nav / OCM */
body.aos-campaign-header #header-outer.aos-site-header .container.w {
  justify-content: flex-start;
}

body.aos-campaign-header #header-outer.aos-site-header .slide-out-widget-area-toggle,
body.aos-campaign-header #slide-out-widget-area,
body.aos-campaign-header .slide-out-widget-area-backdrop,
body.aos-campaign-header #footer-outer {
  display: none !important;
}

body.aos-campaign-header footer.aos-campaign-footer {
  background: #fff;
  border-top: 1px solid rgba(23, 38, 67, 0.08);
  padding: 22px 0;
}

body.aos-campaign-header footer.aos-campaign-footer .container.w {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  max-width: var(--container-width, 1650px);
  margin: 0 auto;
  box-sizing: border-box;
}

body.aos-campaign-header footer.aos-campaign-footer .w > a,
body.aos-campaign-header footer.aos-campaign-footer .custom-logo-link {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

body.aos-campaign-header footer.aos-campaign-footer img,
body.aos-campaign-header footer.aos-campaign-footer .custom-logo {
  height: 36px;
  width: auto;
  display: block;
  max-height: 36px;
}

body.aos-campaign-header footer.aos-campaign-footer .aos-campaign-footer__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 8px 14px;
  font-family: 'Hind', sans-serif;
  font-size: 13.5px;
  line-height: 1.4;
  color: #4d4d4d;
}

body.aos-campaign-header footer.aos-campaign-footer .aos-campaign-footer__copy {
  margin: 0;
}

body.aos-campaign-header footer.aos-campaign-footer .aos-campaign-footer__links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

body.aos-campaign-header footer.aos-campaign-footer .aos-campaign-footer__links a {
  color: var(--dark-blue);
  text-decoration: none;
}

body.aos-campaign-header footer.aos-campaign-footer .aos-campaign-footer__links a:hover {
  color: var(--brand);
}

body.aos-campaign-header footer.aos-campaign-footer .aos-campaign-footer__sep {
  color: rgba(23, 38, 67, 0.35);
}

@media only screen and (max-width: 999px) {
  body.aos-campaign-header footer.aos-campaign-footer .container.w {
    max-width: var(--mobile-container-width, 88%);
    flex-direction: column;
    align-items: flex-start;
  }

  body.aos-campaign-header footer.aos-campaign-footer .aos-campaign-footer__meta {
    justify-content: flex-start;
  }
}
