/* News Ticker Styles */
.hero-section {
    margin-top: 0;
}

.news-ticker-wrapper {
    background: linear-gradient(90deg, #c41e3a 0%, #003e78 30%, #003e78 100%);
    color: #fff;
    display: flex;
    align-items: center;
    height: 40px;
    overflow: hidden;
    position: relative;
    max-width: 1200px;
    margin: 20px auto 0;
}

.ticker-label {
    background: #c41e3a;
    padding: 0 20px;
    font-weight: bold;
    font-size: 14px;
    text-transform: uppercase;
    height: 100%;
    display: flex;
    align-items: center;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.ticker-label:after {
    content: "";
    position: absolute;
    right: -15px;
    top: 0;
    width: 0;
    height: 0;
    border-top: 20px solid transparent;
    border-bottom: 20px solid transparent;
    border-left: 15px solid #c41e3a;
    z-index: 1;
}

.ticker-content {
    flex: 1;
    overflow: hidden;
    position: relative;
    padding: 0 20px;
}

.ticker-scroll {
    display: inline-block;
    white-space: nowrap;
    animation: scroll-left 30s linear infinite;
    padding-left: 100%;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

.ticker-scroll:hover {
    animation-play-state: paused;
}

.ticker-time {
    background: rgba(255, 155, 0, 0.9);
    padding: 0 15px;
    font-size: 12px;
    font-style: italic;
    height: 100%;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

/* Hero Slider Styles */
.hero-slider-wrapper {
    position: relative;
    overflow: hidden;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 450px;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    pointer-events: none;
}

.hero-slide.active {
    opacity: 1;
    pointer-events: auto;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-card {
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
}

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.6) 50%, transparent 100%);
    padding: 40px 20px 20px;
    color: #fff;
}

/* Slider Navigation Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    font-size: 40px;
    width: 50px;
    height: 50px;
    cursor: pointer;
    z-index: 10;
    transition: background 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.slider-arrow:hover {
    background: rgba(0, 0, 0, 0.8);
}

.slider-prev {
    left: 10px;
}

.slider-next {
    right: 10px;
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.slider-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background 0.3s;
}

.slider-dots .dot.active,
.slider-dots .dot:hover {
    background: #fff;
}

.sub-nav a {
    color: #666;
    text-decoration: none;
    white-space: nowrap;
}

.sub-nav a:hover,
.sub-nav a.active {
    color: var(--accent-orange);
    font-weight: bold;
}