/* Минималистичная бегущая строка */
.ticker {
    background: linear-gradient(41deg, rgba(26, 69, 54, 1) 40%, rgba(13, 46, 36, 1) 100%);
    padding: 8px 0;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.ticker__wrapper {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
}

.ticker__content {
    display: inline-block;
    animation: tickerScroll 2048s linear infinite;
    white-space: nowrap;
}

.ticker__item {
    display: inline-block;
    color: rgba(255, 255, 255, 0.85);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.3px;
    padding: 0 30px;
    position: relative;
}

.ticker__item::after {
    content: "●";
    position: absolute;
    right: -5px;
    top: 50%;
    transform: translateY(-50%);
    color: #10b981;
    font-size: 8px;
}

.ticker__item:last-child::after {
    display: none;
}

/* Анимация */
@keyframes tickerScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Пауза при наведении */
.ticker:hover .ticker__content {
    animation-play-state: paused;
}

/* Адаптивность */
@media (max-width: 768px) {
    .ticker {
        padding: 6px 0;
    }
    
    .ticker__item {
        font-size: 11px;
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .ticker__item {
        font-size: 10px;
        padding: 0 15px;
    }
}