/* Parallax Effekt */
.kss-image-banner-cta--parallax {
    background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

@media (max-width: 1024px) {
    .kss-image-banner-cta--parallax {
        background-attachment: scroll;
    }
}
.kss-image-banner-cta {
    position: relative;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.kss-image-banner-cta .kss-image-banner-cta__overlay {
    position: absolute;
    inset: 0;
    background: #000;
}

.kss-image-banner-cta .kss-image-banner-cta__inner {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 32px;
}

.kss-image-banner-cta .kss-image-banner-cta__headline {
    margin: 0 0 16px;
    line-height: 1.1;
}

.kss-image-banner-cta .kss-image-banner-cta__button {
    display: inline-block;
    padding: 10px 16px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
}

.kss-image-banner-cta .kss-image-banner-cta__button.is-filled {
    background: #2b8a9e;
    color: #fff;
}

.kss-image-banner-cta .kss-image-banner-cta__button.is-outline {
    border: 2px solid currentColor;
    background: transparent;
}

.kss-image-banner-cta {
    position: relative;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.kss-image-banner-cta .kss-image-banner-cta__overlay {
    position: absolute;
    inset: 0;
    background: #000;
}

.kss-image-banner-cta .kss-image-banner-cta__gradient {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
}

.kss-image-banner-cta .kss-image-banner-cta__inner {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 32px;
}

.kss-image-banner-cta .kss-image-banner-cta__headline {
    margin: 0 0 16px;
    line-height: 1.2;
}

/* Textfarben-Klassen */
/* Heading Colors */
.kss-image-banner-cta .heading-color-white:not(#fakeID) :is(h1, h2, h3, h4, h5, h6) {
    color: var(--kss-color-white);
}

.kss-image-banner-cta .heading-color-dark:not(#fakeID) :is(h1, h2, h3, h4, h5, h6) {
    color: var(--kss-color-black);
}

.kss-image-banner-cta .heading-color-primary:not(#fakeID) :is(h1, h2, h3, h4, h5, h6) {
    color: var(--kss-primary-color);
}

.kss-image-banner-cta .heading-color-secondary:not(#fakeID) :is(h1, h2, h3, h4, h5, h6) {
    color: var(--kss-secondary-color);
}

/* Paragraph Colors */
.kss-image-banner-cta .text-color-white:not(#fakeID) :is(p, .kss-paragraph, .kss-copy, ul, ol, blockquote) {
    color: var(--kss-color-white);
}

.kss-image-banner-cta .text-color-dark:not(#fakeID) :is(p, .kss-paragraph, .kss-copy, ul, ol, blockquote) {
    color: var(--kss-color-black);
}

.kss-image-banner-cta .text-color-primary:not(#fakeID) :is(p, .kss-paragraph, .kss-copy, ul, ol, blockquote) {
    color: var(--kss-primary-color);
}

.kss-image-banner-cta .text-color-secondary:not(#fakeID) :is(p, .kss-paragraph, .kss-copy, ul, ol, blockquote) {
    color: var(--kss-secondary-color);
}

