/* header.css */

header.headerMain {
    background-color: var(--color-buchner);
    /* width: 100%; */ /* redundant (Block-Element) */
    position: relative;
    z-index: 1;
}

header.headerMain.sticky {
    position: fixed;
    top: 0;
    left: 0;
    /* width: 100%; */ /* redundant */
    z-index: 100;
}

.header-wrapper {
    display: flex;
    align-items: center;
    padding: 0 20px;
    min-height: 50px;
    gap: 30px;
}


.header-logo img {
    width: 50px;
    height: 50px;
    display: block;
}

.header-nav {
    flex: 1;
}

.header-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.header-nav .header-title {
    color: var(--color-text-inverse);
    font-weight: 400;
    font-size: var(--font-size-lg);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (max-width: 1249px) {
    .header-wrapper { gap: 15px; }
}