/* ========================================
   ASTROGUNDEM MAKALE SİSTEMİ STİLLERİ
   Tek Sütunlu Liste + Medium-style Okuma
   ======================================== */

/* Google Fonts - Medium okuma deneyimi için */
@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Inter:wght@400;500;600;700;800&display=swap');

/* Yüklenme Spinner */
.yukleniyor-spinner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 5rem 2rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.1rem;
}

.yukleniyor-spinner i {
    font-size: 3.5rem;
    color: #8b5cf6;
    margin-bottom: 1.5rem;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ========================================
   ASTROGUNDEM LAYOUT - ANA + SIDEBAR
   ======================================== */

/* Container override - cardları ortala */
.articles-section .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.astrogundem-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 3rem;
    max-width: none;
    margin: 0;
    padding: 0;
}

.makale-ana-alan {
    min-width: 0;
}

/* ========================================
   TEK SÜTUNLU MAKALE LİSTESİ
   ======================================== */

.makale-konteyneri {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    margin: 4rem auto;
}

/* ========================================
   YATAY MAKALE KARTI - HABER KART STİLİ
   ======================================== */

.makale-karti {
    display: flex;
    flex-direction: row;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    height: auto; /* let cards grow with content */
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.makale-karti:hover {
    transform: translateY(-6px);
    border-color: rgba(139, 92, 246, 0.4);
    box-shadow: 0 12px 36px rgba(139, 92, 246, 0.25);
    background: rgba(255, 255, 255, 0.1);
}

/* İÇERİK ALANI - SOL */
.kart-icerik {
    flex: 1 1 auto;
    padding: 2rem 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    min-width: 0; /* Flexbox overflow fix */
}

/* FOTOĞRAF ALANI - SAĞ */
.kart-foto {
    width: 40%;
    max-width: 420px;
    min-width: 200px;
    height: auto;
    object-fit: cover;
    object-position: center;
    flex-shrink: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

/* KATEGORİ BADGE */
.kart-kategori {
    display: inline-block;
    align-self: flex-start;
    padding: 0.5rem 1rem;
    background: rgba(139, 92, 246, 0.2);
    border: 1px solid rgba(139, 92, 246, 0.4);
    border-radius: 6px;
    font-family: 'Higuen Serif', serif;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #a78bfa;
}

/* BAŞLIK */
.kart-baslik {
    font-family: 'Higuen Serif', serif;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.35;
    color: #fff;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s ease;
}

.makale-karti:hover .kart-baslik {
    color: #a78bfa;
}

/* ÖZET METNİ */
.kart-ozet {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* META BİLGİLERİ */
.kart-meta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.45);
    margin-top: auto; /* Alt tarafa yapıştır */
    padding-top: 0.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.kart-yazar,
.kart-tarih {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.kart-yazar span,
.kart-tarih span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.kart-meta > div {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.kart-meta i {
    color: #8b5cf6;
    font-size: 0.9rem;
}

/* DEVAMINI OKU BUTONU */
.devamini-oku-btn {
    align-self: flex-start;
    padding: 0.7rem 1.5rem;
    background: transparent;
    border: 1.5px solid rgba(139, 92, 246, 0.4);
    border-radius: 8px;
    color: #a78bfa;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
}

.devamini-oku-btn:hover {
    background: rgba(139, 92, 246, 0.2);
    border-color: #8b5cf6;
    color: #fff;
    transform: translateX(4px);
}

.devamini-oku-btn i {
    transition: transform 0.3s ease;
    font-size: 0.85rem;
}

.devamini-oku-btn:hover i {
    transform: translateX(3px);
}

/* ========================================
   MEDIUM-STYLE OKUMA MODALI
   ======================================== */

.makale-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(12px);
    z-index: 10000;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    overflow-y: auto;
    animation: modalFadeIn 0.35s ease-out;
    padding: 3rem 0;
}

@keyframes modalFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.makale-modal-icerik {
    position: relative;
    background: #0a0520;
    max-width: 920px;
    width: 96%;
    margin: 0 auto;
    border-radius: 12px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.4);
    animation: modalSlideIn 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: visible;
    padding-bottom: 3rem;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-60px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Modal Kapatma Butonu */
.modal-kapat-btn {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
}

.modal-kapat-btn:hover {
    background: rgba(239, 68, 68, 0.9);
    border-color: rgba(239, 68, 68, 0.5);
    transform: rotate(90deg) scale(1.1);
}

/* Modal Fotoğraf - En Üstte */
#modal-foto {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
    box-shadow: 
        0 -8px 20px rgba(0, 0, 0, 0.08) inset,
        0 8px 20px rgba(0, 0, 0, 0.08) inset;
}

/* Modal Header - Başlık ve Metadata */
.modal-header {
    max-width: 100%;
    margin: 0;
    padding: 2.5rem 3rem 2rem;
    background: linear-gradient(135deg, #0a0520 0%, #1a0d3e 100%);
    border-bottom: 1px solid rgba(139, 92, 246, 0.2);
}

#modal-baslik {
    font-family: 'Inter', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.15;
    color: #ffffff;
    margin: 0 0 2rem 0;
    text-align: center;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

/* Metadata Satırı */
.modal-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    padding-bottom: 0.5rem;
}

.modal-meta-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.95rem;
    color: #fff;
    font-family: 'Inter', sans-serif;
    transition: color 0.2s ease;
}

.modal-meta-item:hover {
    color: #f0f0f0;
}

.modal-meta-item i {
    font-size: 1rem;
    color: #fff;
    opacity: 0.9;
}

.modal-meta-item span {
    font-weight: 500;
    color: #fff;
}

/* Okuma süresini gizle */
.modal-meta-item:last-child,
.modal-meta-divider:last-of-type {
    display: none;
}

.modal-meta-divider {
    width: 4px;
    height: 4px;
    background: #d1d5db;
    border-radius: 50%;
}

/* Modal İçerik Gövdesi - Medium Okuma Deneyimi */
.modal-govde {
    font-family: 'Lora', 'Georgia', serif;
    font-size: 1.25rem;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.9);
    max-width: 740px;
    margin: 0 auto 3rem;
    padding: 3rem 3rem 0;
}

/* Quill İçerik Formatlaması */
.modal-govde.ql-editor {
    padding: 3rem 3rem 0;
    color: rgba(255, 255, 255, 0.9);
}

/* Quill renk sınıflarını destekle */
.modal-govde .ql-color-white { color: #ffffff !important; }
.modal-govde .ql-color-red { color: #e60000 !important; }
.modal-govde .ql-color-orange { color: #f90 !important; }
.modal-govde .ql-color-yellow { color: #ff0 !important; }
.modal-govde .ql-color-green { color: #008a00 !important; }
.modal-govde .ql-color-blue { color: #06c !important; }
.modal-govde .ql-color-purple { color: #93f !important; }

/* Quill arka plan renkleri */
.modal-govde .ql-bg-black { background-color: #000 !important; }
.modal-govde .ql-bg-red { background-color: #e60000 !important; }
.modal-govde .ql-bg-orange { background-color: #f90 !important; }
.modal-govde .ql-bg-yellow { background-color: #ff0 !important; }
.modal-govde .ql-bg-green { background-color: #008a00 !important; }
.modal-govde .ql-bg-blue { background-color: #06c !important; }
.modal-govde .ql-bg-purple { background-color: #93f !important; }

.modal-govde p {
    margin-bottom: 2rem;
    line-height: 1.85;
}

/* Fallback içeriği (CORS veya erişim hatası durumunda gösterilen kutu) */
.fallback-icerik {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
    padding: 1.5rem;
    border-radius: 8px;
    text-align: left;
    color: rgba(255,255,255,0.9);
}
.fallback-icerik p { margin: 0; }
.fallback-icerik .btn-ac-newtab {
    display:inline-block;
    padding:0.6rem 1rem;
    background: linear-gradient(135deg,#8b5cf6,#6d28d9);
    color:#fff;
    border-radius:6px;
    text-decoration:none;
    font-weight:700;
}
.fallback-icerik .btn-kopyala {
    padding:0.5rem 0.9rem;
    background:transparent;
    border:1px solid rgba(255,255,255,0.12);
    color:rgba(255,255,255,0.9);
    border-radius:6px;
    cursor:pointer;
}

/* If an iframe must be inserted elsewhere, ensure it adapts to modal dark background */
.modal-govde iframe {
    background: transparent;
    min-height: 420px;
    width: 100%;
    border: none;
}

.modal-govde h1,
.modal-govde h2,
.modal-govde h3 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    line-height: 1.3;
    margin-top: 3.5rem;
    margin-bottom: 1.5rem;
}

.modal-govde h1 {
    font-size: 2.5rem;
}

.modal-govde h2 {
    font-size: 2.1rem;
}

.modal-govde h3 {
    font-size: 1.7rem;
}

.modal-govde strong {
    font-weight: 700;
}

.modal-govde em {
    font-style: italic;
}

.modal-govde img {
    max-width: 100%;
    height: auto;
    margin: 3rem 0;
    border-radius: 8px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.modal-govde blockquote {
    border-left: 5px solid #8b5cf6;
    padding-left: 2rem;
    margin: 3rem 0;
    font-style: italic;
    font-size: 1.35rem;
    line-height: 1.75;
    background: #f8f8f8;
    padding: 2rem;
    border-radius: 6px;
}

.modal-govde ul,
.modal-govde ol {
    margin: 2rem 0;
    padding-left: 2.5rem;
}

.modal-govde li {
    margin-bottom: 1.2rem;
    line-height: 1.85;
}

.modal-govde a {
    text-decoration: underline;
    text-decoration-thickness: 1px;
    transition: all 0.2s ease;
}

.modal-govde a:hover {
    text-decoration-thickness: 2px;
}

.modal-govde code {
    background: #f4f4f4;
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
    font-family: 'Monaco', 'Courier New', monospace;
    font-size: 0.92em;
    border: 1px solid #e0e0e0;
}

.modal-govde pre {
    padding: 2rem;
    border-radius: 8px;
    overflow-x: auto;
    margin: 2.5rem 0;
    border: 1px solid #e0e0e0;
}

.modal-govde pre code {
    background: none;
    border: none;
    padding: 0;
}

/* Modal Loading State */
.modal-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 5rem 2rem;
    color: #666;
}

.modal-loading i {
    font-size: 3.5rem;
    color: #8b5cf6;
    margin-bottom: 1.5rem;
}

/* Boş/Hata Mesajları */
.bos-mesaj,
.hata-mesaj {
    text-align: center;
    padding: 5rem 2rem;
    color: rgba(255, 255, 255, 0.6);
}

.bos-mesaj i,
.hata-mesaj i {
    font-size: 4.5rem;
    color: rgba(139, 92, 246, 0.5);
    margin-bottom: 2rem;
}

.bos-mesaj h3,
.hata-mesaj h3 {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 1rem;
}

.bos-mesaj p,
.hata-mesaj p {
    font-size: 1.15rem;
}

.yenile-btn {
    margin-top: 2rem;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #8b5cf6, #6d28d9);
    border: none;
    border-radius: 8px;
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    transition: all 0.3s ease;
}

.yenile-btn:hover {
    background: linear-gradient(135deg, #a78bfa, #8b5cf6);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
}

/* ========================================
   RESPONSİVE TASARIM - TEMİZ KURALLAR
   ======================================== */

@media (max-width: 1024px) {
    .makale-konteyneri {
        padding: 0 1.5rem;
        gap: 2rem;
    }
    
    .makale-karti {
        height: 500px;
    }
    
    .kart-foto {
        width: 420px;
        min-width: 420px;
        height: 500px;
    }
    
    .kart-icerik {
        padding: 2.5rem 2.5rem;
        gap: 1.2rem;
    }
    
    .kart-baslik {
        font-size: 1.75rem;
    }
    
    .kart-ozet {
        font-size: 1rem;
        -webkit-line-clamp: 3;
    }
}

@media (max-width: 768px) {
    .makale-konteyneri {
        gap: 1.5rem;
        padding: 0 1rem;
        margin: 2rem auto;
    }
    
    .makale-karti {
        flex-direction: column;
        height: auto;
    }
    
    .kart-foto {
        width: 100%;
        min-width: 100%;
        height: 280px;
        order: -1; /* Fotoğrafı üste al */
    }
    
    .kart-icerik {
        padding: 2rem;
        gap: 1rem;
        order: 1; /* İçeriği alta al */
    }
    
    .kart-kategori {
        font-size: 0.7rem;
        padding: 0.5rem 1rem;
    }
    
    .kart-baslik {
        font-size: 1.5rem;
        -webkit-line-clamp: 2;
        line-clamp: 2;
    }
    
    .kart-ozet {
        font-size: 0.95rem;
        -webkit-line-clamp: 3;
        line-clamp: 3;
    }
    
    .kart-meta {
        gap: 1.2rem;
        font-size: 0.85rem;
    }
    
    .devamini-oku-btn {
        width: 100%;
        justify-content: center;
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
    }
    
    /* Modal Responsive */
    .makale-modal-icerik {
        width: 98%;
        margin: 2vh auto;
        border-radius: 0;
    }
    
    #modal-baslik {
        font-size: 2.2rem;
        padding: 2.5rem 2rem 1.5rem;
    }
    
    #modal-foto {
        max-height: 350px;
    }
    
    .modal-govde {
        font-size: 1.15rem;
        line-height: 1.8;
        padding: 0 2rem;
        margin: 2.5rem auto 4rem;
    }
    
    .modal-govde.ql-editor {
        padding: 0 2rem;
    }
    
    .modal-govde h1 {
        font-size: 2rem;
    }
    
    .modal-govde h2 {
        font-size: 1.7rem;
    }
    
    .modal-govde h3 {
        font-size: 1.4rem;
    }
    
    .modal-kapat-btn {
        width: 45px;
        height: 45px;
        top: 15px;
        right: 15px;
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .kart-foto {
        height: 200px;
    }
    
    .kart-baslik {
        font-size: 1.25rem;
    }
    
    .kart-ozet {
        font-size: 0.95rem;
    }
    
    #modal-baslik {
        font-size: 1.8rem;
        padding: 2rem 1.5rem 1rem;
    }
    
    .modal-govde {
        font-size: 1.05rem;
        padding: 0 1.5rem;
    }
    
    .modal-govde.ql-editor {
        padding: 0 1.5rem;
    }
    
    .modal-govde h1 {
        font-size: 1.7rem;
    }
    
    .modal-govde h2 {
        font-size: 1.5rem;
    }
    
    .devamini-oku-btn {
        width: 100%;
        justify-content: center;
    }
}



/* ========================================
   KRONOLOJİK ARŞİV SIDEBAR
   ======================================== */

.sidebar-widget {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.sidebar-widget:hover {
    border-color: rgba(139, 92, 246, 0.3);
    box-shadow: 0 8px 24px rgba(139, 92, 246, 0.15);
}

.widget-title {
    font-family: 'Higuen Serif', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.widget-title i {
    color: #8b5cf6;
    font-size: 1.2rem;
}

/* Kronoloji Liste */
.kronoloji-liste {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.kronoloji-yil {
    margin-bottom: 1.5rem;
}

.kronoloji-yil-baslik {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1rem;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(212, 175, 55, 0.2));
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 0.8rem;
}

.kronoloji-yil-baslik:hover {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.3), rgba(212, 175, 55, 0.3));
    transform: translateX(4px);
}

.kronoloji-yil-icon {
    font-size: 1rem;
    color: #8b5cf6;
    transition: transform 0.3s ease;
}

.kronoloji-yil-baslik.acik .kronoloji-yil-icon {
    transform: rotate(90deg);
}

.kronoloji-yil-text {
    font-family: 'Higuen Serif', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    flex: 1;
}

.kronoloji-yil-sayi {
    font-size: 0.85rem;
    color: #d4af37;
    background: rgba(212, 175, 55, 0.2);
    padding: 0.3rem 0.7rem;
    border-radius: 12px;
    font-weight: 600;
}

/* Ay Listesi */
.kronoloji-ay-liste {
    display: none;
    flex-direction: column;
    gap: 0.8rem;
    padding-left: 1.2rem;
    border-left: 2px solid rgba(139, 92, 246, 0.3);
    margin-left: 0.5rem;
}

.kronoloji-ay-liste.acik {
    display: flex;
}

/* Ay Grubu (Ay Başlığı + Makale Listesi) */
.kronoloji-ay-grup {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

/* Ay Başlığı */
.kronoloji-ay-baslik {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.7rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    gap: 0.5rem;
}

.kronoloji-ay-baslik:hover {
    background: rgba(139, 92, 246, 0.2);
    transform: translateX(4px);
}

.kronoloji-ay-baslik.acik {
    background: rgba(139, 92, 246, 0.2);
}

.kronoloji-ay-adi {
    font-size: 0.95rem;
    color: #e0e0e0;
    font-weight: 500;
    flex: 1;
}

.kronoloji-ay-sayi {
    font-size: 0.8rem;
    color: #8b5cf6;
    background: rgba(139, 92, 246, 0.2);
    padding: 0.2rem 0.6rem;
    border-radius: 10px;
    font-weight: 600;
}

.kronoloji-ay-chevron {
    font-size: 0.75rem;
    color: #8b5cf6;
    transition: transform 0.3s ease;
}

/* Makale Listesi (Ay altında) */
.kronoloji-makale-liste {
    display: none;
    flex-direction: column;
    gap: 0.4rem;
    padding-left: 1rem;
    margin-top: 0.3rem;
}

.kronoloji-makale-liste.acik {
    display: flex;
}

/* Makale İtem */
.kronoloji-makale-item {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    padding: 0.6rem 0.8rem;
    background: rgba(0, 0, 0, 0.2);
    border-left: 2px solid rgba(139, 92, 246, 0.3);
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.kronoloji-makale-item:hover {
    background: rgba(139, 92, 246, 0.15);
    border-left-color: #8b5cf6;
    transform: translateX(4px);
}

.kronoloji-makale-item i {
    font-size: 0.75rem;
    color: #8b5cf6;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.kronoloji-makale-baslik {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.kronoloji-makale-item:hover .kronoloji-makale-baslik {
    color: #fff;
}

/* Yükleniyor */
.kronoloji-yukleniyor {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    color: #8b5cf6;
}

.kronoloji-yukleniyor i {
    font-size: 2rem;
    animation: spin 1s linear infinite;
}

/* Popüler Konular */
.popular-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
}

.popular-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(139, 92, 246, 0.15);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 20px;
    color: #8b5cf6;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.popular-tag:hover {
    background: rgba(139, 92, 246, 0.3);
    border-color: #8b5cf6;
    color: #fff;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 1024px) {
    .astrogundem-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .kronoloji-sidebar {
        position: static;
        max-height: none;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
    }

    .sidebar-widget {
        margin-bottom: 0;
    }
}
