.cb-teaserbox {
    position: relative;
    overflow: hidden;
    text-align: center;
    border-radius: 20px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .22);
    padding: 3.5rem 2rem;
    margin: 4rem 0;
    color: #fff;
}

.cb-teaserbox::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    border-radius: inherit;
    padding: 1px;
    background: var(--ad-border-gradient, linear-gradient(180deg, rgba(255, 255, 255, .16), rgba(255, 255, 255, .04)));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
}

.cb-teaserbox::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    background: var(--ad-grain, none) left top / 182px auto;
    opacity: .4;
    pointer-events: none;
}

.cb-teaserbox-icon,
.cb-teaserbox-content {
    position: relative;
    z-index: 2;
}

.cb-teaserbox-icon {
    margin-bottom: 1.25rem;
}
.teaserbox-image {
    width: 3rem;
    height: 3rem;
}

.cb-teaserbox-headline {
    margin: 0 auto;
    max-width: 640px;
    color: #fff;
    font-size: clamp(1.4rem, 2.4vw, 1.9rem);
    line-height: 1.2;
    text-wrap: balance;
}

.cb-teaserbox-body {
    margin: 1rem auto 0;
    max-width: 580px;
    color: rgba(255, 255, 255, .9);
    line-height: 1.6;
}
.cb-teaserbox-body p:last-child {
    margin-bottom: 0;
}

.cb-teaserbox-body p:has(.btn) {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: .75rem;
    margin-top: 1.85rem;
}
.cb-teaserbox-body p:has(.btn) .btn {
    margin: 0;
}
