#feedops-standard-header.feedops-header {
  display: block !important;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  border-bottom: 1px solid #d8dee8;
  background: #ffffff;
  backdrop-filter: blur(14px);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow: visible;
}

html {
  scroll-padding-top: 160px;
}

body {
  padding-top: 134px;
}

#feedops-standard-header a {
  color: inherit;
  text-decoration: none;
}

#feedops-standard-header .feedops-mode-switch {
  border-bottom: 1px solid #d8dee8;
  background: #f4f6f9;
}

#feedops-standard-header .feedops-mode-inner {
  width: min(1180px, calc(100% - 40px));
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  margin: 0 auto;
  padding: 6px 0;
}

#feedops-standard-header .feedops-mode-label {
  color: #536072;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
  white-space: nowrap;
}

#feedops-standard-header .feedops-mode-controls {
  display: flex;
  align-items: center;
  gap: 12px;
}

#feedops-standard-header .feedops-mode-options {
  display: inline-grid;
  grid-template-columns: repeat(3, minmax(148px, 1fr));
  padding: 4px;
  border: 1px solid #d8dee8;
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(17, 24, 39, .06);
}

#feedops-standard-header .feedops-mode-option {
  min-width: 148px;
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border-radius: 999px;
  color: #2d3748;
  font-size: 12px;
  font-weight: 850;
  text-align: center;
  white-space: nowrap;
}

#feedops-standard-header .feedops-mode-option:hover,
#feedops-standard-header .feedops-mode-option.is-active {
  background: #eef8f4;
  color: #176e58;
}

#feedops-standard-header .feedops-mode-option.is-active {
  box-shadow: inset 0 0 0 1px rgba(28, 140, 111, .22);
}

#feedops-standard-header .feedops-mode-link,
#feedops-standard-header .feedops-mode-login {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-bottom: 2px solid transparent;
  color: #2d3748;
  font-size: 13px;
  font-weight: 950;
  white-space: nowrap;
}

#feedops-standard-header .feedops-mode-link:hover,
#feedops-standard-header .feedops-mode-link:focus-visible,
#feedops-standard-header .feedops-mode-link.is-active,
#feedops-standard-header .feedops-mode-login:hover,
#feedops-standard-header .feedops-mode-login:focus-visible {
  border-bottom-color: #176e58;
  color: #176e58;
  outline: none;
}

#feedops-standard-header .feedops-nav {
  width: min(1180px, calc(100% - 198px));
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin: 0 auto;
  background: #ffffff;
}

#feedops-standard-header .feedops-logo {
  display: flex;
  align-items: center;
  width: 142px;
  flex: 0 0 auto;
}

#feedops-standard-header .feedops-logo img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}

#feedops-standard-header .feedops-nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  color: #313946;
  font-size: 14px;
  font-weight: 650;
}

#feedops-standard-header .feedops-nav-links a:hover {
  color: #176e58;
}

#feedops-standard-header .feedops-nav-links a.is-active {
  color: #176e58;
  font-weight: 850;
}

#feedops-standard-header .feedops-nav-actions {
  display: flex;
  align-items: center;
}

#feedops-standard-header .feedops-menu-toggle {
  display: none;
}

#feedops-standard-header .feedops-nav-cta {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 8px;
  background: #ffca28;
  color: #111111;
  font-size: 14px;
  font-weight: 950;
  box-shadow: 0 12px 30px rgba(254, 207, 38, .28);
}

#feedops-standard-header .feedops-nav-cta.is-active {
  box-shadow:
    inset 0 0 0 2px rgba(16, 24, 32, .18),
    0 12px 30px rgba(254, 207, 38, .28);
}

#feedops-standard-header .feedops-mobile-menu {
  display: none;
}

@media (max-width: 980px) {
  body {
    padding-top: 147px;
  }

  #feedops-standard-header .feedops-mode-inner,
  #feedops-standard-header .feedops-nav {
    width: min(100% - 40px, 1180px);
    flex-wrap: wrap;
  }

  #feedops-standard-header .feedops-nav {
    height: auto;
    padding: 14px 0;
  }

  #feedops-standard-header .feedops-nav-links {
    width: 100%;
    flex-wrap: wrap;
    gap: 16px 22px;
  }
}

@media (max-width: 620px) {
  html {
    scroll-padding-top: 88px;
  }

  body {
    padding-top: 73px;
  }

  #feedops-standard-header {
    overflow: visible;
  }

  #feedops-standard-header .feedops-mode-switch {
    display: none;
  }

  #feedops-standard-header .feedops-nav {
    width: min(100% - 28px, 1180px);
    min-height: 72px;
    flex-wrap: nowrap;
    padding: 12px 0;
  }

  #feedops-standard-header .feedops-logo {
    width: 126px;
  }

  #feedops-standard-header .feedops-nav-links,
  #feedops-standard-header .feedops-nav-actions {
    display: none;
  }

  #feedops-standard-header .feedops-menu-toggle {
    width: 44px;
    min-width: 44px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: #172232;
    font: inherit;
    cursor: pointer;
  }

  #feedops-standard-header .feedops-menu-toggle:focus-visible {
    outline: 3px solid rgba(28, 140, 111, .24);
    outline-offset: 2px;
  }

  #feedops-standard-header .feedops-menu-toggle-bars {
    width: 20px;
    display: grid;
    gap: 4px;
  }

  #feedops-standard-header .feedops-menu-toggle-bars span {
    display: block;
    height: 2px;
    border-radius: 999px;
    background: #172232;
  }

  #feedops-standard-header .feedops-mobile-menu {
    display: block;
    border-top: 1px solid #d8dee8;
    background: #f4f6f9;
  }

  #feedops-standard-header .feedops-mobile-menu[hidden] {
    display: none;
  }

  #feedops-standard-header .feedops-mobile-panel {
    width: min(100% - 28px, 1180px);
    display: grid;
    gap: 16px;
    margin: 0 auto;
    padding: 16px 0 18px;
  }

  #feedops-standard-header .feedops-mobile-label {
    color: #536072;
    font-size: 12px;
    font-weight: 950;
    letter-spacing: .12em;
    text-transform: uppercase;
  }

  #feedops-standard-header .feedops-mobile-modes {
    display: grid;
    gap: 6px;
    padding: 4px;
    border: 1px solid #d8dee8;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 10px 28px rgba(17, 24, 39, .06);
  }

  #feedops-standard-header .feedops-mobile-modes .feedops-mode-option {
    width: 100%;
    min-width: 0;
    border-radius: 6px;
  }

  #feedops-standard-header .feedops-mobile-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  #feedops-standard-header .feedops-mobile-links a,
  #feedops-standard-header .feedops-mobile-utility a {
    min-height: 42px;
    display: flex;
    align-items: center;
    padding: 0 12px;
    border: 1px solid #d8dee8;
    border-radius: 8px;
    background: #ffffff;
    color: #2d3748;
    font-size: 14px;
    font-weight: 850;
  }

  #feedops-standard-header .feedops-mobile-links a.is-active {
    border-color: rgba(28, 140, 111, .34);
    background: #eef8f4;
    color: #176e58;
  }

  #feedops-standard-header .feedops-mobile-utility {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  #feedops-standard-header .feedops-mobile-cta {
    min-height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: #ffca28;
    color: #111111;
    font-size: 14px;
    font-weight: 950;
    box-shadow: 0 12px 30px rgba(254, 207, 38, .28);
  }
}
