<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.content-category-teaser {
    display: flex;
    /* force width to avoid issues with content causing overflow */
    width: 100%;
    flex-direction: column;
    color: inherit;
    background-color: #fff;
    /* Disables the default callout shown when you touch and hold a touch target  */
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    -moz-user-select: none;
    user-select: none;
}
.no-touchevents .content-category-teaser:hover,
.content-category-teaser:focus {
    color: #f96915;
    text-decoration: none;
    outline: none;
}
.content-category-teaser--text-top {
    flex-direction: column-reverse;
}
.content-category-teaser__img-box {
    position: relative;
    overflow: hidden;
}
.content-category-teaser__img {
    display: block;
    /* required for too small images */
    width: 100%;
    margin: auto;
    transition: transform .3s;
}
.no-touchevents .content-category-teaser:hover .content-category-teaser__img,
.content-category-teaser:focus .content-category-teaser__img {
    transform: scale(1.03);
}
.content-category-teaser__body {
    display: flex;
    flex: 1 0 auto;
    flex-direction: column;
    padding: 20px;
    border: 2px solid #f2f2f2;
    border-top-width: 0;
    overflow-wrap: break-word;
    word-wrap: break-word;
}
.content-category-teaser--text-top .content-category-teaser__body {
    border-top-width: 2px;
    border-bottom-width: 0;
}
.content-category-teaser__body-headline {
    line-height: 1.4;
    margin: 0 0 .5em;
    transition: color .3s;
}
.no-touchevents .content-category-teaser:hover .content-category-teaser__body-headline,
.content-category-teaser:focus .content-category-teaser__body-headline {
    color: inherit;
}
.content-category-teaser__body-text {
    margin: 0;
    color: #969492;
}

@media ( min-width: 992px ) {
    .content-category-teaser__body {
        padding: 30px;
    }
}
</pre></body></html>