@keyframes blinkNewDot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.ticker {
    padding: 0;
    position: relative;
    height: 24px;
    display: flex;
    align-items: center;
    flex: 1;
    min-width: 0;
}

#newsBlockSnippet .html-snippet {
    overflow: visible !important;
}

.ticker-content {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    min-width: 0;
}

.new-indicator {
    display: flex;
    align-items: center;
    gap: 2px;
    background-color: #FF896476;
    border-radius: 12px;
    padding: 3px 4px;
}

.new-dot {
    position: relative;
    width: 16px;
    height: 16px;
    background-color: #F7562B60;
    border-radius: 50%;
}

.new-dot:before {
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    background-color: #ef4444;
    border-radius: 50%;
    margin: 4px;
}

.new-text {
    color: #F7562B;
    font-weight: 800;
    font-size: 14px;
    line-height: 18px;
    opacity: 1;
}

.path {
    font: normal normal bold 14px/28px Montserrat;
    display: flex;
    align-items: center;
    gap: 4px;
    width: 100%;
    min-width: 0;
}

.blog {
    text-align: left;
    font: normal normal bold 14px/28px Montserrat;
    letter-spacing: 0px;
    color: #788FA5;
    opacity: 1;
}

.separator {
    text-align: center;
    font: normal normal bold 14px/28px Montserrat;
    letter-spacing: 0;
    color: #161D2676;
}

.title-container {
    overflow: hidden;
    height: 28px;
    position: relative;
    display: flex;
    align-items: center;
    flex: 1;
    min-width: 0;
}

.title {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    font: normal normal bold 14px/28px Montserrat;
    color: #FF8964 !important;
    text-align: left;
    letter-spacing: 0px;
    opacity: 0;
    transform: translateY(-100%);
    transition: transform 0.5s ease, opacity 0s ease;
    cursor: pointer;
    text-decoration: none !important;
}

/* Защита от внешних стилей платформы */
.title,
.title:link,
.title:visited,
.title:hover,
.title:active,
.title:focus {
    color: #FF8964 !important;
    text-decoration: none !important;
    outline: none !important;
}

.title.active {
    opacity: 1;
    transform: translateY(0);
    z-index: 10;
}

.title.prev {
    opacity: 1;
    transform: translateY(100%);
    z-index: 5;
}