/* News Ticker Section */
.vd-news-ticker-section {
    background: linear-gradient(135deg, #0A2845 0%, #AF4D58 100%);
    color: #FFFFFF;
    padding: 0;
    position: relative;
    margin-top: 6px;
    margin-bottom: 0px;
    z-index: 10;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.vd-news-ticker-container {
    display: flex;
    align-items: center;
    height: 65px;
    overflow: hidden;
    position: relative;
}

.vd-news-ticker-label {
    background: #AF4D58;
    color: #FFFFFF;
    padding: 0 25px;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    min-width: 160px;
    flex-shrink: 0;
    border-right: 3px solid #D68F41;
    position: relative;
}

.vd-news-ticker-label::after {
    content: '';
    position: absolute;
    right: -12px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 12px solid #AF4D58;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
}

.vd-news-ticker-content {
    flex: 1;
    overflow: hidden;
    position: relative;
    height: 100%;
}

.vd-news-ticker-track {
    display: flex;
    align-items: center;
    height: 100%;
    animation: vd-news-ticker-scroll 40s linear infinite;
    white-space: nowrap;
}

.vd-news-ticker-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 50px;
    font-size: 16px;
    font-weight: 400;
    color: #FFFFFF;
    min-width: max-content;
    height: 100%;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.vd-news-ticker-item i {
    font-size: 14px;
    color: #D68F41;
    flex-shrink: 0;
}

.vd-news-ticker-text-orange {
    color: #D68F41 !important;
}

@keyframes vd-news-ticker-scroll {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* Pause animation on hover */
.vd-news-ticker-content:hover .vd-news-ticker-track {
    animation-play-state: paused;
}

/* Responsive Design */

/* Standard Laptop/Small Desktop (1024px - 1199px) */
@media (max-width: 1199px) and (min-width: 1024px) {
    .vd-news-ticker-container {
        height: 62px;
    }
    
    .vd-news-ticker-label {
        min-width: 155px;
        padding: 0 22px;
        font-size: 15px;
    }
    
    .vd-news-ticker-item {
        padding: 0 48px;
        font-size: 15px;
    }
}

/* Tablet (768px - 1023px) */
@media (max-width: 1023px) and (min-width: 768px) {
    .vd-news-ticker-container {
        height: 60px;
    }
    
    .vd-news-ticker-label {
        min-width: 150px;
        padding: 0 20px;
        font-size: 15px;
    }
    
    .vd-news-ticker-item {
        padding: 0 45px;
        font-size: 15px;
    }
    
    .vd-news-ticker-item i {
        font-size: 13px;
    }
}

/* Large Mobile/Small Tablet (480px - 767px) */
@media (max-width: 767px) and (min-width: 480px) {
    .vd-news-ticker-container {
        height: 55px;
    }
    
    .vd-news-ticker-label {
        min-width: 140px;
        padding: 0 18px;
        font-size: 14px;
        gap: 8px;
    }
    
    .vd-news-ticker-item {
        padding: 0 30px;
        font-size: 15px;
        gap: 10px;
    }
    
    .vd-news-ticker-item i {
        font-size: 13px;
    }
}

/* Small Mobile (320px - 479px) */
@media (max-width: 479px) {
    .vd-news-ticker-container {
        height: 50px;
    }
    
    .vd-news-ticker-label {
        min-width: 110px;
        padding: 0 12px;
        font-size: 12px;
        gap: 6px;
    }
    
    .vd-news-ticker-item {
        padding: 0 25px;
        font-size: 14px;
        gap: 10px;
    }
    
    .vd-news-ticker-item i {
        font-size: 12px;
    }
}

/* Extra Small Mobile (up to 319px) */
@media (max-width: 319px) {
    .vd-news-ticker-container {
        height: 45px;
    }
    
    .vd-news-ticker-label {
        min-width: 90px;
        padding: 0 10px;
        font-size: 11px;
        gap: 4px;
    }
    
    .vd-news-ticker-label i {
        font-size: 10px;
    }
    
    .vd-news-ticker-item {
        padding: 0 20px;
        font-size: 12px;
        gap: 8px;
    }
    
    .vd-news-ticker-item i {
        font-size: 10px;
    }
}

/* Enhanced news ticker animations */
@media (prefers-reduced-motion: reduce) {
    .vd-news-ticker-track {
        animation-duration: 120s;
    }
}

/* Accessibility */
.vd-news-ticker-content:focus-within .vd-news-ticker-track {
    animation-play-state: paused;
}

/* Print styles */
@media print {
    .vd-news-ticker-section {
        display: none;
    }
}