#block-base_theme-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: 500;
}

.view-news-ticker .views-row .views-field-title a:hover {
    text-decoration: underline;
}

.views-row.news-fresh {
  animation: newsFade 1.2s ease;
}

@keyframes newsFade {
  0%   { opacity: 0; }
  100% { opacity: 1; }
}

.view-news-ticker .views-row.news-fresh .views-field-created:after {
    content: "NEU";
    font-weight: 700;
    font-size: 13px;
    color: white;
    background: red;
    border-radius: 3px;
    line-height: 1;
    padding: 2px 4px;
    margin-left: 5px;
}