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

html {
    -webkit-text-size-adjust: 100%
}

body {
    margin: 0;
    font-family: Inter, -apple-system, BlinkMacSystemFont, Segoe UI, sans-serif;
    font-weight: 400;
    color: #090b0c;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased
}

body.is-menu-open {
    overflow: hidden
}

img {
    max-width: 100%;
    height: auto;
    display: block
}

a {
    color: #1b454a
}

.heading-h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.15;
    margin: 0 0 1rem
}

.heading-h2 {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 1rem
}

.heading-h3 {
    font-size: 1.375rem;
    font-weight: 700;
    margin: 0 0 .75rem
}

.heading-h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0 0 .5rem
}

.lead {
    font-size: 1.125rem;
    font-weight: 400
}

.container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding-left: 1.25rem;
    padding-right: 1.25rem
}

.container--wide {
    max-width: 1320px
}

.container--titel {
    max-width: 1140px
}

.page-main {
    min-height: 40vh
}

.button {
    display: inline-block;
    padding: .625rem 1.5rem;
    border-radius: 999px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer
}

.button--outline {
    border: 1px solid #1b454a;
    color: #1b454a;
    background: transparent
}

.button--outline:hover {
    background: #1b454a;
    color: #fff
}

.navbar-overlay {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 40;
    background: #090b0cbf;
    opacity: 0;
    pointer-events: none;
    display: none;
    transition: opacity .25s ease
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: #fff;
    box-shadow: 0 1px #090b0c0f
}

.site-header__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding-top: 1rem;
    padding-bottom: 1rem
}

.site-header__brand {
    display: block;
    flex-shrink: 0
}

.site-header__logo {
    display: block;
    height: auto;
    max-width: 220px
}

.site-header__right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex: 1;
    justify-content: flex-end
}

.site-header__meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: .875rem;
    color: #5a6a77
}

@media (max-width: 991px) {
    .site-header__meta {
        display: none
    }
}

.site-header__meta-link {
    color: inherit;
    text-decoration: none
}

.site-header__meta-link:hover {
    color: #1b454a
}

.site-header__nav {
    display: flex;
    align-items: center;
    gap: .5rem
}

@media (max-width: 991px) {
    .site-header__nav {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        width: min(90vw, 380px);
        flex-direction: column;
        align-items: stretch;
        background: #fff;
        padding: 5rem 1.5rem 2rem;
        overflow-y: auto;
        transform: translate(100%);
        transition: transform .25s ease;
        z-index: 45
    }
}

@media (max-width: 991px) {
    .site-header.is-menu-open .site-header__nav {
        transform: translate(0)
    }
}

.site-header__cta {
    display: inline-block;
    margin-left: .5rem;
    padding: .625rem 1.5rem;
    border-radius: 999px;
    background: #aeca06;
    color: #123136;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap
}

.site-header__cta:hover {
    background: #c1e100
}

@media (max-width: 991px) {
    .site-header__cta {
        margin: 1rem 0 0;
        text-align: center
    }
}

.site-header__burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 2.5rem;
    height: 2.5rem;
    border: none;
    background: transparent;
    cursor: pointer
}

@media (max-width: 991px) {
    .site-header__burger {
        display: flex
    }
}

.site-header__burger-icon,
.site-header__burger-icon:before,
.site-header__burger-icon:after {
    display: block;
    width: 1.5rem;
    height: 2px;
    background: #090b0c;
    transition: transform .2s ease, opacity .2s ease
}

.site-header__burger-icon {
    position: relative
}

.site-header__burger-icon:before,
.site-header__burger-icon:after {
    content: "";
    position: absolute;
    left: 0
}

.site-header__burger-icon:before {
    top: -6px
}

.site-header__burger-icon:after {
    top: 6px
}

.nav-item {
    position: relative
}

@media (max-width: 991px) {
    .nav-item {
        border-bottom: 1px solid #ecedf0
    }
}

.nav-item__toggle {
    display: flex;
    align-items: center;
    gap: .25rem;
    padding: .75rem 1rem;
    background: none;
    border: none;
    font: inherit;
    font-weight: 500;
    color: #090b0c;
    cursor: pointer
}

@media (max-width: 991px) {
    .nav-item__toggle {
        width: 100%;
        justify-content: space-between;
        padding: 1rem 0
    }
}

.nav-item__submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 10;
    min-width: 480px;
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 2px 8px #00000026;
    padding: 1.5rem
}

@media (max-width: 991px) {
    .nav-item__submenu {
        position: static;
        min-width: 0;
        box-shadow: none;
        padding: 0 0 1rem
    }
}

.nav-item.is-open .nav-item__submenu {
    display: block
}

.nav-item__submenu-inner {
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 1.5rem
}

@media (max-width: 991px) {
    .nav-item__submenu-inner {
        grid-template-columns: 1fr
    }
}

.nav-item__submenu-image {
    border-radius: .5rem;
    overflow: hidden
}

.nav-item__submenu-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover
}

@media (max-width: 991px) {
    .nav-item__submenu-image {
        display: none
    }
}

.nav-item__submenu-links {
    display: flex;
    flex-direction: column;
    gap: .5rem
}

.nav-item__submenu-link {
    color: #090b0c;
    text-decoration: none;
    padding: .25rem 0
}

.nav-item__submenu-link:hover {
    color: #1b454a
}

.nav-item__submenu-link--heading {
    font-weight: 700;
    margin-bottom: .25rem
}

.language-switch {
    position: relative
}

.language-switch__toggle {
    display: flex;
    align-items: center;
    gap: .375rem;
    background: none;
    border: none;
    font: inherit;
    color: inherit;
    cursor: pointer
}

.language-switch__caret {
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid currentColor
}

.language-switch__list {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    box-shadow: 0 2px 8px #00000026;
    border-radius: .5rem;
    padding: .5rem;
    min-width: 120px
}

.language-switch.is-open .language-switch__list {
    display: block
}

.language-switch__link {
    display: block;
    padding: .25rem .5rem;
    color: #090b0c;
    text-decoration: none;
    border-radius: .25rem
}

.language-switch__link--current {
    font-weight: 600
}

.language-switch__link:hover {
    background: #ecedf0
}

.site-footer {
    margin-top: 4rem;
    background: #1b454a;
    color: #ffffffd9
}

.site-footer a {
    color: inherit
}

.site-footer__top {
    padding: 3.5rem 0
}

.site-footer__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem
}

@media (max-width: 991px) {
    .site-footer__grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media (max-width: 767px) {
    .site-footer__grid {
        grid-template-columns: 1fr
    }
}

.site-footer__heading {
    margin: 0 0 1rem;
    font-size: 1rem;
    font-weight: 600;
    color: #fff
}

.site-footer__text {
    margin: 0 0 1rem;
    font-size: .9375rem;
    line-height: 1.6
}

.site-footer__text a {
    text-decoration: none
}

.site-footer__text a:hover {
    text-decoration: underline
}

.site-footer__badge {
    display: block;
    margin-top: 1rem
}

.site-footer__bottom {
    padding: 1.25rem 0;
    border-top: 1px solid rgba(255, 255, 255, .15);
    font-size: .8125rem
}

.site-footer__bottom-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem
}

.site-footer__bottom-link {
    margin: 0;
    text-decoration: none;
    color: #ffffffb3
}

.site-footer__bottom-link:hover {
    color: #fff
}

.hero-home {
    position: relative;
    padding: 5rem 0;
    color: #fff;
    overflow: hidden
}

.hero-home__background {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1
}

.hero-home__background:after {
    content: ""
}

.hero-home:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(180deg, #090b0c8c, #090b0c40);
    z-index: 0
}

.hero-home .container {
    position: relative;
    z-index: 1
}

.hero-home__grid {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: end;
    gap: 3rem
}

@media (max-width: 767px) {
    .hero-home__grid {
        grid-template-columns: 1fr
    }
}

.hero-home__text {
    max-width: 40rem
}

.hero-home__text .heading-h1 {
    color: #fff
}

.hero-home__text .lead {
    font-size: 1.25rem;
    margin: 1rem 0
}

.hero-home__text .link {
    color: #aeca06;
    font-weight: 600;
    text-decoration: none
}

.hero-home__text .link:hover {
    text-decoration: underline
}

.hero-subpage {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 3rem 0
}

@media (max-width: 767px) {
    .hero-subpage {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        text-align: left
    }
}

.hero-subpage__image {
    flex-shrink: 0;
    width: 8.75rem;
    border-radius: 1rem;
    overflow: hidden
}

.hero-subpage__image img {
    display: block;
    width: 100%;
    height: auto
}

.hero-subpage__text .heading-h1 {
    margin: 0
}

.category-icons {
    display: flex;
    gap: 1rem
}

.category-icons__item {
    text-align: center
}

.category-icons__image {
    display: block;
    border-radius: 50%;
    margin: 0 auto .5rem
}

.category-icons__label {
    margin: 0;
    font-size: .8125rem;
    font-weight: 500
}

.category-icons--hero .category-icons__image {
    width: 4.5rem;
    height: 4.5rem
}

.category-icons--inline .category-icons__image {
    width: 2.5rem;
    height: 2.5rem
}

.category-icons--badge .category-icons__image {
    width: 3.5rem;
    height: 3.5rem
}

.section-title {
    background: #ecedf0;
    padding: 2rem 0;
    margin: 3rem 0
}

.section-title__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap
}

.section-title .heading-h2 {
    margin: 0;
    color: #1b454a
}

.content-area {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0
}

.content-placeholder {
    border: 2px dashed #bbc2c7;
    border-radius: .5rem;
    padding: 1.5rem;
    background: repeating-linear-gradient(45deg, rgba(122, 135, 146, .06), rgba(122, 135, 146, .06) 10px, transparent 10px, transparent 20px)
}

.content-placeholder__type {
    margin: 0 0 .25rem;
    font-family: monospace;
    font-size: .75rem;
    letter-spacing: .03em;
    text-transform: uppercase;
    color: #5a6a77
}

.content-placeholder__header {
    margin: 0;
    font-weight: 600
}

.content-placeholder__hint {
    margin: 0;
    color: #5a6a77;
    font-size: .875rem
}

.content-placeholder--empty {
    text-align: center;
    color: #5a6a77
}