/* Antbirlik Haber Slider v1.4 */
.antbirlik-slider-wrap {
    position: relative;
    width: 100%;
    overflow: hidden;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, sans-serif;
}

.antbirlik-swiper-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.antbirlik-slide {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
}

.antbirlik-slide-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.antbirlik-slider-wrap.effect-parallax .swiper-slide-active .antbirlik-slide-bg {
    transform: scale(1.04);
}

.antbirlik-fallback-bg {
    background: linear-gradient(135deg, #7928ca 0%, #ff0080 100%);
    width: 100%;
    height: 100%;
}

/* Katman Seçenekleri: Gradient & Blur */
.antbirlik-slide-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    pointer-events: none;
    z-index: 1;
    transition: background 0.4s ease, backdrop-filter 0.4s ease;
}

.antbirlik-slide-overlay.type-blur {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(10, 10, 15, 0.65) 100%);
    mask-image: linear-gradient(to bottom, transparent 0%, black 60%);
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 60%);
}

/* İçerik Bloğu: Üstte Tarih, Altta Başlık (Görseldeki Birebir Düzen) */
.antbirlik-slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 34px 44px;
    box-sizing: border-box;
    z-index: 2;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    max-width: 85%;
}

.antbirlik-date {
    font-size: 13.5px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.2px;
    text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}

.antbirlik-title {
    margin: 0;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.25;
    color: #ffffff;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
    transition: opacity 0.2s ease;
}

.antbirlik-slide-content:hover .antbirlik-title {
    opacity: 0.9;
}

/* Sayaç: Varsayılan (500 Medium / 600 Semi-Bold) + Panelden Tam Kontrol */
.antbirlik-counter-badge {
    position: absolute;
    top: 20px;
    right: 25px;
    background: rgba(255, 255, 255, 0.92);
    color: #111111;
    font-size: 13px;
    padding: 4px 12px;
    border-radius: 20px;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    display: inline-flex;
    align-items: center;
    gap: 2px;
}

.antbirlik-counter-badge .antbirlik-current {
    font-weight: 500;
}

.antbirlik-counter-badge .antbirlik-divider {
    font-weight: 400;
    opacity: 0.5;
    margin: 0 1px;
}

.antbirlik-counter-badge .antbirlik-total {
    font-weight: 600;
}

/* Navigasyon Butonları */
.antbirlik-nav-buttons {
    position: absolute;
    bottom: 25px;
    right: 25px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 10;
}

.antbirlik-btn {
    background: rgba(255, 255, 255, 0.92);
    border: none;
    outline: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #111111;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.antbirlik-btn:hover {
    background: #ffffff;
    transform: scale(1.08);
}

/* Mobil / Tablet Uyumluluğu */
@media (max-width: 768px) {
    .antbirlik-slide-content {
        padding: 20px 22px;
        gap: 6px;
        max-width: 82%;
    }
    .antbirlik-date {
        font-size: 12px;
    }
    .antbirlik-title {
        font-size: 19px;
    }
    .antbirlik-counter-badge {
        top: 15px;
        right: 15px;
        font-size: 11px;
    }
    .antbirlik-nav-buttons {
        bottom: 15px;
        right: 15px;
    }
    .antbirlik-btn {
        width: 32px;
        height: 32px;
    }
}
