/* SAĞ YARIM EKRANDA sabit arka plan */
.bg-cover-ultrawide {
    background-repeat: no-repeat !important;
    background-position: right center !important;
    background-size: contain !important; /* taşırmaz, yaymaz, orantılı */
    background-color: #9f9f9f !important;

    /* RESMİN SADECE SAĞ YARIYA SIKILMASI */
    background-size: 50% auto !important;  /* ekranın %50'si = tam yarı */
    background-position: right center !important;
}

/* Tema overlay’i kapatıyoruz (sağ-sol blok ekliyordu) */
.highlight-left:after,
.highlight-left:before {
    display: none !important;
}
/* Mobil görünüm */
@media only screen and (max-width: 768px) {
    .bg-cover-ultrawide {
        /* Mobilde resim TAM GENİŞLİK olsun */
        background-size: cover !important;
        background-position: center center !important;

        /* Sağ yarıya sıkıştırmayı kapatıyoruz */
        background-size: auto 100% !important; /* yükseklik kadar büyüsün */
        background-repeat: no-repeat !important;
    }
}
