.business-news-container {
    position: relative;
    overflow: hidden;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background: #f9f9f9;
}

.business-news-scroller {
    position: relative;
}

.news-item {
    padding: 15px;
    border-bottom: 1px solid #e8e8e8;
    background: white;
    transition: background-color 0.3s ease;
}

.news-item:last-child {
    border-bottom: none;
}

.news-item:hover {
    background: #f5f5f5;
}

.news-title {
    margin: 0 0 8px 0;
    font-size: 14px;
    line-height: 1.4;
}

.news-title a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 600;
}

.news-title a:hover {
    color: #3498db;
}

.news-meta {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    color: #7f8c8d;
    margin-bottom: 8px;
}

.news-source {
    font-weight: 600;
    color: #e74c3c;
}

.news-description {
    margin: 0;
    font-size: 12px;
    line-height: 1.4;
    color: #555;
}

.no-news {
    text-align: center;
    padding: 20px;
    color: #7f8c8d;
    font-style: italic;
}

/* Scroll animation */
@keyframes scrollNews {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-100%);
    }
}

.business-news-scroller.scrolling {
    animation: scrollNews linear infinite;
}

.business-news-scroller.scrolling.slow {
    animation-duration: 120s;
}

.business-news-scroller.scrolling.medium {
    animation-duration: 80s;
}

.business-news-scroller.scrolling.fast {
    animation-duration: 40s;
}

/* Pause on hover */
.business-news-container:hover .business-news-scroller.scrolling {
    animation-play-state: paused;
}