/* Editör Seçimi Slider Container - Otomatik Slider */
.editor-pick-slider-container {
    position: relative;
    height: 230px;
    overflow: hidden;
    border-radius: var(--card-border-radius);
}

.editor-pick-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Editör Seçimi Kartı - Smooth Transitions */
.editor-pick-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: var(--card-border-radius);
    overflow: hidden;
    border: 1px solid var(--card-border-color);
    background-color: var(--card-rgba);
    transition: all 0.8s ease;
    opacity: 0;
    transform: translateX(100%);
    z-index: 1;
}

.editor-pick-card.active {
    opacity: 1;
    transform: translateX(0);
    z-index: 2;
}

.editor-pick-card.prev {
    opacity: 0;
    transform: translateX(-100%);
    z-index: 1;
}

/* Otomatik geçiş animasyonu */
.editor-pick-card.sliding-out {
    opacity: 0;
    transform: translateX(-100%);
}

.editor-pick-card.sliding-in {
    opacity: 1;
    transform: translateX(0);
}

/* Editör Seçimi İndikatörleri - Daha büyük ve belirgin */
.editor-pick-indicators {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
    background: rgba(0, 0, 0, 0.3);
    padding: 8px 15px;
    border-radius: 20px;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.editor-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.editor-indicator.active {
    background-color: var(--primary-color);
    transform: scale(1.3);
    box-shadow: 0 0 8px var(--primary-color);
}

/* Progress ring for active indicator */
.editor-indicator.active::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    width: 16px;
    height: 16px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    border-top-color: transparent;
    animation: progress-ring 7s linear infinite;
}

@keyframes progress-ring {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.editor-indicator:hover {
    background-color: var(--primary-color);
    opacity: 0.8;
    transform: scale(1.1);
}

/* Responsive Düzenlemeler */
@media (max-width: 992px) {
    .featured-announcement-container {
        grid-template-columns: 1fr;
    }
    
    .editor-pick-slider-container {
        height: auto;
        min-height: 250px;
    }
    
    .editor-pick-card {
        position: relative;
        transform: none;
        opacity: 1;
        display: none;
    }
    
    .editor-pick-card.active {
        display: block;
    }
    
    .editor-pick-card a {
        flex-direction: column;
    }
    
    .editor-pick-image, .editor-pick-content {
        width: 100%;
    }
    
    .editor-pick-image {
        height: 200px;
    }
    
    .editor-pick-indicators {
        position: relative;
        margin-top: 15px;
        left: auto;
        transform: none;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .editor-pick-slider-container {
        height: auto;
    }
    
    .editor-pick-image {
        height: 180px;
    }
    
    .editor-pick-content {
        padding: 15px;
    }
    
    .editor-pick-title {
        font-size: 20px;
    }
    
    .editor-pick-series-title {
        font-size: 24px;
    }
}