<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Created by Content Blocks */

.teaser {
    height: 100%;
    padding-bottom: 2rem;
}

.teaser-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 250px 1fr;
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    align-content: space-between;
    height: 100%;
    position: relative;
}

.teaser--highlight {
    box-shadow: 2px 2px 20px 0px #999;
}


.teaser__text {
    background-color: #eee;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: space-between;
    height: 100%;
    width: 100%;
}

.teaser__image {
    overflow: hidden;
}

.teaser__image img{
    object-fit: cover;
    transition: 0.2s ease-in-out;
    width: 100%;
    height: 100%;
}

.teaser:hover .teaser__image img {
    transform: scale(1.1);
}
</pre></body></html>