/* Ana Kapsayıcı: Slider'ın bulunduğu alanı sınırlar */
.mhm-haber-manset-kapsayici {
    position: relative;
    max-width: 100%;
    /* Gerekirse burayı sabitleyin: height: 550px; */
    height: 550px; 
    margin: 0 auto 20px auto;
    overflow: hidden;
    background-color: #000; /* Görsel yüklenmezse siyah arkaplan */
}

/* Slider Alanı: Tüm öğeleri yatayda tutar */
.mhm-manset-slider {
    display: flex;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.55, 0.085, 0.68, 0.53); 
    width: 100%;
    /* Çakışmayı önlemek için temel hizalama */
    align-items: flex-start; 
}

/* Slider Öğesi: Her bir manşet görselini temsil eder */
.mhm-manset-ogle {
    min-width: 100%;
    box-sizing: border-box;
    flex-shrink: 0;
    height: 100%;
    /* İç flex ayarı, görselin tam oturmasını sağlar */
    display: flex; 
}

/* Büyük Görsel Alanı (Arkaplan) */
.manset-gorsel-buyuk {
    width: 100%;
    height: 100%;
    background-size: cover !important; /* Görselin kapsayıcıyı kaplamasını zorlar */
    background-position: center center !important;
    position: relative;
    display: flex;
    align-items: flex-end; /* İçerik altta olacak */
    padding-bottom: 70px; /* Navigasyon çubuğunun altında kalmaması için boşluk */
}

/* Arkaplan Overlay (Karartma) */
.manset-gorsel-buyuk::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* Alttan üste doğru karartma */
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 60%);
    z-index: 2; /* Yazıların altında kalsın */
}

/* Başlık ve İçerik Alanı */
.manset-icerik-orta {
    position: relative;
    z-index: 3; /* Overlay'in üstünde görünmesi için */
    color: white;
    padding: 30px 5%;
    max-width: 900px;
    width: 100%;
    box-sizing: border-box;
    text-align: left; /* Yazı hizalaması */
}

.manset-icerik-orta h1 {
    margin: 0;
}

.manset-icerik-orta h1 a {
    color: white;
    text-decoration: none;
    font-size: 38px;
    font-weight: 700;
    line-height: 1.3;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
    transition: color 0.2s;
}

.manset-icerik-orta h1 a:hover {
    color: #fdd835; /* Sarı vurgu rengi */
}

/* Ok Navigasyon Alanı */
.mhm-manset-oklar {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 10px;
    z-index: 10;
    pointer-events: none;
}

.mhm-manset-oklar span {
    background: rgba(0, 0, 0, 0.4);
    color: white;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 32px;
    line-height: 1;
    pointer-events: auto;
    user-select: none;
    transition: background-color 0.2s, color 0.2s;
    border-radius: 5px;
}

.mhm-manset-oklar span:hover {
    background: rgba(0, 0, 0, 0.7);
    color: #fdd835;
}

/* -------------------------------------------------------------------------- */
/* NAVİGASYON VE REKLAM ÇUBUĞU STİLLERİ */
/* -------------------------------------------------------------------------- */
.mhm-manset-navigasyon-cubugu {
    position: absolute;
    bottom: 0; /* Sayfanın altına yerleştir */
    left: 50%;
    transform: translateX(-50%);
    z-index: 15;
    background-color: rgba(0, 0, 0, 0.8);
    padding: 8px 10px;
    border-radius: 5px 5px 0 0;
    display: flex;
    gap: 5px;
    /* Çubuğun görselde göründüğü gibi yatayda uzamasını sağlar */
    white-space: nowrap; 
}

.mhm-manset-navigasyon-cubugu span {
    width: 25px;
    height: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #666; 
    color: white;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 3px;
    transition: background-color 0.2s, color 0.2s;
}

/* Aktif Sayı */
.mhm-manset-navigasyon-cubugu span.active {
    background-color: #fdd835; /* Sarı renk */
    color: #333;
}

/* Reklam Alanı Stili */
.mhm-manset-navigasyon-cubugu .nav-reklam {
    background-color: #d90000; /* Kırmızı renk */
    cursor: default; 
}

/* Mobil Uyum */
@media (max-width: 900px) {
    .mhm-haber-manset-kapsayici {
        height: 400px; 
    }
    .manset-icerik-orta h1 a {
        font-size: 28px;
    }
}

@media (max-width: 500px) {
    .mhm-haber-manset-kapsayici {
        height: 300px; 
    }
    .manset-icerik-orta h1 a {
        font-size: 20px;
    }
    /* Navigasyon çubuğunu mobil cihazlarda küçült */
    .mhm-manset-navigasyon-cubugu span {
        width: 18px;
        height: 18px;
        font-size: 10px;
    }
}