.channel-teaser {
    margin-top: 91px;
    margin-bottom: 91px;
}
.channel-teaser:nth-child(2) {
    margin-top: 131px;

}
.channel-teaser__links {
    display: flex;
    justify-content: space-between;
}

.channel-teaser__arrow-link {
    display: flex;
    justify-content: center;
    align-items: center;
}
.arrow_channel-teaser {
    margin-left: 20px;
}
.channel-teaser__preview {
    min-height: 316px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 15px;
}

.channel-teaser__preview-item {
    position: relative;
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
}

.channel-teaser__preview-item-background {
    transition: .3s;
    position: relative;
    object-fit: cover;
    height: 100%;
    width: 100%;
    background: var(--light-gray);
}
.channel-teaser__preview-item-background-container {
    top: 0;
    left: 0;
    overflow: hidden;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    z-index: -1;
}
.channel-teaser__preview-item:hover .channel-teaser__preview-item-background {
    transform: scale(1.1);
}
.channel-teaser__preview-item-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.channel-teaser__preview-item:first-child {
    padding-left: 61px;
}

.channel-teaser__preview-item-text {
    max-width: 280px;
}

@media screen and (max-width: 1279px) {
    .channel-teaser__preview {
        min-height: 316px;
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 8px;
    }
}