/* You can add custom CSS here if Tailwind CSS is not enough */

/* --- Breaking News Ticker Styles for Horizontal Scroll --- */
.breaking-news-scroll {
    width: 100%;
    overflow: hidden;
}
.breaking-news-scroll ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    animation: scroll-left 40s linear infinite;
    width: max-content;
}
.breaking-news-scroll ul:hover {
    animation-play-state: paused;
}
.breaking-news-scroll ul li a {
    display: flex;
    align-items: center;
    padding: 0 1.5rem;
    white-space: nowrap;
}
@keyframes scroll-left {
    0% { transform: translateX(0%); }
    100% { transform: translateX(-50%); }
}

/* --- Swiper.js Slideshow Styles --- */
.swiper-slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
    color: white;
    transition: background-color 0.3s ease;
}

.swiper-slide a:hover .swiper-slide-content {
    background: linear-gradient(to top, rgba(29, 78, 216, 0.85), transparent); /* Blue gradient on hover */
}

.swiper-button-next, .swiper-button-prev {
    color: #ffffff !important;
    background-color: rgba(0, 0, 0, 0.3);
    width: 44px !important;
    height: 44px !important;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}
.swiper-button-next:hover, .swiper-button-prev:hover {
    background-color: rgba(0, 0, 0, 0.5);
}
.swiper-button-next:after, .swiper-button-prev:after {
    font-size: 18px !important;
    font-weight: bold;
}
.swiper-pagination-bullet-active {
    background-color: #ffffff !important;
}
