/* Mikroland Header 18.0 – Desktop */
.mikroland-header,
.mikroland-header * { box-sizing: border-box; }

.mikroland-header {
  position: relative;
  z-index: 999;
  width: 100%;
  min-height: 72px;
  background: rgba(252,252,249,.98);
  border-bottom: 1px solid rgba(10,45,34,.08);
  color: #0b3f2e;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system,
               BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

.mikroland-header__inner {
  width: min(calc(100% - 48px), 1380px);
  min-height: 72px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 40px;
}

.mikroland-header__brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #0b3f2e;
  text-decoration: none;
  white-space: nowrap;
}

.mikroland-header__logo {
  display: block;
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.mikroland-header__wordmark {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: .08em;
}

.mikroland-header__nav { justify-self: center; }

.mikroland-header__nav ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(26px,3vw,46px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.mikroland-header__nav a {
  color: #183b31;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  transition: color .18s ease;
}

.mikroland-header__nav a:hover,
.mikroland-header__nav a:focus-visible { color: #6f9d2f; }

.mikroland-header__meta {
  display: flex;
  align-items: center;
  gap: 20px;
  white-space: nowrap;
  font-size: 14px;
  color: #4f5d57;
}

.mikroland-header__place {
  color: #183b31;
  font-weight: 500;
}

.mikroland-header__languages {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mikroland-header__languages a {
  color: #183b31;
  text-decoration: none;
}

.mikroland-header__languages a:hover,
.mikroland-header__languages a:focus-visible { color: #6f9d2f; }

.mikroland-header__separator { color: rgba(24,59,49,.35); }

body.mikroland-header-active #masthead,
body.mikroland-header-active .site-header,
body.mikroland-header-active .ast-primary-header-bar {
  display: none !important;
}

@media (max-width: 1040px) {
  .mikroland-header__inner {
    width: min(calc(100% - 32px), 1380px);
    gap: 24px;
  }
  .mikroland-header__nav ul { gap: 22px; }
  .mikroland-header__place { display: none; }
}
