/* Hero slider: ok navigasyonu ve pagination dots */

.tv-hero-section .hero-slider {
    position: relative;
}

/* Sol / sağ ok butonları */
.tv-hero-section .hero-slider-nav {
    position: absolute;
    inset: 0;
    z-index: 5;
    pointer-events: none;
    display: block;
    gap: 0;
}

.tv-hero-section .hero-slider-nav .array-prev,
.tv-hero-section .hero-slider-nav .array-next {
    pointer-events: auto;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 54px;
    height: 54px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background-color: rgba(6, 17, 83, 0.28);
    color: var(--white-color);
    font-size: 20px;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    cursor: pointer;
    transition: all 0.35s ease;
}

.tv-hero-section .hero-slider-nav .array-prev {
    left: 24px;
}

.tv-hero-section .hero-slider-nav .array-next {
    /* Video alanının solunda kalsın */
    right: 220px;
}

.tv-hero-section .hero-slider-nav .array-prev:hover,
.tv-hero-section .hero-slider-nav .array-next:hover {
    background-color: var(--theme-color) !important;
    border-color: var(--theme-color);
    color: var(--white-color);
}

/* Alt orta pagination dots */
.tv-hero-section .hero-slider-dots {
    position: absolute;
    left: 50%;
    bottom: 28px;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
}

.tv-hero-section .hero-slider-dots .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    margin: 0 7px !important;
    background-color: rgba(255, 255, 255, 0.45);
    opacity: 1;
    border-radius: 50%;
    transition: all 0.35s ease;
}

.tv-hero-section .hero-slider-dots .swiper-pagination-bullet-active {
    background-color: var(--theme-color);
    position: relative;
}

.tv-hero-section .hero-slider-dots .swiper-pagination-bullet-active::before {
    position: absolute;
    top: -6px;
    left: -6px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 1px solid var(--theme-color);
    background-color: transparent;
    content: "";
}

@media (max-width: 1199px) {
    .tv-hero-section .hero-slider-nav .array-next {
        right: 180px;
    }
}

@media (max-width: 991px) {
    .tv-hero-section .hero-slider-nav .array-prev,
    .tv-hero-section .hero-slider-nav .array-next {
        width: 44px;
        height: 44px;
        font-size: 16px;
    }

    .tv-hero-section .hero-slider-nav .array-prev {
        left: 14px;
    }

    .tv-hero-section .hero-slider-nav .array-next {
        right: 14px;
    }
}

@media (max-width: 767px) {
    .tv-hero-section .hero-slider-nav .array-prev,
    .tv-hero-section .hero-slider-nav .array-next {
        top: auto;
        bottom: 70px;
        transform: none;
    }

    .tv-hero-section .hero-slider-dots {
        bottom: 18px;
    }
}

@media (max-width: 575px) {
    .tv-hero-section .hero-slider-nav .array-prev,
    .tv-hero-section .hero-slider-nav .array-next {
        bottom: 58px;
        width: 40px;
        height: 40px;
    }
}
