/*--------------------------------------------------------------
# Fonts
--------------------------------------------------------------*/

@font-face {
    font-family: 'Space Mono';
    src: url('fonts/SpaceMono-Regular.woff2') format('woff2'),
        url('fonts/SpaceMono-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Zalando Sans SemiExpanded';
    src: url('fonts/ZalandoSansSemiExpanded-ExtraLight.woff2') format('woff2'),
        url('fonts/ZalandoSansSemiExpanded-ExtraLight.woff') format('woff');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Zalando Sans SemiExpanded';
    src: url('fonts/ZalandoSansSemiExpanded-Light.woff2') format('woff2'),
        url('fonts/ZalandoSansSemiExpanded-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Zalando Sans SemiExpanded';
    src: url('fonts/ZalandoSansSemiExpanded-Medium.woff2') format('woff2'),
        url('fonts/ZalandoSansSemiExpanded-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Zalando Sans SemiExpanded';
    src: url('fonts/ZalandoSansSemiExpanded-Regular.woff2') format('woff2'),
        url('fonts/ZalandoSansSemiExpanded-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Zalando Sans SemiExpanded';
    src: url('fonts/ZalandoSansSemiExpanded-SemiBold.woff2') format('woff2'),
        url('fonts/ZalandoSansSemiExpanded-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

/*--------------------------------------------------------------
# Variables
--------------------------------------------------------------*/

:root {
  /* Colors */
  --white-color: #FFFFFF;
  --light-color: #FDFDFD;
  --grey-color: #8E8E8E;
  --border-color: #535353;
  --black-color: #0B0B0B;
  --yellow-color: #E2FF00;

  /* Spacing */
  --spacing-extra-large: 120px;
  --spacing-large: 80px;
  --spacing-medium: 64px;
  --spacing-small: 40px;
  --spacing-tiny: 32px;

  /* Font Sizes */
  --font-size-base: 18px;
  --font-size-h1: 18px;
  --font-size-h2: 40px;
  --font-size-h3: 28px;
  --font-size-h4: 20px;
  --font-size-h5: 20px;
  --font-size-caption: 14px;
  --font-size-small: 14px;
  --font-size-extra-large: 50px;

  /* Line Heights */
  --line-height-base: 24px;
  --line-height-h1: 18px;
  --line-height-h2: 34px;
  --line-height-h3: 34px;
  --line-height-h4: 24px;
  --line-height-h5: 24px;
  --line-height-caption: 14px;
  --line-height-small: 20px;
  --line-height-extra-large: 46px;

  /* Sonstiges */
  color-scheme: light;
}

@media (min-width: 370px) {
:root {
  --font-size-extra-large: 60px;
  --line-height-extra-large: 56px;
}
}

@media (min-width: 1200px) {
:root {
  /* Spacing */
  --spacing-extra-large: 260px;
  --spacing-large: 160px;
  --spacing-medium: 80px;
  --spacing-small: 64px;
  --spacing-tiny: 40px;

  /* Font Sizes */
  --font-size-base: 24px;
  --font-size-h1: 20px;
  --font-size-h2: 64px;
  --font-size-h3: 64px;
  --font-size-h4: 40px;
  --font-size-h5: 28px;
  --font-size-caption: 20px;
  --font-size-small: 14px;
  --font-size-extra-large: 142px;

  /* Line Heights */
  --line-height-base: 28px;
  --line-height-h1: 20px;
  --line-height-h2: 56px;
  --line-height-h3: 72px;
  --line-height-h4: 46px;
  --line-height-h5: 32px;
  --line-height-caption: 20px;
  --line-height-small: 20px;
  --line-height-extra-large: 132px;
}
}

@media (min-width: 2560px) {
:root {
  /* Spacing */
  --spacing-extra-large: 320px;
  --spacing-large: 200px;
  --spacing-medium: 100px;
  --spacing-small: 84px;
  --spacing-tiny: 50px;

  /* Font Sizes */
  --font-size-base: 32px;
  --font-size-h1: 24px;
  --font-size-h2: 86px;
  --font-size-h3: 86px;
  --font-size-h4: 54px;
  --font-size-h5: 40px;
  --font-size-caption: 24px;
  --font-size-small: 14px;

  /* Line Heights */
  --line-height-base: 40px;
  --line-height-h1: 24px;
  --line-height-h2: 76px;
  --line-height-h3: 92px;
  --line-height-h4: 64px;
  --line-height-h5: 48px;
  --line-height-caption: 24px;
  --line-height-small: 20px;
}
}

@media (max-width: 2559px) { :root { --container-width: 100%; } }
@media (min-width: 2560px) { :root { --container-width: 2512px; } }

/*--------------------------------------------------------------
# Body
--------------------------------------------------------------*/

html {
    scroll-behavior: smooth;
}

body {
  font-family: 'Zalando Sans SemiExpanded', sans-serif;
  font-weight: 400;
  position: relative;
  width: 100%;
  height: 100%;
  color: var(--black-color);
  font-size: var(--font-size-base);
  overflow-x: hidden;
  background-color: var(--light-color);
}

body.home {
  background-color: #0B0B0B;
}

.body-container img {
  max-width: 100%;
  height: auto!important;
}

/*--------------------------------------------------------------
# Layout
--------------------------------------------------------------*/

.container-fluid {
  padding-left: 24px;
  padding-right: 24px;
}

.container {
  max-width: var(--container-width)!important;
  padding: 0;
}

.row {
    margin-right: -6px;
    margin-left: -6px;
}

.row>* {
    padding-right: 6px;
    padding-left: 6px;
}

.section-spacing-xl {
  padding-top: var(--spacing-extra-large);
  padding-bottom: var(--spacing-extra-large);
}

.section-spacing-lg {
  padding-top: var(--spacing-large);
  padding-bottom: var(--spacing-large);
}

.section-spacing-md {
  padding-top: var(--spacing-medium);
  padding-bottom: var(--spacing-medium);
}

.mt-xl {
  margin-top: var(--spacing-extra-large);
}

.mb-xl {
  margin-bottom: var(--spacing-extra-large);
}

.pt-xl {
  padding-top: var(--spacing-extra-large);
}

.pb-xl {
  padding-bottom: var(--spacing-extra-large);
}

.mt-lg {
  margin-top: var(--spacing-large);
}

.mb-lg {
  margin-bottom: var(--spacing-large);
}

.pt-lg {
  padding-top: var(--spacing-large);
}

.pb-lg {
  padding-bottom: var(--spacing-large);
}

.mt-md {
  margin-top: var(--spacing-medium);
}

.mb-md {
  margin-bottom: var(--spacing-medium);
}

.pt-md {
  padding-top: var(--spacing-medium);
}

.pb-md {
  padding-bottom: var(--spacing-medium);
}

.mt-tiny {
  margin-top: var(--spacing-tiny);
}

.mb-tiny {
  margin-bottom: var(--spacing-tiny);
}

.pt-tiny {
  padding-top: var(--spacing-tiny);
}

.pb-tiny {
  padding-bottom: var(--spacing-tiny);
}

.mb-col {
  margin-bottom: 30px;
}

@media (max-width: 1199px) {
.mb-col-xl {
  margin-bottom: 30px;
}
}

@media (max-width: 991px) {
.mb-col-lg {
  margin-bottom: 30px;
}
#approach .container {
  padding-left: 26px;
}
.projekt-beschreibung .container {
  padding-left: 26px;
}
}

@media (max-width: 767px) {
.mb-col-md {
  margin-bottom: 30px;
}
}

/*--------------------------------------------------------------
# Backgrounds
--------------------------------------------------------------*/

.bg-light {
  background-color: var(--light-color)!important;
}

.bg-dark {
  background-color: var(--black-color)!important;
}

.bg-yellow {
  background-color: var(--yellow-color)!important;
}

.bg-dark a {
  color: var(--white-color)!important;
}

.bg-dark a:hover {
  opacity: 0.8;
}

/*--------------------------------------------------------------
# Links
--------------------------------------------------------------*/

a {
  color: var(--black-color);
  text-decoration: none!important;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

a:hover,
a:focus {
  color: var(--grey-color);
}


.contact-row {
  text-decoration: none;
  color: var(--black-color);
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
  margin-bottom: -8px;
}
.contact-row:hover,
.contact-row.is-hovered {
  color: var(--grey-color);
}


@media (max-width: 991px) {
.contact-row {
  margin-bottom: -6px;
}
}

/*--------------------------------------------------------------
# Typografie
--------------------------------------------------------------*/

h1,.h1 {
  font-size: var(--font-size-h1);
  line-height: var(--line-height-h1);
  font-family: 'Space Mono', sans-serif;
  font-weight: 400;
  text-transform: uppercase;
}

h2 {
  font-size: var(--font-size-h2);
  line-height: var(--line-height-h2);
  font-weight: 500;
  text-transform: uppercase;
}

h1.h3,
h3 {
  font-family: 'Zalando Sans SemiExpanded', sans-serif;
  font-size: var(--font-size-h3);
  line-height: var(--line-height-h3);
  font-weight: 400;
  letter-spacing: -0.01em;
  text-transform: none;
}

h3.extra-large {
  font-size: var(--font-size-extra-large);
  line-height: var(--line-height-extra-large);
  font-weight: 500;
  letter-spacing: -0.01em;
}

h4 {
  font-family: 'Zalando Sans SemiExpanded', sans-serif;
  font-size: var(--font-size-h4);
  line-height: var(--line-height-h4);
  font-weight: 400;
}

h5 {
  font-size: var(--font-size-h5);
  line-height: var(--line-height-h5);
  font-weight: 400;
}

.caption,caption {
  font-size: var(--font-size-caption);
  line-height: var(--line-height-caption);
  font-family: 'Space Mono', sans-serif;
  font-weight: 400;
  text-transform: uppercase;
}

.section-title {
  max-width: 1000px;
}

.text-smaller p {
  font-size: 20px;
}

p {
  letter-spacing: 0.01em;
}

@media (min-width: 992px) { 
.projekte-text p {
  margin-bottom: 1.5rem;
}
}

@media (min-width: 2560px) { 
.section-title {
  max-width: 1360px;
}
}

h4.arrow-before::before {
  content: "↘";
  font-weight: 200;
  position: absolute;
  left: -62px;
  top: -6px;
  -webkit-transform: scale(1.3);
          transform: scale(1.3);
}

@media (max-width: 1199px) { 
h4.arrow-before::before {
  left: -26px;
  top: -4px;
  -webkit-transform: scale(1.5);
          transform: scale(1.5);
}
.text-smaller p {
  font-size: 18px;
}
}

.text-grey {
  color: var(--grey-color);
}

/*--------------------------------------------------------------
# Buttons
--------------------------------------------------------------*/

.btn {
  padding: .5rem 1.5rem;
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  border-radius: 0!important;
}

.btn-sm {
  padding: .3rem 1rem;
  font-size: var(--font-size-small);
  line-height: var(--line-height-small);
}

.btn-main {
  color: var(--black-color);
  background: var(--yellow-color);
  border-color: var(--yellow-color);
}

.btn-main:hover,
.btn-main:focus,
.btn-main:active {
  color: var(--black-color)!important;
  background: var(--yellow-color)!important;
  border-color: var(--yellow-color)!important;
}

.btn-main-outline {
  color: var(--white-color);
  background: var(--black-color);
  border-color: var(--border-color);
}

.btn-main-outline:hover,
.btn-main-outline:focus,
.btn-main-outline:active {
  color: var(--white-color)!important;
  background: var(--black-color)!important;
  border-color: var(--border-color)!important;
}

/*--------------------------------------------------------------
# Navigation
--------------------------------------------------------------*/

#navigation {
  padding-top: 24px;
  padding-bottom: 0;
  position: relative;
  width: 100%;
  z-index: 20;
}

.home #navigation {
  position: absolute;
}

.nav-item {
  padding: 0 28px;
}

.nav-item:last-of-type {
  padding: 0 0 0 28px;
}

.navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}

.nav-item a {
  color: var(--black-color);
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}

.home .nav-item a {
  color: var(--white-color);
}

.nav-item a:hover {
  color: var(--grey-color);
}

.navbar-brand div.h1 {
  color: var(--black-color);
}

.navbar-brand h1 {
  color: var(--white-color);
}

@media (max-width: 991px) {
#navigation {
  padding-top: 40px;
}
.navbar-brand h1,
.navbar-brand div.h1 {
  margin-left: 16px;
}
}

/*--------------------------------------------------------------
# Hero
--------------------------------------------------------------*/

    .hero {
        position: relative;
        width: 100%;
        height: 100svh;
        overflow: hidden;
        background: var(--black-color, #000);
        min-height: 800px;
    }

    .hero__bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 53%;
        z-index: 0;
        overflow: hidden;
    }

    .hero__bg-video {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        -o-object-fit: cover;
           object-fit: cover;
        -webkit-filter: blur(16px);
                filter: blur(16px);
        -webkit-transform: scale(1.18);
                transform: scale(1.18);
        opacity: 0;
        -webkit-transition: opacity 1.8s ease;
        transition: opacity 1.8s ease;
        will-change: transform, opacity;
    }

    .hero__bg-video.active {
        opacity: 0.6;
        -webkit-animation: bgZoom 16s ease-out forwards;
                animation: bgZoom 16s ease-out forwards;
    }

    @-webkit-keyframes bgZoom {
        from {
            -webkit-transform: scale(1.18);
                    transform: scale(1.18);
        }

        to {
            -webkit-transform: scale(1.06);
                    transform: scale(1.06);
        }
    }

    @keyframes bgZoom {
        from {
            -webkit-transform: scale(1.18);
                    transform: scale(1.18);
        }

        to {
            -webkit-transform: scale(1.06);
                    transform: scale(1.06);
        }
    }

    /* ── Slides ── */
    .hero__slides {
        position: absolute;
        inset: 0;
        z-index: 2;
    }

    .hero__slide {
        position: absolute;
        inset: 0;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        pointer-events: none;
        opacity: 0;
    }

    .hero__slide.active {
        opacity: 1;
        pointer-events: auto;
    }

    /* ── Inner layout: title left + video right, both vertically centered ── */
    .hero__inner {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        gap: 0;
        width: 100%;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
    }

    /* title col */
    .hero__title-col {
        -webkit-box-flex: 0;
            -ms-flex: 0 0 auto;
                flex: 0 0 auto;
        padding-right: 560px;
        position: absolute;
        z-index: 3;
    }

    .hero__title {
        color: var(--white-color, #fff);
        opacity: 0;
        -webkit-transform: translateY(18px);
                transform: translateY(18px);
        -webkit-transition: opacity 1.0s cubic-bezier(0.16, 1, 0.3, 1),
            -webkit-transform 1.0s cubic-bezier(0.16, 1, 0.3, 1);
        transition: opacity 1.0s cubic-bezier(0.16, 1, 0.3, 1),
            -webkit-transform 1.0s cubic-bezier(0.16, 1, 0.3, 1);
        transition: opacity 1.0s cubic-bezier(0.16, 1, 0.3, 1),
            transform 1.0s cubic-bezier(0.16, 1, 0.3, 1);
        transition: opacity 1.0s cubic-bezier(0.16, 1, 0.3, 1),
            transform 1.0s cubic-bezier(0.16, 1, 0.3, 1),
            -webkit-transform 1.0s cubic-bezier(0.16, 1, 0.3, 1);
        -webkit-transition-delay: 0s;
                transition-delay: 0s;
        text-align: left;
        max-width: 600px;
        margin: 0;
    }

    .hero__slide.active .hero__title {
        opacity: 1;
        -webkit-transform: translateY(0);
                transform: translateY(0);
        -webkit-transition-delay: 0.45s;
                transition-delay: 0.45s;
    }

    /* video col */
    .hero__video-col {
        -webkit-box-flex: 0;
            -ms-flex: 0 0 auto;
                flex: 0 0 auto;
        position: relative;
        z-index: 2;
    }

    .hero__video-wrap {
        width: 500px;
        aspect-ratio: 4/5;
        overflow: hidden;
        position: relative;
    }

    .hero__video-wrap video {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        -o-object-fit: cover;
           object-fit: cover;
        display: block;
        opacity: 0;
        -webkit-transition: opacity 1.4s ease;
        transition: opacity 1.4s ease;
        will-change: opacity;
    }

    .hero__slide.active .hero__video-wrap video {
        opacity: 1;
        -webkit-transition-delay: 0.1s, 0.1s;
                transition-delay: 0.1s, 0.1s;
    }

    /* ── Controls ── */
    .hero__controls__container {
        position: absolute;
        bottom: 64px;
        left: 0;
        z-index: 10;
        width: 100%;
    }

    .hero__controls {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        gap: 10px;
    }

    .hero__btn {
        position: relative;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        width: 56px;
        height: 56px;
        border: 1px solid var(--border-color, rgba(255, 255, 255, 0.45));
        border-radius: 0;
        background: transparent;
        color: var(--white-color, #fff);
        cursor: pointer;
        font-size: 16px;
        font-family: inherit;
        overflow: hidden;
        padding: 0;
        -webkit-transition: border-color 0.3s;
        transition: border-color 0.3s;
    }

    .hero__btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: var(--white-color, #fff);
        -webkit-transform: scaleY(0);
                transform: scaleY(0);
        -webkit-transform-origin: bottom center;
                transform-origin: bottom center;
        -webkit-transition: -webkit-transform 0s linear;
        transition: -webkit-transform 0s linear;
        transition: transform 0s linear;
        transition: transform 0s linear, -webkit-transform 0s linear;
        z-index: 0;
    }

    .hero__btn.active::before {
        -webkit-transform: scaleY(1);
                transform: scaleY(1);
        -webkit-transition: -webkit-transform var(--fill-duration, 8s) linear;
        transition: -webkit-transform var(--fill-duration, 8s) linear;
        transition: transform var(--fill-duration, 8s) linear;
        transition: transform var(--fill-duration, 8s) linear, -webkit-transform var(--fill-duration, 8s) linear;
    }

    .hero__btn span {
        position: relative;
        z-index: 1;
        mix-blend-mode: difference;
        color: #fff;
    }

    .hero__btn:not(.active):hover {
        border-color: rgba(255, 255, 255, 0.5);
    }

    @media (max-width: 2559px) {
        .hero__title-col {
            padding-right: 500px;
        }

        .hero__title {
            max-width: 460px;
        }

        .hero__video-wrap {
            width: 460px;
        }
    }

    @media (max-width: 1199px) {
        .hero__title-col {
            position: relative;
            margin-left: 16px;
            padding-right: 0;
        }

        .hero__title {
            max-width: 260px;
            margin-top: -50px;
        }

        .hero__video-wrap {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-pack: center;
                -ms-flex-pack: center;
                    justify-content: center;
            -webkit-box-align: center;
                -ms-flex-align: center;
                    align-items: center;
            width: 100%;
            height: auto;
            aspect-ratio: auto;
        }

        .hero__video-wrap video {
            width: 60vw;
            max-width: 300px;
            aspect-ratio: 4/5;
            height: auto;
            position: relative;
        }

        .hero__inner {
            display: block;
        }

        .hero__controls__container {
            position: absolute;
            top: 50%;
            -webkit-transform: translateY(calc(min(300px, 70vw) * 5/4 / 2 + 78px));
                    transform: translateY(calc(min(300px, 70vw) * 5/4 / 2 + 78px));
            padding-left: 40px;
        }

        .hero__btn {
            width: 50px;
            height: 50px;
        }
    }

    @media (max-width: 1199px) {
      .hero {
        min-height:700px;
      }
    }

    @media (max-width: 767px) {
      .hero {
        min-height:600px;
      }
    }

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

.copyright-footer {
  position: relative;
  height: 100%;
  min-height: 280px;
  overflow: hidden;
}
.footer__bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-filter: blur(8px);
          filter: blur(8px);
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.copyright-footer .container {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  font-size: 14px;
  opacity: 0.75;
  padding-bottom: 64px
}

    .btn-up {
        position: relative;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        width: 56px;
        height: 56px;
        border: 1px solid white;
        border-radius: 0;
        background: transparent;
        color: var(--white-color, #fff);
        cursor: pointer;
        font-size: 20px;
        font-family: inherit;
        overflow: hidden;
        padding: 0;
        -webkit-transition: border-color 0.3s;
        transition: border-color 0.3s;
    }

.footer {
  height: 100svh;
  min-height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}

.footer .container-fluid.footer-content {
  background: var(--black-color);
  color: white;
  padding-bottom: var(--spacing-large);
  padding-top: 32px;
}

@media (max-width: 2559px) {
.footer .container-fluid.footer-content {
  padding-top: 24px;
}
}

.link-white {
  color: white;
}

.copyright-ed .dev {
  display: none!important;
}

@media (max-width: 991px) {
.copyright-footer .container {
  padding: 24px;
}
    .btn-up {
        width: 48px;
        height: 48px;
        font-size: 16px;
    }

.copyright-ed .dev {
  display: inline-block!important;
}
}


@media (max-width: 389px) {
.copyright-ed span {
  letter-spacing: -0.5px;
}
}

@media (max-width: 370px) {
.copyright-ed-row .col-3 {
  display: none;
}
.copyright-ed-row .col-9 {
  width: 100%;
}
}

/*--------------------------------------------------------------
# Projekte
--------------------------------------------------------------*/

.projekte-item {
  margin-bottom: 4rem;
}

.projekte-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.row-projekte {
  margin: 0 -12px;
}

.row-projekte>* {
  padding: 0 12px!important;
}

.projekte-img-wrap {
  overflow: hidden;
  width: 100%;
}

.projekte-img-wrap img {
  width: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.6s ease;
  transition: -webkit-transform 0.6s ease;
  transition: transform 0.6s ease;
  transition: transform 0.6s ease, -webkit-transform 0.6s ease;
}

/* Grosse (full width) */
.projekte-img-wrap--full {
  max-height: calc(100vh - 48px);
}

.projekte-img-wrap--full img {
  height: calc(100vh - 48px);
  max-height: calc(100vh - 48px);
}

/* Paar (nebeneinander) */
.projekte-img-wrap--pair {
  height: calc(100vh - 48px);
}

.projekte-img-wrap--pair img {
  height: calc(100vh - 48px);
}

/* Unter 991px: 3/2 Format */
@media (max-width: 991px) {
  .projekte-img-wrap--full,
  .projekte-img-wrap--full img {
    height: auto;
    max-height: none;
    aspect-ratio: 3 / 2;
  }

  .projekte-img-wrap--pair,
  .projekte-img-wrap--pair img {
    height: auto;
    aspect-ratio: 3 / 2;
  }
}

.projekte-link:hover .projekte-img-wrap img,
.projekte-link:focus .projekte-img-wrap img {
  -webkit-transform: scale(1.04);
          transform: scale(1.04);
}

.projekte-title {
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}

.caption {
  margin: 0;
}

/*--------------------------------------------------------------
# Cookies
--------------------------------------------------------------*/

#popupToast {
  background: var(--black-color);
  border: 1px solid var(--border-color);
  color: var(--text-color);
  min-width: 320px;
  max-width: 400px;
  border-radius: 0;
}

@media (max-width: 414px) {
#popupToast {
  min-width: calc(100vw - 30px);
  max-width: calc(100vw - 30px);
}
}

#popupToast h5 {
  font-size: var(--font-size-small);
  line-height: var(--font-size-small);
  font-weight: 500;
}

#popupToast .small {
  font-size: var(--font-size-small);
  line-height: var(--font-size-small);
}

#popupToast .tiny {
  font-size: var(--font-size-small);
  line-height: var(--font-size-small);
}

/*--------------------------------------------------------------
# Cookies
--------------------------------------------------------------*/

    .cookie-consent-banner {
        display: none;
        bottom: 24px;
        right: 24px;
        position: fixed;
        padding: 16px;
        border-radius: 0;
        width: 280px;
        text-align: left;
        max-height: 85%;
        overflow-y: auto;
        max-width: calc(100% - 40px);
        z-index: 997;
        opacity: 1;
        font-size: var(--font-size-small);
        line-height: var(--line-height-small);
        color: var(--white-color);
        background-color: var(--black-color);
        border: 1px solid var(--border-color);
        -webkit-box-sizing: border-box;
                box-sizing: border-box;
    }

    .cookie-consent-options label {
        margin: 0 10px;
        font-size: var(--font-size-small);
        line-height: var(--line-height-small);
        font-weight: 500;
    }

    .cookie-consent-options input {
        margin-right: 5px;
    }

    @media (max-width: 414px) {
        .cookie-consent-banner {
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 15px;
            border-radius: 0;
            max-width: 100%;
            background-color: var(--black-color);
            text-align: center;
            border: none!important;
            border-top: 1px solid var(--border-color)!important;
        }
    }

/*--------------------------------------------------------------
# Tiny MCE
--------------------------------------------------------------*/

.tox-tinymce {
  top: auto!important;
  bottom: 0!important;
  position: fixed!important;
}

.tox-form__group--stretched .tox-label {
  display: none!important;
}

.tox-form__group {
  margin-bottom: 10px!important;
}