/*
 * Shared nur.operations page chrome.
 *
 * Header and footer geometry, typography and responsive behaviour live here
 * so German and International product pages cannot develop separate brands.
 * Product pages may change only the two background variables below.
 */
:root {
  --operations-chrome-header: rgba(11, 13, 10, 0.9);
  --operations-chrome-footer: #070806;
  --operations-chrome-accent: #b88959;
  --operations-chrome-text: #ffffff;
  --operations-chrome-muted: #9fa9a3;
  --operations-chrome-width: 1180px;
}

body > header.operations-header,
body > header.topbar {
  position: sticky;
  inset: 0 0 auto;
  z-index: 40;
  height: auto;
  color: var(--operations-chrome-text);
  background: var(--operations-chrome-header);
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

body > header.operations-header > .wrap,
body > header.topbar > .wrap {
  width: min(var(--operations-chrome-width), calc(100% - 56px));
  max-width: none;
  min-height: var(--nur-header-height);
  margin: 0 auto;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

body > header .operations-logo,
body > footer .operations-logo {
  color: var(--operations-chrome-text);
  font-size: 23px;
}

body > header .operations-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: auto;
  color: #cdd5cf;
  font-family: "Segoe UI", -apple-system, BlinkMacSystemFont, Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.5;
  text-transform: none;
}

body > header .operations-nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: inherit;
  text-decoration: none;
}

body > header .operations-nav a:hover,
body > header .operations-nav a:focus-visible {
  color: #fff;
}

body > header .operations-nav .nav-cta {
  min-height: 46px;
  justify-content: center;
  padding: 11px 17px;
  border: 1px solid transparent;
  border-radius: 8px;
  color: #11120f;
  background: var(--operations-chrome-accent);
  font-weight: 900;
  transition: transform 0.2s ease, filter 0.2s ease;
}

body > header .operations-nav .nav-cta:hover,
body > header .operations-nav .nav-cta:focus-visible {
  color: #11120f;
  filter: brightness(1.06);
  transform: translateY(-1px);
}

body > footer.operations-footer,
body > footer.site-footer {
  padding: 34px 0;
  color: var(--operations-chrome-muted);
  background: var(--operations-chrome-footer);
  font-family: "Segoe UI", -apple-system, BlinkMacSystemFont, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.5;
}

body > footer.operations-footer > .wrap,
body > footer.site-footer > .wrap {
  width: min(var(--operations-chrome-width), calc(100% - 56px));
  max-width: none;
  margin: 0 auto;
  padding: 0;
}

body > footer .operations-logo {
  display: inline-flex;
}

body > footer .operations-footer-copy {
  max-width: 920px;
  margin: 10px 0 0;
}

body > footer .operations-footer-copy a,
body > footer .operations-footer-links a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

body > footer .operations-footer-copy a:hover,
body > footer .operations-footer-copy a:focus-visible,
body > footer .operations-footer-links a:hover,
body > footer .operations-footer-links a:focus-visible {
  color: #fff;
}

body > footer .operations-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-top: 14px;
}

.nav-label-short {
  display: none;
}

@media (max-width: 980px) {
  body > header .operations-nav a:not(.nav-cta) {
    display: none;
  }
}

@media (max-width: 620px) {
  body > header.operations-header > .wrap,
  body > header.topbar > .wrap,
  body > footer.operations-footer > .wrap,
  body > footer.site-footer > .wrap {
    width: min(var(--operations-chrome-width), calc(100% - 40px));
  }

  body > header.operations-header > .wrap,
  body > header.topbar > .wrap {
    min-height: 68px;
    gap: 12px;
  }

  body > header .operations-logo,
  body > footer .operations-logo {
    font-size: 21px;
  }

  body > header .operations-nav {
    flex: 0 0 auto;
  }

  body > header .operations-nav .nav-cta {
    min-height: 42px;
    padding: 9px 13px;
    border-radius: 999px;
    font-size: 13px;
    white-space: nowrap;
  }
}

@media (max-width: 360px) {
  .nav-label-full {
    display: none;
  }

  .nav-label-short {
    display: inline;
  }
}
