/* Slider Alanı Konteyneri */
.mis-stage {
    width: 100%;
    overflow: hidden;
    padding: 30px 0;
    visibility: visible !important; /* Yüklenirken gizlenmeyi önler */
}

/* Liste Yapısını Sıfırla (Numaraları Kaldırır) */
ol.mis-slider {
    list-style: none !important;
    list-style-type: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: flex !important;
    flex-wrap: nowrap;
    align-items: flex-start;
}

/* Her Bir Slide */
li.mis-slide {
    list-style: none !important;
    list-style-image: none !important;
    margin: 0 !important;
    padding: 0 15px;
    text-align: center;
    display: inline-block; /* JS yüklenene kadar yan yana tutar */
}

/* Konteyner ve Görselin Altındaki Yazı Hizalaması */
.mis-container {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-decoration: none !important;
    outline: none;
}

/* Yuvarlak Resim Ayarı */
.mis-container img {
    width: 220px !important;    /* Sabit genişlik */
    height: 220px !important;   /* Sabit yükseklik */
    border-radius: 50% !important; /* Tam daire yapar */
    object-fit: cover !important;  /* Resmin bozulmasını önler */
    border: 3px solid #f0f0f0;
    margin-bottom: 15px !important; /* Resim ile yazı arasındaki mesafe */
    display: block !important;
    background-color: #fff; /* Resim yüklenmezse içi beyaz kalsın */
}

/* Yazı (İsim) Stili */
.mis-container figcaption {
    display: block !important;
    width: 100% !important;
    margin: 0 !important;
}

.mis-container figcaption span {
    font-family: 'Arial', sans-serif;
    font-weight: bold;
    font-size: 14px;
    color: #333;
    text-transform: uppercase;
    display: block;
}