.news {
        background-color: var(--dark-blue);
        padding-left: var(--gutter);
        padding-right: var(--gutter);
        .news__intro,
        .news__categories,
        .news__cta,
        .rex-nav-pagination {
            * {
                color: #fff;
                border-color: #fff;
            }
        }

        .news__intro {
            > :last-child {
                margin-bottom: 0;
            }
        }
        .news__cta {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .news__categories {
            margin-top: var(--margin-small);
            text-transform: uppercase;
            ul {
                display: flex;
                gap: 1px;
                li {
                    position: relative;
                    padding: 0.4rem 1.5rem;
                    &::before {
                        content: '';
                        width: 1px;
                        background-color: var(--line-gray);
                        position: absolute;
                        left: -1px;
                        top: 0px;
                        bottom: 0px;
                    }
                    a.active {
                        color: var(--main-color);
                        font-weight: bold;
                    }
                }
                li:first-child {
                    padding-left: 0;
                    &::before {
                        display: none;
                    }
                }
            }
        }

        .news__list {
            .news__teaser,
            .splide__slide {
                background-color: #fff;
                .news__teaser__category,
                .news__teaser__category a,
                .news__teaser__category a:visited {
                    text-transform: uppercase;
                    text-decoration: none;
                    color: var(--main-color, #8bd6e6);
                    font-weight: 600;
                }
                .news__teaser__text {
                    padding: var(--spacing-12);
                }
            }
        }

        .rex-nav-pagination {
            padding: var(--font-margin-p) 0;
            display: flex;
            justify-content: space-between;
            ul.pagination {
                display: flex;
                gap: 10px;
                list-style: none;
                padding: 0;
                li {
                    a {
                        display: flex;
                        height: var(--button-height);
                        min-width: var(--button-height);
                        justify-content: center;
                        align-items: center;
                        border: 1px solid #fff;
                    }
                }
                li.disabled {
                    display: none;
                }
                li.rex-page.active {
                    a {
                        background-color: var(--main-color);
                        color: var(--dark-blue);
                    }
                }
                li.rex-next,
                li.rex-prev {
                    a {
                        border-color: transparent;
                        i {
                            display: block;
                            width: 42px;
                            height: 13px;
                            mask-image: url('data:image/svg+xml,<svg width="42.5" height="13" version="1.1" viewBox="0 0 42.5 13" xmlns="http://www.w3.org/2000/svg"><g transform="translate(-419.5 -2729)" data-name="Gruppe 880"><line transform="translate(419.5 2735.5)" x2="37" fill="none" stroke="%238bd6e6" data-name="Linie 101"/><path transform="translate(462 2729) rotate(90)" d="M6.5,0,13,11H0Z" fill="%238bd6e6" data-name="Polygon 9"/></g></svg>');
                            background-color: var(--main-color);
                        }
                    }
                }
                li.rex-prev {
                    a {
                        i {
                            transform: scaleX(-1);
                        }
                    }
                }
            }
        }
}
@media (min-width: 1024px) {
    .news {

        .news__intro,
        .news__cta {
            display: flex;
            flex-direction: column;
            align-items: center;
            
        }
        .news__cta {
            img {
                display: none;
            }
        }
        .news__list {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: var(--gap);
            .news__teaser {
                
                .news__teaser__meta {
                    margin-bottom: var(--spacing-06);
                    .news__teaser__category,
                    .news__teaser__category a,
                    .news__teaser__category a:visited {
                        text-transform: uppercase;
                        text-decoration: none;
                        color: var(--main-color, #8bd6e6);
                        font-weight: 600;
                    }
                }
                
            }
        }
    }
}