.content-teaserbox {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(4, 1fr);
}


.content-teaserbox .teaser {
    align-items: stretch;
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
}

.content-teaserbox .teaser .image-wrapper {
    border-radius: .15rem;
    margin-bottom: 1rem;
    overflow: hidden;
    width: 100%;
}

.content-teaserbox .teaser .image-wrapper img {
    display: block;
    transition: transform .6s ease-in-out;
    width: 100%;
}

@media (hover: hover) and (pointer: fine) {
    .content-teaserbox .teaser .image-wrapper img:hover {
        transform: scale(1.005);
    }

    .content-teaserbox .teaser a.image-wrapper:hover img {
        transform: scale(1.02);
    }
}

.content-teaserbox .teaser h2 {
    font-size: 2rem;
    line-height: 2.4rem;
    margin-bottom: 1rem;
}

.content-teaserbox .teaser h3 {
    color: var(--purple-color);
    font-size: 1.2rem;
    line-height: 1.6rem;
    margin-bottom: .25rem;
}

.content-teaserbox .teaser .btn {
    align-self: flex-start;
}

@media (max-width: 1299px) {
    .content-teaserbox {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1023px) {
    .content-teaserbox {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .content-teaserbox {
        grid-template-columns: repeat(1, 1fr);
    }
}