.ty-video-slider-wrapper {
    padding: 40px 20px 20px 20px;
}

/* Ana slider konteynerine göreceli konumlandırma eklendi */
.ty-video-slider {
    position: relative;
}

.ty-video-slider .content-wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.ty-video-slider .text-content {
    flex: 1;
    padding-right: 20px;
}

.ty-video-slider .video-content {
    flex: 1;
    position: relative;
    margin-bottom: 40px;
}

.ty-video-slider .main-title {
    margin-bottom: 30px;
    line-height: 1.2;
}

.ty-video-slider .firma-adi {
    margin: 20px 0;
    line-height: 1.3;
}

.ty-video-slider .aciklama {
    line-height: 1.6;
    margin-bottom: 30px;
}

.ty-video-slider .video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.ty-video-slider .video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease;
}

.ty-video-slider .video-overlay:hover {
    background-color: rgba(0, 0, 0, 0.3);
}

.ty-video-slider .video-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ty-video-slider .play-button {
    position: relative;
    padding: 15px;
    border: none;
    background: transparent;
    cursor: pointer;
    transition: transform 0.3s ease;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ty-video-slider .play-button:hover {
    transform: scale(1.1);
}

.ty-video-slider .play-button i {
    color: #fff;
    font-size: 24px;
}

.ty-video-slider .video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.ty-video-slider .swiper-pagination {
/* position: relative; */
    bottom: 0;
    left: auto; /* Değiştirildi */
    width: auto; /* Değiştirildi */
    text-align: center;
    /* margin-top: 20px; */
    z-index: 10;
}

.ty-video-slider .swiper-pagination-bullet {
    transition: all 0.3s ease;
    border-radius: 5px;
    width: 40px;
    height: 10px;
    margin: 0 6px;
}


@media (max-width: 768px) {
    .ty-video-slider .content-wrapper {
        flex-direction: column-reverse;
        gap: 20px;
    }

    .ty-video-slider .text-content {
        padding-right: 0;
        text-align: left;
        width: 100%;
    }

    .ty-video-slider .video-content {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .ty-video-slider-wrapper {
        padding: 20px 15px;
    }
}

/* Pagination Wrapper Stilleri */
.swiper-pagination-wrapper {
    display: flex; 
	justify-content: center;
    pointer-events: none; 
    z-index: 5; 
    /* Konumlandırma (position, width, left, bottom, margin-top) PHP kontrolleri tarafından yönetiliyor */
    text-align: center; /* İç pagination'ı ortalamak için */
}


/* İç Pagination Stilleri (Wrapper içinde) */
.swiper-pagination-wrapper .swiper-pagination {
pointer-events: auto;
    position: relative; 
    width: auto; 
    display: block; 
    margin: 0 auto !important; /* Dış marginleri sıfırla VE blok elementini ortala */
    padding: 0 !important;
    left: auto !important; 
    transform: none !important;
	pointer-events: auto;
    text-align: center; /* Ek bir güvenlik için tutulabilir */
    bottom: auto; 
    margin-top: 0; 
    z-index: 10;
}

.ty-video-slider .swiper-pagination-bullet {
    transition: all 0.3s ease;
    border-radius: 5px;
    width: 40px;
    height: 10px;
    margin: 0 6px;
} 