/* Ana Konteyner */
.nom-manset-wrapper {
    position: relative;
    overflow: hidden;
    width: 700px;
    height: 460px;
    margin: 0 auto;
    background: #f0f0f0;
    /* Swiper için gerekli */
    user-select: none;
}

/* Slide İçeriği */
.swiper-slide {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.nom-haber-link {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    color: #fff;
    text-decoration: none;
}

/* Resim Ayarları */
.nom-slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Spot ve Başlık Wrapper */
.nom-baslik-wrapper {
    position: absolute;
    bottom: 0px;
    left: 0;
    width: 100%;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
    box-sizing: border-box;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.7) 40%, rgba(0, 0, 0, 0.5) 70%, rgba(0, 0, 0, 0) 100%);
    padding-top: 100px;
    padding-bottom: 60px;
}

.nom-spot-baslik {
    display: inline-block;
    background: linear-gradient(to right, rgba(175,0,0,0.95), rgba(175,0,0,0.8) 50%, rgba(175,0,0,0) 100%);
    color: #FFFFFF;
    padding: 6px 15px;
    font-size: 14px;
    font-weight: bold;
    line-height: 1.2;
    text-shadow: 0 1px 1px rgba(0,0,0,0.4);
    margin-bottom: 5px;
    margin-left: 15px;
    max-width: calc(100% - 30px);
}

.nom-baslik {
    width: 100%;
    margin: 0;
    padding: 0 15px;
    box-sizing: border-box;
    line-height: 1.3;
    color: #fff;
}

/* Progress Bar (Yeni JS Mantığı ile uyumlu) */
.nom-progress-container {
    position: absolute; bottom: 36px; left: 0; width: 100%; height: 4px;
    z-index: 20; background: rgba(255,255,255,0.3);
}
.nom-progress-bar {
    width: 0%; height: 100%;
    /* transition: width 0.1s linear; -> Swiper çok sık güncellediği için linear akış sağlar */
    transition: none;
}

/* Numaralı Navigasyon */
.nom-numara-nav {
    position: absolute; z-index: 25; bottom: 0; left: 0; width: 100%;
    background-color: rgba(0,0,0,0.7); display: flex; margin: 0; padding: 0; list-style: none;
}
.nom-numara-nav li {
    flex-grow: 1; flex-basis: 0; line-height: 1.5; text-align: center;
    cursor: pointer; font-weight: bold; font-size: 14px;
    border-right: 1px solid rgba(255,255,255,0.2); padding: 8px 0;
    position: relative; transition: background-color 0.2s;
}
.nom-numara-nav li:last-child { border-right: none; }

/* Thumbnail Tooltip */
.nom-thumb-tooltip {
    position: absolute; bottom: 140%; left: 50%;
    transform: translateX(-50%) translateY(10px);
    width: 120px; height: 80px; background: #fff; border: 2px solid #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5); border-radius: 4px;
    opacity: 0; visibility: hidden; transition: all 0.2s ease; z-index: 30; pointer-events: none;
}
.nom-thumb-tooltip img { width: 100%; height: 100%; object-fit: cover; display: block; }
.nom-thumb-tooltip::after {
    content: ''; position: absolute; top: 100%; left: 50%; margin-left: -6px;
    border-width: 6px; border-style: solid; border-color: #fff transparent transparent transparent;
}
.nom-numara-nav li:hover .nom-thumb-tooltip { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }

/* Oklar (Swiper default oklarını özelleştiriyoruz) */
.nom-slider-nav {
    width: 40px; height: 40px;
    background-color: rgba(0,0,0,0.5); color: #fff;
    border-radius: 50%; z-index: 25;
    opacity: 0; transition: all 0.3s;
}
.nom-slider-nav:after { font-size: 18px; font-weight: bold; }
.nom-manset-wrapper:hover .nom-slider-nav { opacity: 1; }
.swiper-button-prev { left: 15px; }
.swiper-button-next { right: 15px; }
.nom-slider-nav:hover { background-color: rgba(0,0,0,0.8); }

/* Diğer Bileşenler */
.nom-kategori-etiketi { position: absolute; top: 15px; left: 15px; z-index: 15; background: rgba(183,28,28,0.9); color: #fff; padding: 4px 8px; border-radius: 3px; font-size: 12px; font-weight: bold; text-transform: uppercase; }
.nom-video-ikonu { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); z-index: 15; font-size: 60px; color: rgba(255,255,255,0.85); text-shadow: 0 0 15px rgba(0,0,0,0.7); }

/* MOBİL UYUMLULUK */
@media (max-width: 767px) {
    .nom-manset-wrapper { width: 100%; height: 280px; }

    .nom-baslik-wrapper {
        bottom: 0;
        padding-top: 70px;
        padding-bottom: 30px;
    }

    .nom-baslik { padding: 0 10px; line-height: 1.2; }
    .nom-spot-baslik { font-size: 12px; padding: 5px 10px; margin-bottom: 3px; margin-left: 0px; }

    .nom-numara-nav li { font-size: 0px; padding: 8px 0; }
    .nom-slider-nav { width: 30px; height: 30px; }
    .nom-slider-nav:after { font-size: 14px; }
    .nom-thumb-tooltip { display: none !important; }
    .nom-progress-container { bottom: 0; height: 3px; background: transparent; }
}
