.pageelement-teaser-start {
    overflow: visible;
    box-sizing: border-box;
}

.teaser-start {
    max-width: 87.5rem;
    margin: 0 auto;
    margin-bottom: 6.25rem;
}

/* Grid */
.teaser-start__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

/* Box */
.teaser-start__box {
    background: var(--bg);
    color: var(--fg);
    border-radius: var(--radius-default);
    padding: 2.5rem;
    text-align: center;
    box-sizing: border-box;
}

/* Headline */
.teaser-start__headline {
    margin: 0.5rem 0 0;
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    color: inherit;
}

/* Icon */
.teaser-start__icon {
    display: inline-flex;
    width: 2.5rem;
    height: 2.5rem;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.75rem;
    color: inherit;
}

.teaser-start__icon:before {
    font-family: 'Font Awesome 6 Pro', sans-serif;
    font-weight: 900;
    font-size: 2.25rem;
    line-height: 1;
    color: currentColor;
    content: '';
}

/* Icon mapping */
.teaser-start__icon.icon-alarm:before {
    content: '\f34e';
}

.teaser-start__icon.icon-calendar:before {
    content: '\f073';
}

.teaser-start__icon.icon-info:before {
    content: '\f05a';
}

/* Text */
.teaser-start__text {
    margin: 0.75rem 0 1.5rem;
}

/* texteditor darf fg nicht überschreiben */
.teaser-start__box .texteditor,
.teaser-start__box .texteditor * {
    color: inherit !important;
}

/* CTA */
.teaser-start__button {
    display: flex;
    justify-content: center;
}

.teaser-start__cta {
    display: inline-flex;
    justify-content: center;
    align-items: center;

    width: 16rem;
    max-width: 100%;

    padding: var(--button-padding-y) var(--button-padding-x);
    border-radius: var(--radius-default);
    border: 0.188rem solid transparent;
    transition: background .2s ease, border-color .2s ease;
    background: #fff;
    color: #000;

    text-decoration: none;
    font-size: 1.125rem;
    font-weight: 700;
    box-sizing: border-box;
}

.teaser-start__cta:hover {
    background: transparent;
    border-color: #fff;
    color: var(--fg);
}

.teaser-start__cta:focus-visible {
    outline: var(--outline);
    outline-offset: var(--outline-offset);
}

/* Banner */
.teaser-start__banner {
    display: flex;
    align-items: center;
    gap: 0.75rem;

    margin-top: 1.5rem;
    padding: 1rem 1.5rem;

    background: var(--bg);
    color: var(--fg);

    border-radius: var(--radius-default);
    text-decoration: none;
    font-weight: 700;

    outline: 0 solid transparent;
    transition: outline-color .2s ease;
}

.teaser-start__banner:hover,
.teaser-start__banner:focus-visible {
    outline: var(--card-outline-width) solid var(--card-outline-color);
    outline-offset: var(--card-outline-offset);
}

.teaser-start__banner-icon {
    display: inline-flex;
    width: 1.75rem;
    height: 1.75rem;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    color: inherit;
}

.teaser-start__banner-icon:before {
    font-family: 'Font Awesome 6 Pro', sans-serif;
    font-weight: 900;
    font-size: 1.5rem;
    line-height: 1;
    color: currentColor;
    content: '\f05a';
}

.teaser-start__banner-text {
    color: inherit;
    font-weight: inherit;
}

@media (max-width: 87.5rem) {
    .pageelement-teaser-start {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }
}

/* Responsive */
@media (max-width: 60rem) {
    .teaser-start__grid {
        grid-template-columns: 1fr;
    }

    .teaser-start__box {
        padding: 2rem 1.5rem;
    }

    .teaser-start__cta {
        width: 100%;
        max-width: 20rem;
    }

    .teaser-start {
        margin-bottom: 4.375rem;
    }
}