/**
 * Icerik listeleri — themes/haber61_v2/frontend_layout.blade.php
 *
 * Editorde ne gorunuyorsa yayinda da AYNI (WYSIWYG). Sayilar sayi kalir,
 * harfliler harf kalir; hicbir tip zorlanmaz, liste kendi type/list-style-type
 * degerine gore gosterilir.
 *
 * ONEMLI: Bu dosya layout'ta @yield('custom_css') / @stack('custom_css')
 * SATIRLARINDAN SONRA yuklenmelidir. post.css icindeki ayni secicileri
 * bilerek ezer; sira degisirse liste tipleri bozulur.
 */

.article-content ul,
.article-content ol {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.article-content ul { list-style-type: disc; }
.article-content ul ul { list-style-type: circle; }
.article-content ul ul ul { list-style-type: square; }

.article-content ol { list-style-type: decimal; }
.article-content ol[type="a"] { list-style-type: lower-alpha; }
.article-content ol[type="A"] { list-style-type: upper-alpha; }
.article-content ol[type="i"] { list-style-type: lower-roman; }
.article-content ol[type="I"] { list-style-type: upper-roman; }

.article-content li { margin-bottom: 0.5rem; }
