.cu-ticker {
    /* background: #1b2d5b; */
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 11px 24px;
    font-size: 15px;
    font-family: inherit;
    min-height: 46px;
    box-sizing: border-box;
}

.cu-ticker-track {
    flex: 1;
    overflow: hidden;
}

.cu-ticker-item {
    display: none;
}

.cu-ticker-item.cu-active {
    display: block;
    animation: cu-fadein 0.5s ease;
}

@keyframes cu-fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.cu-ticker-item p {
    margin: 0;
    line-height: 1.5;
}

.cu-ticker-item a {
    color: #4cba8c;
    text-decoration: none;
    font-weight: 500;
}

.cu-ticker-item a:hover {
    text-decoration: underline;
}

.cu-dots {
    display: flex;
    gap: 7px;
    align-items: center;
    margin-left: 20px;
    flex-shrink: 0;
}

.cu-dots .cu-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #fff;
    border: none;
    padding: 0px;
    cursor: pointer;
    transition: background 0.3s;
    display: inline-block;
}

.cu-dots .cu-dot.cu-dot-active {
    background: #2E9E6A;
}

.cu-ticker-item a, .cu-ticker-item a:hover, .cu-ticker-item a:focus {
    color: #2E9E6A;
    text-decoration: underline;
}

.cu-ticker-item{
    font-size: 13px;
    font-family: 'Inter', sans-serif;
}