/* Breaking News Marquee Styles */
.pbm-breaking-container {
    background-color: #DD0017;
    border-top: 2px solid #DD0017;
    width: 100%;
    overflow: hidden;
    position: relative;
    z-index: 10;
}

.pbm-marquee-track {
    display: flex;
    align-items: center;
    white-space: nowrap;
    will-change: transform;
    width: max-content;
    gap: 0;
}

.pbm-marquee-item {
    display: inline-flex;
    align-items: baseline;
    flex-shrink: 0;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #ffffff;
    text-decoration: none;
    letter-spacing: 0.3px;
}

.pbm-title-link {
    color: #ffffff;
    text-decoration: none;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 13px;
    font-weight: 500;
    background-color: transparent;
    display: inline-block;
    transition: opacity 0.2s ease, text-decoration 0.1s;
}

.pbm-title-link:hover {
    text-decoration: underline;
    text-underline-offset: 2px;
    opacity: 0.85;
    color: #000000;
}

.pbm-separator-dot {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    margin: 0 20px;
    display: inline-block;
    line-height: 1;
}

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

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

/* Mobile responsive */
@media (max-width: 640px) {
    .pbm-separator-dot {
        margin: 0 14px;
    }
    .pbm-title-link {
        font-size: 12px;
    }
    .pbm-marquee-item {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .pbm-separator-dot {
        margin: 0 12px;
    }
}

.pbm-marquee-track {
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
}
