
.ms-header {
  padding: var(--ms-space-4) var(--ms-gap);
  background: var(--ms-card-bg);
  border-bottom: var(--ms-border);
  position: sticky;
  top: 0;
  z-index: 999;

  &.is-sticky {
    box-shadow: 0 2px 8px oklch(0% 0 0 / 0.08);
    backdrop-filter: blur(6px);
  }

  .ms-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}

.ms-header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--ms-space-4) var(--ms-space-5);
  position: relative;
  z-index: 3000;
  height: 80px;
  min-width: 0; /* wichtig für Truncation im Flex-Header */
}

.ms-logo {
  img {
    display: inline-block;
    max-height: 48px; /* Desktop */
  }
}