/* Ana Konteyner (Masaüstü) */
.nom-manset-wrapper {
    position: relative;
    overflow: hidden;
    background: #f0f0f0;
    width: 700px;
    height: 460px;
    margin-left: auto;
    margin-right: auto;
}

/* Haber Öğeleri (Resim + Başlık) */
.nom-haber-alani .nom-haber-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.nom-haber-alani .nom-haber-item.active {
    display: block;
    opacity: 1;
}

.nom-haber-alani .nom-haber-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: none;
    box-shadow: none;
}

/* Transparan Başlık (İSTEDİĞİN PADDING) */
.nom-haber-item .nom-baslik {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    margin: 0;
    padding: 60px 15px 55px 15px; 
    color: #fff;
    box-sizing: border-box;
    line-height: 1.3;
}

/* Numaralı Navigasyon (Masaüstü) */
.nom-numara-nav {
    position: absolute;
    z-index: 10;
    bottom: 0; 
    left: 0;   
    width: 100%; 
    background-color: rgba(0, 0, 0, 0.7); 
    display: flex; 
}

/* Numaralı Navigasyon Öğeleri (Masaüstü) */
.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;
    transition: background-color 0.2s ease;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 0; 
}

/* Son numaradaki çizgiyi kaldır */
.nom-numara-nav li:last-child {
    border-right: none;
}

/* İleri-Geri Oklar (Hover ile gelen) */
.nom-slider-nav {
    position: absolute;
    top: 50%; 
    transform: translateY(-50%); 
    background-color: rgba(0, 0, 0, 0.5); 
    color: white; 
    border: none;
    width: 40px;
    height: 40px;
    line-height: 40px; 
    text-align: center;
    padding: 0;
    font-size: 20px;
    cursor: pointer;
    z-index: 15; 
    border-radius: 50%; /* Yuvarlak butonlar */
    transition: background-color 0.3s ease, opacity 0.3s ease; 
    user-select: none; 
    opacity: 0; 
    pointer-events: none;
}

.nom-slider-nav:hover {
    background-color: rgba(0, 0, 0, 0.8); 
}

/* Manşet üzerine gelince butonları göster */
.nom-manset-wrapper:hover .nom-slider-nav {
    opacity: 1;
    pointer-events: auto;
}

.nom-prev-btn {
    left: 15px; 
}

.nom-next-btn {
    right: 15px; 
}

/* ###################################################### */
/* MOBİL UYUMLULUK (FİNAL) - GÜNCELLENDİ (Kişisel Class) */
/* ###################################################### */

@media (max-width: 767px) {

    /* YENİ KURAL: Jannah bloğunun kendi boşluklarını ez! */
    .benim-full-mansetim {
        padding-left: 0 !important;
        padding-right: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    /* Ana Konteyner: Artık hilesiz, temiz 100% */
    .nom-manset-wrapper {
        width: 100%; /* Sadece 100% */
        height: 280px;
        margin-left: 0;
        margin-right: 0;
        
        /* Eski hileleri temizle */
        max-width: none;
        position: relative;
        left: auto;
        transform: none;
    }

    /* Başlık: Mobilde boşlukları (padding) azalt */
    .nom-haber-item .nom-baslik {
        padding: 40px 10px 45px 10px; 
        line-height: 1.2; 
    }
    
    /* Numara Barı (Mobil Noktalar) */
    .nom-numara-nav {
        justify-content: center; /* Noktaları ortala */
        padding: 8px 0; /* Nokta barına yüksek-lik ver */
        height: auto;
    }

    /* Numara Öğeleri -> Noktalara Dönüşsün */
    .nom-numara-nav li {
        font-size: 0; /* '1, 2, 3' yazılarını gizle */
        flex-grow: 0; 
        flex-basis: auto;
        width: 10px; 
        height: 10px; 
        border-radius: 50%;
        border-right: none;
        padding: 0;
        margin: 0 4px;
        
        /* Aktif olmayan nokta rengi (soluk beyaz) */
        background-color: rgba(255, 255, 255, 0.4); 
    }
    /* Aktif olan (kırmızı) stil dinamik CSS'den gelecek */


    /* Oklar: Mobilde daha küçük */
    .nom-slider-nav {
        width: 30px;
        height: 30px;
        line-height: 30px;
        font-size: 16px;
    }
    
    .nom-prev-btn {
        left: 10px; 
    }

    .nom-next-btn {
        right: 10px; 
    }
}