/* Özel Haberler Slider - Düzeltmeler */
.sponsored-slider-wrapper {
    position: relative;
    width: 100%;
    padding: 0;
}

.sponsored-slider-wrapper .ad-slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    z-index: 10;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.sponsored-slider-wrapper .ad-slider-nav:hover {
    background: #000;
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.sponsored-slider-wrapper .ad-slider-nav.prev {
    left: 10px;
}

.sponsored-slider-wrapper .ad-slider-nav.next {
    right: 10px;
}

.sponsored-slider-container {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
    background: #f0f0f0;
}

.sponsored-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    pointer-events: none;
}

.sponsored-slide.active {
    opacity: 1;
    pointer-events: auto;
}

.sponsored-slide a {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    text-decoration: none;
}

.sponsored-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sponsored-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 100%);
    padding: 30px 20px;
    color: white;
}

.sponsored-overlay h4 {
    font-size: 18px;
    line-height: 1.4;
    color: white;
    margin: 0;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.ad-slider-pagination {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-top: 15px;
    padding: 0 15px 15px;
    flex-wrap: wrap;
}

.ad-dot {
    background: #ddd;
    border: none;
    width: 28px;
    height: 28px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 600;
    color: #666;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ad-dot:hover {
    background: #999;
    color: white;
}

.ad-dot.active {
    background: #000;
    color: white;
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .sponsored-slider-container {
        height: 300px;
    }
    
    .sponsored-overlay {
        padding: 20px 15px;
    }
    
    .sponsored-overlay h4 {
        font-size: 16px;
    }
}

