/* 3. Ana Liste (Grid) Yapısı */
.akademik-liste {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(450px, 1fr));
    gap: 10px;
    max-width: 1100px;
    margin: 20px auto;
    padding: 15px;
}

/* 4. İnce Satır (Kart) Tasarımı */
.kategori-satir {
    display: flex;
    align-items: center;
    background: #ffffff;
    border: 1px solid var(--border-renk);
    border-radius: 8px;
    padding: 0 15px;
    text-decoration: none;
    color: #333;
    height: 52px; /* Sabit yükseklik düzen sağlar */
    transition: all 0.25s ease;
    overflow: hidden;
}

/* Zebra Çizgileri - Göz takibi için bir satır açık gri */
.kategori-satir:nth-child(odd) {
    background: var(--zebra-renk);
}

.kategori-satir:hover {
    background: var(--hover-bg);
    border-color: var(--ana-renk);
    transform: translateX(5px);
    box-shadow: 2px 2px 8px rgba(0,0,0,0.05);
}

/* 5. Kart İçeriği */
.satir-sol {
    display: flex;
    align-items: center;
    flex: 1;
    overflow: hidden;
}

.satir-ikon {
    font-size: 1.3rem;
    margin-right: 12px;
    min-width: 32px;
    text-align: center;
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.1));
}

.satir-baslik {
    font-size: 0.95rem;
    font-weight: 600;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis; /* Sığmayan yazıyı keser */
}

.satir-link {
    font-size: 0.7rem;
    font-weight: bold;
    color: #bdc3c7;
    margin-left: 10px;
    flex-shrink: 0;
}

/* Açıklamalar (Kullanılmıyor ama JS arama yapabilsin diye gizli kalsın) */
.satir-ozet {
    display: none;
}
