.running-text-section {
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.running-text-label {
    background: #dc3545;
    color: white;
    padding: 6px 15px;
    border-radius: 5px 0 0 5px;
    white-space: nowrap;
    font-size: 14px;
}

.running-text-content {
    flex: 1;
    overflow: hidden;
    padding: 8px 12px;
    font-size: 14px;
    font-weight: 500;
}

.running-text-wrapper {
    display: inline-block;
    white-space: nowrap;
    animation: scroll-left 30s linear infinite;
    color: #333;
}

.running-text-wrapper:hover {
    animation-play-state: paused;
}

.running-text-link {
    color: #0056b3;
    text-decoration: none;
    font-weight: 600;
}

.running-text-link:hover {
    text-decoration: underline;
    color: #003d82;
}

.separator {
    color: #dc3545;
    font-weight: bold;
}

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

@media (max-width: 768px) {
    .running-text-label {
        font-size: 12px;
        padding: 6px 12px;
    }
    
    .running-text-content {
        font-size: 13px;
        padding: 6px 10px;
    }
    
    .running-text-wrapper {
        animation-duration: 20s;
    }
}
