#block-fruchthandel-views-block-news-ticker-block-1 {
    max-width: 100%;
    padding: calc(2 * var(--padding-inner)) var(--padding-inner);
    background-color: var(--color-primary);
    color: white;
}

.view-news-ticker {
    display: flex;
    gap: calc(2 * var(--padding-inner));
    max-width: var(--max-width);
    margin: 0 auto;
}

.view-news-ticker .views-row {
    flex: 1;
}

.view-news-ticker .views-row .views-field-created {
    font-size: 14px;
    font-weight: 400;
}

.view-news-ticker .views-row .views-field-title a {
    font-family: var(--font-family-heading);
    color: white;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
}

@media (max-width: 880px) {
    #block-fruchthandel-views-block-news-ticker-block-1 {
        padding: 10px 0 15px 0;
        overflow: hidden;
    }
    .view-news-ticker {
        display: flex;
        gap: 20px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        max-width: 100%;
        width: 100%;
        padding-left: 10px;
        scroll-padding-left: 10px;
    }

    .view-news-ticker::-webkit-scrollbar {
        display: none;
    }

    .view-news-ticker .views-row {
        flex: 0 0 75vw;
        scroll-snap-align: start;
    }
}