/* Native News Slider - No dependencies */
.native-slider {
    position: relative;
    max-width: 100%;
    overflow: hidden;
}

.native-slider .slides-container {
    display: flex;
    transition: transform 0.5s ease-in-out;
    position: relative;
}

.native-slider .slide {
    min-width: 100%;
    box-sizing: border-box;
}

.native-slider .slide img {
    width: 100%;
    height: auto;
    display: block;
}

.native-slider .content {
    padding: 1rem;
    background: rgba(32, 32, 32, 0.95);
    font-size: 0.9rem;
    line-height: 1.4;
}

/* .native-slider .content em {
    font-weight: bold;
    display: block;
    margin-bottom: 0.5rem;
} */

/* Navigation Buttons */
.native-slider .nav-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.8);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s, background 0.2s;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.native-slider:hover .nav-button {
    opacity: 0.8;
}

.native-slider .nav-button:hover {
    opacity: 1 !important;
    background: rgba(255, 255, 255, 1);
}

.native-slider .nav-button.prev {
    left: 10px;
}

.native-slider .nav-button.next {
    right: 10px;
}

.native-slider .nav-button::before {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
}

.native-slider .nav-button.prev::before {
    border-width: 8px 12px 8px 0;
    border-color: transparent #333 transparent transparent;
    margin-left: -2px;
}

.native-slider .nav-button.next::before {
    border-width: 8px 0 8px 12px;
    border-color: transparent transparent transparent #333;
    margin-right: -2px;
}

/* Indicators */
.native-slider .indicators {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.native-slider .indicator {
    width: 32px;
    height: 3px;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    padding: 0;
}

.native-slider .indicator.active {
    background: rgba(255, 255, 255, 1);
    border: 2px solid rgba(255, 255, 255, 0.5);
    height: 5px;
}

.native-slider .indicator:hover {
    background: rgba(255, 255, 255, 0.8);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .native-slider .nav-button {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }
    
    .native-slider .content {
        font-size: 0.85rem;
        padding: 0.75rem;
    }
    
    .native-slider .indicators {
        bottom: 5px;
    }
    
    .native-slider .indicator {
        width: 24px;
        height: 2px;
    }
}
