/* Brand Colors */

.bg-brand-dark { background-color: #1a3b5c; }
.text-brand-dark { color: #1a3b5c; }

.bg-brand-accent { background-color: #d32f2f; }
.text-brand-accent { color: #d32f2f; }


/* Breaking News Ticker */
#breaking-bar {
    position: relative;
}

.breaking-track {
    display: inline-flex;
    animation: ticker 30s linear infinite;
}

@keyframes ticker {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

/* Hover Effects */
a:hover {
    text-decoration: none;
}
.heroSwiper .swiper-pagination-bullet {
    background: white;
    opacity: 0.7;
}
.heroSwiper .swiper-pagination-bullet-active {
    background: #ef4444;
}
