/* Breaking News Slider Styles */
.breaking-news-container {
    width: 100%;
    background-color: #6F2B2B;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    gap: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    /*min-height: 80px;*/
    height: auto;
    box-sizing: border-box;
}
.menu_mobile_icons{
    display: none;
}

.breaking-news-label {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #E8CC8F;
    font-weight: bold;
    font-size: 18px;
    white-space: nowrap;
    flex-shrink: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.breaking-arrow {
    font-size: 20px;
    margin-left: 5px;
}

.breaking-news-slider-wrapper {
    flex: 1;
    overflow: hidden;
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.breaking-news-slider {
    display: flex;
    align-items: center;
    white-space: nowrap;
    gap: 20px;
    will-change: transform;
    animation: scroll-news linear infinite;
}

.breaking-news-slider:hover {
    animation-play-state: paused;
}

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

.breaking-news-item {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    padding: 5px 10px;
    transition: color 0.3s ease;
    display: inline-block;
    white-space: nowrap;
}

.breaking-news-item:hover {
    color: #FFD700;
    text-decoration: underline;
}

.breaking-separator {
    color: #ffffff;
    font-size: 18px;
    margin: 0 10px;
    display: inline-block;
}

/* Animation removed - handled by JavaScript for better control */

/* Responsive Design */
@media (max-width: 768px) {
    .breaking-news-container {
        height: 50px;
        padding: 10px 15px;
        gap: 15px;
    }
     .menu_mobile_icons{
        display: block;
    }
    
    .breaking-news-label {
        font-size: 14px;
    }
    
    .breaking-news-item {
        font-size: 14px;
    }
    
    .breaking-arrow {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .breaking-news-container {
        height: 45px;
        padding: 8px 10px;
        gap: 10px;
    }
    .menu_mobile_icons{
        display: block;
    }
    
    .breaking-news-label {
        font-size: 12px;
    }
    
    .breaking-news-item {
        font-size: 12px;
    }
}
