/* --- Temel Yapı (Bozulmadı) --- */
.single-blog-outer-con { min-height: 400px; position: relative; width: 100%; }
.ajax-loader { position: absolute; inset: 0; background: rgba(255, 255, 255, 0.8); display: flex; align-items: center; justify-content: center; z-index: 100; }
.d-none { display: none !important; }
.is-loading-content { opacity: 0.3; transform: scale(0.98); transition: all 0.3s ease; }

/* --- Masaüstü (768px+) --- */
@media (min-width: 768px) {
    .mob-nav { display: flex; flex-wrap: wrap; justify-content:space-evenly; list-style: none; padding: 0; border-bottom: 2px solid #f0f0f0; margin-bottom: 30px; }
    .mob-item { margin-right: 20px; }
    .mob-link { display: block; padding: 10px 7px; font-size:16px; cursor: pointer; font-weight: 600; color: #333; text-decoration: none !important; position: relative; }
    .mob-link.is-active { color: #d63031; }
    .mob-link.is-active::after { content: ''; position: absolute; bottom: -2px; left: 0; width: 100%; height: 2px; background: #d63031; }
}

/* --- Mobil (Hizalama Düzenlendi) --- */
@media (max-width: 767px) {
    .mob-nav {
        display: flex !important;
        flex-direction: column !important; /* YAN YANA GELMEYİ ENGELLER, ALT ALTA DİZER */
        list-style: none;
        padding: 0;
        margin: 0;
        border: 2px solid #eee;
        border-radius: 10px;
        background: #fff;
    }

    /* Kapalıyken sadece aktif olanı, açıkken hepsini göster */
    .mob-nav:not(.is-open) .mob-item:not(.is-active) { display: none; }
    .mob-nav.is-open .mob-item { display: block; border-bottom: 1px solid #f5f5f5; }

    .mob-link {
        display: flex !important;
        align-items: center;
        justify-content: space-between; /* METİN SOLDA, İKON SAĞDA */
        padding: 15px 20px;
        font-weight: 600;
        color: #333;
        text-decoration: none !important;
        white-space: normal; /* METNİN KUTU İÇİNDE KIRILMASINI SAĞLAR */
        width: 100%;
    }

    .mob-link::after {
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        font-size: 18px;
        margin-left: 15px;
        flex-shrink: 0; /* İKONUN SIKIŞMASINI ENGELLER */
    }

    /* İkon İçerikleri */
    .mob-link.is-active::after { content: "\f0c9"; color: #d63031; }
    .mob-nav.is-open .mob-link.is-active::after { content: "\f00d"; }
    
    .mob-link.is-active { background: #f8fbff; color: #d63031; }
}