/*
 Theme Name:  Postbyen
 Template:    dd-theme-minimal
 Description: Postbyen specific changes
 Version:     1.0.0
*/



:root {
    --body-height: 100svh;
    --header-height: 78px;
    --main-height: calc(var(--body-height) - var(--header-height));
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow: clip;
}

body {
    height: var(--body-height);
}

.wb-header {
    --_red: #dc2341;
    --_red-dark: #46191e;
    display: flex;
    align-items: center;
    justify-content: center;
    height: var(--header-height);
    padding-inline: 16px;
}

.wb-header__inner {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    width: 100%;
    max-width: 1440px;
}

.wb-header__logo-area {
    display: flex;
    width: 103px;
}

.wb-header__logo-wrapper:hover svg path {
    fill: var(--_red-dark);
}

.wb-header__logo-area svg {
    width: 100%;
    height: auto
}

.wb-header__nav-list {
    display: flex;
    gap: 24px;
    list-style-type: none;
}

.wb-header__nav-list a {
    font-family: druk-bold, sans-serif;
    font-size: 28px;
    line-height: 1em;
    color: var(--_red-dark);
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 0.8px;
}

.wb-header__nav-list a:hover {
    color: var(--_red);
}

@media (width >=768px) {
    .wb-header__nav-list-item--mobile {
        display: none;
    }
}

@media (width <=767px) {
    .wb-header__nav-list-item--desktop {
        display: none
    }
    .wb-header__nav-list a {
        font-size: 22px;
        background-color: var(--_red-dark);
        color: white;
        padding: 8px 12px;
        border-radius: 8px;
    }
}