/* =========================================================
   FLASH-NEWS.CSS — Scrolling ticker bar
   ========================================================= */

.pn-flash-news {
    display: flex;
    align-items: center;
    height: 42px;
    overflow: hidden;
    position: relative;
    z-index: 5;
    font-size: 0.82rem;
    font-weight: 500;
}

.flash-news-label {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 20px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    white-space: nowrap;
    flex-shrink: 0;
    border-right: 1px solid rgba(255,255,255,0.2);
    height: 100%;
    background: rgba(0,0,0,0.15);
}

.flash-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: currentColor;
    animation: flashPulse 1.5s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes flashPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.flash-news-track-wrapper {
    flex: 1;
    overflow: hidden;
    height: 100%;
    display: flex;
    align-items: center;
}

.flash-news-track {
    display: flex;
    align-items: center;
    gap: 0;
    white-space: nowrap;
    will-change: transform;
    animation: flashScroll 30s linear infinite;
}

.flash-news-track:hover {
    animation-play-state: paused;
}

@keyframes flashScroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.flash-news-item {
    padding: 0 28px;
    white-space: nowrap;
}

.flash-news-sep {
    padding: 0 4px;
    opacity: 0.5;
    font-size: 0.6rem;
}
