/* × × × × × × × × × × × × × × × × × × × × × × × × × × × × */
/* × × × × × × × × × × × × × × × × × × × × × × × × × × × × */
/* × × × × × × × × × × CODEXBLAU  GMBH × × × × × × × × × × */
/* × × × × × × × × × × COMPONENTS  × × × × × × × × × × × × */
/* × × × × × × × × × × × × × × × × × × × × × × × × × × × × */
/* × × × × × × × × × × × × × × × × × × × × × × × × × × × × */

/************************************************************

$name      => CODEXBLAU GmbH
$author    => Nick Helfenbein <nick@codexblau.de>
$version   => Version 2 (2.0)
$year      => 2026
$copyright => 2026. CODEXBLAU GmbH. All rights reseved.

************************************************************/

/* × × × × × × × × × × × × × × × × × × × × × × × × × × × × */
/* × × × × × × × × × × × × × × × × × × × × × × × × × × × × */
/* × × × × × × × × × × × × × × × × × × × × × × × × × × × × */
/* × × × × × × × × × × × × × × × × × × × × × × × × × × × × */
/* × × × × × × × × × × × × × × × × × × × × × × × × × × × × */
/* × × × × × × × × × × × × × × × × × × × × × × × × × × × × */



/* × × × × × × × × × × × × × × × × × × × × × × × × × × × × × 
 × × × × × × × × × IMAGE FIGURES × × × × × × × × × × × × × × 
× × × × × × × × × × × × × × × × × × × × × × × × × × × × × */

.image-figure {
    display: flex;
    flex-direction: column;
    gap: 0.5em;
    position: relative;
    margin: 0;
    padding: 0;
}

.image-figure.default {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.image-figure.default::before {
    content: "";
    padding-top: 133.333%;
    display: block;
}

.image-figure.default.landscape::before {
    content: "";
    padding-top: 66.666%;
    display: block;
}

.image-figure.default.youtube::before {
    content: "";
    padding-top: 56.25%;
    display: block;
}

.image-figure.default.medium::before {
    content: "";
    padding-top: 44.333%;
    display: block;
}

.image-figure.default.small::before {
    content: "";
    padding-top: 33.333%;
    display: block;
}

.image-figure.default.insta::before {
    content: "";
    padding-top: 120%;
    display: block;
}

.image-figure.default.square::before {
    content: "";
    padding-top: 100%;
    display: block;
}

.image-figure.default.macbook::before {
    content: "";
    padding-top: 63%;
    display: block;
}

.image-figure.default .overlay {
    overflow: hidden;
}


/* × × × × × × × × × × × × × × × × × × × × × × × × × × × × ×
 × × × × × × × × × PAGE TRANSITION (BARBA) × × × × × × × × ×
× × × × × × × × × × × × × × × × × × × × × × × × × × × × × */

.page-transition {
    position: fixed;
    inset: 0;
    z-index: 950;
    background: var(--color-natural-1000);
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    transform: translateY(100%);
    transition: transform .8s var(--animation-slider, var(--animation-default));
}

.page-transition.is-covering {
    transform: translateY(0%);
}

.page-transition.is-leaving {
    transform: translateY(-100%);
}

.page-transition-mark {
    width: 3.5em;
    opacity: .9;
}

.page-transition-mark .logo-fill-primary,
.page-transition-mark .logo-fill-secondary {
    fill: var(--color-white);
}

.page-transition-mark .logo-fill-secondary {
    opacity: .5;
}


/* × × × × × × × × × × × × × × × × × × × × × × × × × × × × ×
 × × × × × × × × × CUSTOM CURSOR × × × × × × × × × × × × × ×
× × × × × × × × × × × × × × × × × × × × × × × × × × × × × */

.cursor {
    position: fixed;
    top: -1.5em;
    left: 0;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 9999;
}

.cursor * {
    pointer-events: none;
}

.cursor-inner {
    width: 0;
    height: 0;
    background: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    transition: var(--animation-short);
    transform: translate(-50%, -50%);
}

.cursor-inner::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 0;
    height: 0;
    background: var(--color-white);
    border-radius: 50%;
    transform: translateX(0);
    pointer-events: none;
    transition: var(--animation-short);
}

.cursor-inner::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    width: 0;
    height: 0;
    background: var(--color-white);
    border-radius: 50%;
    transform: translateX(0);
    pointer-events: none;
    transition: var(--animation-short);
}

[data-cursor-status="active"] .cursor-inner {
    width: 4em;
    height: 4em;
    pointer-events: none;
}

.cursor-text {
    pointer-events: none;
    transform: scale(0);
    pointer-events: none;
    transition: var(--animation-short);
}

[data-cursor-status="active"] .cursor-text {
    transform: scale(1);
    pointer-events: none;
}


/* TYPE: Drag */

[data-cursor-status="active"][data-cursor-type="drag"] .cursor-inner::before {
    width: .5em;
    height: .5em;
    pointer-events: none;
    transform: translateX(-200%);
}

[data-cursor-status="active"][data-cursor-type="drag"] .cursor-inner::after {
    width: .5em;
    height: .5em;
    pointer-events: none;
    transform: translateX(200%);
}

[data-cursor-status="active"][data-cursor-type="drag"][data-drag-status="grabbing"] .cursor-inner {
    transform: translate(-50%, -50%) scale(.9);
}

[data-cursor-status="active"][data-cursor-type="drag"][data-drag-status="grabbing"] .cursor-inner::before {
    transform: translateX(-300%);
}

[data-cursor-status="active"][data-cursor-type="drag"][data-drag-status="grabbing"] .cursor-inner::after {
    transform: translateX(300%);
}

[data-cursor-type="drag"] .cursor-inner,
[data-cursor-type="drag"] .cursor-inner::before,
[data-cursor-type="drag"] .cursor-inner::after {
    background: var(--color-natural-400);
}

[data-cursor-type="drag"] .cursor-text {
    color: var(--color-black);
}


/* × × × × × × × × × × × × × × × × × × × × × × × × × × × × × 
 × × × × × × × × × MARQUEE × × × × × × × × × × × × × × × × ×
× × × × × × × × × × × × × × × × × × × × × × × × × × × × × */

.marquee-group {
    position: relative;
}

.marquee {
    position: relative;
}

.marquee .marquee-scroll {
    position: relative;
    display: flex;
    width: 140%;
    margin-left: -20%;
}

.marquee .marquee-content {
    position: relative;
    display: flex;
}


/* × × × × × × × × × × × × × × × × × × × × × × × × × × × × × 
 × × × × × × × × × SCROLLBAR × × × × × × × × × × × × × × × × 
× × × × × × × × × × × × × × × × × × × × × × × × × × × × × */

[data-scrollbar] {
    position: fixed;
    top: 5px;
    right: 5px;
    bottom: 5px;
    width: 5px;
    z-index: 100000000;
    opacity: 0;
    transition: opacity 0.3s ease-in-out, width 0.3s ease-in-out;
}

[data-scrollbar] [data-scrollbar-thumb] {
    min-height: 2em;
    height: 4em;
    background-color: var(--color-natural-400);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    cursor: grab;
    border-radius: 30px;
    width: 100%;
}

.lenis-smooth.lenis-scrolling [data-scrollbar] {
    opacity: 1;
}

[data-scrollbar]:hover,
[data-scrollbar-drag="true"] {
    opacity: 1;
    width: 9px;
}

@media screen and (min-width: 1024px) {
    .lenis-smooth [data-scrollbar] {
        display: flex;
    }
}


/* × × × × × × × × × × × × × × × × × × × × × × × × × × × × × 
 × × × × × × × × × COOKIE BANNER × × × × × × × × × × × × × × 
× × × × × × × × × × × × × × × × × × × × × × × × × × × × × */

.cookie-banner-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2000000;
    transition: var(--animation-default);
}

.cookie-banner-overlay[data-cookie-banner-status="active"] {
    background: rgba(var(--color-natural-1000-rgb), .5);
    pointer-events: none !important;
}

.cookie-banner {
    position: absolute;
    bottom: calc(var(--padding-container) * -2);
    right: calc(var(--padding-container) * 2);
    padding: calc(var(--padding-container) * 2);
    background: var(--color-natural-200);
    border-radius: 1em;
    border: 1px solid var(--color-natural-400);
    pointer-events: none;
    opacity: 0;
    transition: var(--animation-default);
    z-index: 10;
}

.cookie-banner[data-cookie-banner-main-status="active"] {
    opacity: 1;
    bottom: calc(var(--padding-container) * 2);
    pointer-events: all;
}

.cookie-banner.cookie-banner-main {
    width: calc(100% - calc(var(--padding-container) * 4));
    max-width: 30em;
}

.cookie-banner .actions.row {
    gap: var(--gap);
    flex-wrap: wrap;
    padding-top: var(--gap);
}

.cookie-banner .actions.row .btn {
    width: calc(50% - calc(var(--gap) * .5));
}

.cookie-banner .actions.row .btn .btn-wrap {
    width: 100%;
    justify-content: start;
}

.cookie-banner .actions.row .btn.btn-settings {
    width: 100%;
}

.cookie-banner p.text-medium {
    font-weight: 600;
    margin-bottom: 1em;
}


.cookie-banner.cookie-banner-settings {
    position: absolute;
    bottom: unset;
    right: unset;
    top: 50%;
    left: 50%;
    width: calc(100% - calc(var(--padding-container) * 4));
    max-width: 40em;
    height: max-content;
    opacity: 0;
    transform: translate(-50%, -25%);
}

.cookie-banner.cookie-banner-settings[data-cookie-settings-status="active"] {
    opacity: 1;
    transform: translate(-50%, -50%);
    pointer-events: all;
}

.cookie-banner.cookie-banner-settings .cookie-group {
    display: flex;
    flex-direction: column;
    gap: var(--gap);
    padding-block: var(--gap);
    border-bottom: 1px solid var(--color-natural-400);
}

.cookie-banner.cookie-banner-settings .cookie-group:nth-child(2) {
    border-top: 1px solid var(--color-natural-400);
}

.cookie-banner.cookie-banner-settings .cookie-group label {
    display: flex;
    gap: var(--gap);
    align-items: center;
}

.cookie-banner.cookie-banner-settings .actions {
    margin-top: var(--gap);
}


/* × × × × × × × × × × × × × × × × × × × × × × × × × × × × ×
 × × × × × × × × × CURSOR – TEXT LABEL × × × × × × × × × × ×
× × × × × × × × × × × × × × × × × × × × × × × × × × × × × */

.cursor-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    white-space: nowrap;
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: var(--color-black);
}

[data-cursor-status="active"] .cursor-text {
    transform: translate(-50%, -50%) scale(1);
}


/* × × × × × × × × × × × × × × × × × × × × × × × × × × × × ×
 × × × × × × × × × EYEBROW / KICKER × × × × × × × × × × × × ×
× × × × × × × × × × × × × × × × × × × × × × × × × × × × × */

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .6em;
    font-size: var(--font-size-small);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--color-secondary);
    margin-bottom: 1em;
}

.eyebrow::before {
    content: '';
    width: .6em;
    height: .6em;
    border-radius: 50%;
    background: var(--color-secondary);
    box-shadow: 0 0 0 4px rgba(var(--color-secondary-rgb), .2), 0 0 1.2em 2px rgba(var(--color-secondary-rgb), .65);
    flex-shrink: 0;
}


/* × × × × × × × × × × × × × × × × × × × × × × × × × × × × ×
 × × × × × × × × × SLIDER NAVIGATE DOTS × × × × × × × × × × ×
× × × × × × × × × × × × × × × × × × × × × × × × × × × × × */

.navigate-dot {
    position: relative;
    width: 2.5em;
    height: 3px;
    border-radius: 2px;
    background: rgba(var(--color-natural-100-rgb), .2);
    border: 0;
    padding: 0;
    cursor: pointer;
    overflow: hidden;
}

.navigate-dot-fill {
    position: absolute;
    inset: 0;
    width: 0%;
    background: var(--color-secondary);
    transition: width .4s var(--ease-standard);
}

.navigate-dot.is-active .navigate-dot-fill {
    width: 100%;
}


/* × × × × × × × × × × × × × × × × × × × × × × × × × × × × ×
 × × × × × × × × × GLOW OVERLAYS × × × × × × × × × × × × × ×
× × × × × × × × × × × × × × × × × × × × × × × × × × × × × */

.overlay-glow {
    pointer-events: none;
    z-index: 0;
    opacity: .5;
    filter: blur(6em);
}

.overlay-glow-primary {
    background: radial-gradient(circle at 20% 30%, rgba(var(--color-primary-rgb), .55), transparent 60%);
}

.overlay-glow-secondary {
    background: radial-gradient(circle at 80% 70%, rgba(var(--color-secondary-rgb), .45), transparent 60%);
}


/* × × × × × × × × × × × × × × × × × × × × × × × × × × × × ×
 × × × × × × × × × SOCIAL FOLLOW CTA × × × × × × × × × × × ×
× × × × × × × × × × × × × × × × × × × × × × × × × × × × × */

.section-cta-social {
    position: relative;
    background: var(--color-natural-1000);
    overflow: hidden;
}

.section-cta-social .container.row {
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    row-gap: calc(var(--gap) * 2);
    z-index: 1;
}

.cta-social-header {
    flex: 1 1 26em;
    max-width: 32em;
}

.cta-social-header h2 {
    text-transform: uppercase;
}

.cta-social-header p {
    color: var(--color-natural-500);
    margin-top: .75em;
}

.cta-social-channels {
    flex: 1 1 26em;
    max-width: 34em;
    gap: var(--gap);
}

.social-channel-card {
    position: relative;
    display: flex;
    align-items: center;
    gap: var(--gap);
    padding: calc(var(--gap) * 1) calc(var(--gap) * 1.25);
    border-radius: .75em;
    border: 1px solid rgba(var(--color-natural-100-rgb), .12);
    background: rgba(var(--color-natural-100-rgb), .03);
    text-decoration: none;
    color: var(--color-white);
    transition: border-color var(--animation-default), background var(--animation-default), transform var(--animation-short);
}

.social-channel-card:hover {
    border-color: var(--color-secondary);
    background: rgba(var(--color-secondary-rgb), .08);
    transform: translateX(.35em);
}

.social-channel-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.75em;
    height: 2.75em;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--color-natural-900);
    color: var(--color-white);
}

.social-channel-icon svg {
    width: 1.3em;
    height: 1.3em;
}

.social-channel-card:hover .social-channel-icon {
    background: var(--color-secondary);
}

.social-channel-meta {
    display: flex;
    flex-direction: column;
    gap: .15em;
    flex: 1 1 auto;
}

.social-channel-platform {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
    font-size: var(--font-size-small);
}

.social-channel-handle {
    font-size: var(--font-size-small);
    color: var(--color-natural-500);
}

.social-channel-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2em;
    height: 2em;
    flex-shrink: 0;
    transition: transform var(--animation-default);
}

.social-channel-arrow svg {
    width: 1.1em;
    height: 1.1em;
}

.social-channel-card:hover .social-channel-arrow {
    transform: translate(.2em, -.2em);
    color: var(--color-secondary);
}


/* × × × × × × × × × × × × × × × × × × × × × × × × × × × × ×
 × × × × × × × × × RECRUITING CTA × × × × × × × × × × × × × ×
× × × × × × × × × × × × × × × × × × × × × × × × × × × × × */

.section-cta-recruiting {
    background: var(--color-natural-1000);
}

.cta-recruiting-panel {
    position: relative;
    border-radius: 1.25em;
    overflow: hidden;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-natural-1000) 70%);
    padding: calc(var(--padding-container) * 2.5) calc(var(--padding-container) * 2);
    min-height: 26em;
    display: flex;
    align-items: center;
}

.cta-recruiting-media {
    z-index: 0;
}

.cta-recruiting-media img {
    opacity: .35;
    mix-blend-mode: luminosity;
}

.cta-recruiting-gradient {
    background: linear-gradient(100deg, rgba(var(--color-natural-1000-rgb), .95) 20%, rgba(var(--color-primary-rgb), .55) 60%, rgba(var(--color-secondary-rgb), .35) 100%);
}

.cta-recruiting-content {
    position: relative;
    z-index: 1;
    max-width: 34em;
}

.cta-recruiting-content h2 {
    text-transform: uppercase;
    margin-bottom: .35em;
    overflow-wrap: break-word;
    hyphens: auto;
}

.cta-recruiting-content p {
    color: rgba(var(--color-natural-100-rgb), .8);
    margin-bottom: calc(var(--gap) * 1.5);
    max-width: 28em;
}

@media screen and (max-width: 767px) {
    .cta-recruiting-panel {
        padding: calc(var(--padding-container) * 1.5) var(--padding-container);
        min-height: unset;
    }
}


/* × × × × × × × × × × × × × × × × × × × × × × × × × × × × ×
 × × × × × × × × × SITE FOOTER × × × × × × × × × × × × × × ×
× × × × × × × × × × × × × × × × × × × × × × × × × × × × × */

.site-footer {
    position: relative;
    padding-block: calc(var(--padding-section) * .65) calc(var(--padding-section) * .35);
    background: var(--color-natural-1000);
    border-top: 1px solid rgba(var(--color-natural-100-rgb), .12);
    z-index: 4;
}

.site-footer .container.row {
    flex-wrap: wrap;
    row-gap: calc(var(--gap) * 2);
    justify-content: space-between;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: .75em;
    flex: 1 1 12em;
}

.footer-col-brand {
    flex: 1 1 16em;
    gap: 1em;
}

.footer-logo {
    width: 3em;
}

.footer-logo .logo-fill-primary,
.footer-logo .logo-fill-secondary {
    fill: var(--color-white);
}

.footer-logo .logo-fill-secondary {
    opacity: .5;
}

.footer-claim {
    color: var(--color-natural-500);
    font-size: var(--font-size-small);
    max-width: 16em;
}

.footer-col-title {
    font-size: var(--font-size-small);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--color-natural-500);
    margin-bottom: .25em;
}

.footer-col .link-wrap {
    color: var(--color-natural-500);
    padding-block: .15em;
}

.footer-col .link-wrap::before {
    background: var(--color-secondary);
}

.footer-cookie-settings-toggle {
    background: none;
    border: 0;
    padding: 0;
    text-align: left;
    font: inherit;
    cursor: pointer;
}

.footer-social-row {
    display: flex;
    gap: .6em;
    flex-wrap: wrap;
}

.footer-social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5em;
    height: 2.5em;
    border-radius: 50%;
    border: 1px solid rgba(var(--color-natural-100-rgb), .15);
    color: var(--color-white);
    transition: background var(--animation-default), border-color var(--animation-default), transform var(--animation-short);
}

.footer-social-icon svg {
    width: 1.1em;
    height: 1.1em;
}

.footer-social-icon:hover {
    background: var(--color-secondary);
    border-color: var(--color-secondary);
    transform: translateY(-.2em);
}

.footer-bottom {
    margin-top: calc(var(--gap) * 3);
    padding-top: calc(var(--gap) * 1.5);
    border-top: 1px solid rgba(var(--color-natural-100-rgb), .08);
    justify-content: space-between;
    flex-wrap: wrap;
    gap: .5em;
}

.footer-bottom p {
    font-size: var(--font-size-small);
    color: var(--color-natural-600);
}

.footer-credit-link {
    color: var(--color-natural-400);
    text-decoration: underline;
    text-underline-offset: .2em;
}


/* × × × × × × × × × × × × × × × × × × × × × × × × × × × × ×
 × × × × × × × × × FORM PAGES (KONTAKT / BEWERBUNG) × × × × ×
× × × × × × × × × × × × × × × × × × × × × × × × × × × × × */

.section-form-hero {
    background: var(--color-natural-1000);
    min-height: calc(var(--vh) * 90);
    padding-top: calc(var(--padding-section) * 1.45);
    display: flex;
    align-items: center;
}

.section-form-hero .container.row {
    flex-wrap: wrap;
    gap: calc(var(--gap) * 3);
    align-items: flex-start;
}

.form-hero-header {
    flex: 1 1 22em;
    max-width: 26em;
    position: sticky;
    top: calc(var(--padding-section) * 1.45);
}

.form-hero-header h1 {
    text-transform: uppercase;
    font-size: var(--font-size-h3);
}

.form-hero-text {
    color: var(--color-natural-500);
    margin-top: 1em;
}

.form-hero-form {
    flex: 1 1 32em;
    max-width: 40em;
}


/* × × × × × × × × × × × × × × × × × × × × × × × × × × × × ×
 × × × × × × × × × GESENDET (SUCCESS) × × × × × × × × × × × ×
× × × × × × × × × × × × × × × × × × × × × × × × × × × × × */

.section-gesendet {
    background: var(--color-natural-1000);
    text-align: center;
    min-height: calc(var(--vh) * 80);
    padding-top: calc(var(--padding-section) * 1.45);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.section-gesendet h1 {
    text-transform: uppercase;
}

.gesendet-text {
    color: var(--color-natural-500);
    max-width: 30em;
    margin: 1em auto calc(var(--gap) * 2);
}

.gesendet-marquees {
    padding-block: calc(var(--gap) * 2);
    display: flex;
    flex-direction: column;
    gap: .5em;
    overflow: hidden;
}

.marquee-item {
    display: inline-block;
    white-space: nowrap;
    font-size: clamp(2.5rem, 2rem + 4vw, 6rem);
    font-weight: 900;
    text-transform: uppercase;
    padding-inline: .5em;
    color: var(--color-white);
}

.marquee-item-outline {
    color: transparent;
    -webkit-text-stroke: 1px var(--color-secondary);
}


/* × × × × × × × × × × × × × × × × × × × × × × × × × × × × ×
 × × × × × × × × × ERROR (404) × × × × × × × × × × × × × × ×
× × × × × × × × × × × × × × × × × × × × × × × × × × × × × */

.section-error {
    position: relative;
    background: var(--color-natural-1000);
    text-align: center;
    min-height: calc(var(--vh) * 90);
    padding-top: calc(var(--padding-section) * 1.45);
    display: flex;
    align-items: center;
    overflow: hidden;
}

.section-error .overlay-glow {
    opacity: .4;
}

.error-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.error-illustration {
    width: min(26em, 80%);
    margin-inline: auto;
    margin-bottom: calc(var(--gap) * 1.5);
}

.error-illustration svg {
    width: 100%;
    height: auto;
}

.section-error h1 {
    text-transform: uppercase;
}

.error-text {
    color: var(--color-natural-500);
    max-width: 32em;
    margin: 1em auto calc(var(--gap) * 2);
}

@media screen and (max-width: 767px) {
    .error-illustration {
        width: min(18em, 90%);
    }
}


/* × × × × × × × × × × × × × × × × × × × × × × × × × × × × ×
 × × × × × × × × × LEGAL PAGES (IMPRESSUM/DATENSCHUTZ) × × ×
× × × × × × × × × × × × × × × × × × × × × × × × × × × × × */

.section-legal,
.section-richtlinien {
    background: var(--color-natural-1000);
    /* etwas mehr als die fixierte Navigation hoch ist (--padding-section * 1.25),
       damit Titel/Eyebrow nicht dahinter verschwinden */
    padding-top: calc(var(--padding-section) * 1.45);
}

.legal-updated {
    color: var(--color-natural-600);
    font-size: var(--font-size-small);
    margin-top: .5em;
}

.legal-content {
    margin-top: calc(var(--gap) * 2);
}

.legal-content h1,
.legal-content h2,
.legal-content h3,
.legal-content h4 {
    text-transform: uppercase;
    margin-top: 1.5em;
    margin-bottom: .5em;
}

.legal-content p {
    color: var(--color-natural-500);
    margin-bottom: 1em;
}

.legal-content a {
    color: var(--color-secondary);
}

.legal-content hr {
    border: 0;
    border-top: 1px solid rgba(var(--color-natural-100-rgb), .15);
    margin-block: calc(var(--gap) * 2);
}

.cookie-settings-inline {
    margin-top: calc(var(--gap) * 2);
    padding: calc(var(--gap) * 1.5);
    border: 1px solid rgba(var(--color-natural-100-rgb), .15);
    border-radius: .75em;
    display: flex;
    flex-direction: column;
    gap: var(--gap);
}

.cookie-settings-inline .cookie-group label {
    display: flex;
    gap: var(--gap);
    align-items: center;
}

.richtlinien-list {
    margin-top: calc(var(--gap) * 2);
    display: flex;
    flex-direction: column;
}

.richtlinien-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-block: var(--gap);
    border-bottom: 1px solid rgba(var(--color-natural-100-rgb), .12);
    text-decoration: none;
    color: var(--color-white);
    transition: color var(--animation-default);
}

.richtlinien-item:hover {
    color: var(--color-secondary);
}

.richtlinien-item-title {
    font-size: var(--font-size-medium);
    text-transform: uppercase;
}

.richtlinien-item-arrow svg {
    width: 1.4em;
    height: 1.4em;
    transition: transform var(--animation-default);
}

.richtlinien-item:hover .richtlinien-item-arrow svg {
    transform: translateX(.3em);
}

@media screen and (max-width: 767px) {
    .form-hero-header {
        position: static;
    }
}