.oganov-stats-ticker {
    position: relative;
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 72px;
    padding: 48px 16px;
    box-sizing: border-box;
    font-family: "Involve", sans-serif;
}

.oganov-stats-ticker::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 100vw;
    transform: translateX(-50%);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    pointer-events: none;
}

.oganov-stats-ticker__item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    min-width: 0;
    flex: 0 0 auto;
}

.oganov-stats-ticker__value-row {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
    flex-shrink: 0;
}

.oganov-stats-ticker__marker {
    width: 19.5px;
    height: 22px;
    flex: 0 0 19.5px;
    background: #00f591;
    clip-path: polygon(0 0, 100% 22%, 68% 100%, 0 100%);
}

.oganov-stats-ticker__value {
    display: inline-flex;
    align-items: center;
    gap: 0;
    color: #ffffff;
    font-size: 24px;
    font-weight: 600;
    line-height: 1;
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
}

.oganov-stats-ticker__prefix,
.oganov-stats-ticker__suffix {
    display: inline-block;
}

.oganov-stats-ticker__number {
    display: inline-flex;
    align-items: flex-start;
}

.oganov-stats-ticker__digit-column {
    position: relative;
    width: 0.62em;
    height: 1em;
    overflow: hidden;
}

.oganov-stats-ticker__digit-track {
    display: flex;
    flex-direction: column;
    transform: translateY(0);
    will-change: transform;
}

.oganov-stats-ticker__digit {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 1em;
    line-height: 1;
}

.oganov-stats-ticker__label {
    margin: 0;
    color: rgba(255, 255, 255, 0.6);
    font-size: 24px;
    font-weight: 500;
    line-height: 1;
    white-space: nowrap;
}

@media (max-width: 1850px) {
    .oganov-stats-ticker {
        flex-wrap: wrap;
        justify-content: center;
        row-gap: 24px;
        column-gap: 40px;
    }

    .oganov-stats-ticker__item {
        width: calc(50% - 20px);
    }
}

@media (max-width: 1024px) {
    .oganov-stats-ticker {
        flex-direction: column;
        align-items: flex-start;
        flex-wrap: nowrap;
        gap: 24px;
        row-gap: 24px;
        column-gap: 24px;
        padding: 24px 16px;
    }

    .oganov-stats-ticker__item {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .oganov-stats-ticker__value-row,
    .oganov-stats-ticker__label {
        text-align: left;
        justify-content: flex-start;
        font-size: 20px;
        line-height: 1.2;
        white-space: normal;
    }
}
