.runningLine {
    width: 100%;
    padding: 14px 0;
    overflow: hidden;
    border-radius: 10px;
    background: linear-gradient(90deg, var(--body-running-bg) 0%, var(--body-running-bg-2) 100%);
}

.textBlock {
    display: flex;
    flex-direction: row;
    width: fit-content;
}
.textBlock.scrolling {
    animation: scroll 20s linear infinite;
}
.textLine {
    font-size: 16px;
    font-weight: 400;
    color: var(--body-running-text);
    white-space: nowrap;
    flex-shrink: 0;
	width: max-content;
    /* margin-right: 50px; */
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@container mainContent (min-width: 910px) {
    .textLine {
        font-size: 19px;
    }
}

@container mainContent (min-width: 1366px) {
    .textLine {
        font-size: 25px;
    }
}