[id^="news-ticker-block"] {
    .news-ticker__wrapper {
        padding: 28px 15px;
        background-color: #399;
        margin-bottom: 25px;
    }

    .news-ticker__container {
        display: flex;
        flex-direction: column;
        column-gap: 30px;
        row-gap: 15px;
        max-width: 1405px;
        margin: auto;
        width: 100%;
    }

    .news-ticker__label {
        flex-grow: 0;
        flex-shrink: 0;
        color: white;
        font-weight: 700 !important;
        font-size: 26px !important;
        margin: 0;
    }

    #news-ticker {
        width: 100%;
        flex-grow: 1;
        flex-shrink: 1;
    }

    .news-ticker__slide {
        display: flex;
        flex-direction: column;
        column-gap: 24px;
        row-gap: 8px;
    }

    .news-ticker__slide--date, .news-ticker__slide--title, .news-ticker__slide--link {
        color: white;
        margin: 0;
    }

    .news-ticker__slide--date {
        font-size: 16px !important;
        flex-grow: 0;
        flex-shrink: 0;
    }

    .news-ticker__slide--title {
        font-size: 20px !important;
        flex-grow: 1;
        flex-shrink: 1;
        font-weight: bold !important;
    }

    .news-ticker__slide--link {
        font-size: 18px !important;
        flex-grow: 0;
        flex-shrink: 0;
        text-decoration: underline !important;
    }

    .news-ticker__slide--link::hover {
        font-weight: bold !important;
    }

    /* Medium Breakpoint */
    @media (min-width: 768px) {
        .news-ticker__slide {
            flex-direction: row;
        }

        .news-ticker__slide--title {
            text-overflow: ellipsis;
            white-space: nowrap;
            overflow: hidden;
        }
    }

    /* Large Breakpoint */
    @media (min-width: 1024px) {
        .news-ticker__container {
            flex-direction: row;
        }


        .news-ticker__slide--date, .news-ticker__slide--title, .news-ticker__slide--link {
            font-size: 26px !important;
        }

    }
}