/* Yazarlar Bloğu CSS */
.td_block_yazarlar_custom {
    margin-bottom: 48px;
}

.td_block_yazarlar_custom .td-authors-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.td_block_yazarlar_custom .td-author-item {
    display: flex;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid #e6e6e6;
    transition: all 0.3s ease;
}

.td_block_yazarlar_custom .td-author-item:last-child {
    border-bottom: none;
}

.td_block_yazarlar_custom .td-author-item:hover {
    background: #f9f9f9;
    padding-left: 10px;
}

.td_block_yazarlar_custom .td-author-avatar {
    flex-shrink: 0;
    margin-right: 20px;
}

.td_block_yazarlar_custom .td-author-avatar img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #f0f0f0;
    transition: border-color 0.3s ease;
}

.td_block_yazarlar_custom .td-author-item:hover .td-author-avatar img {
    border-color: #4db2ec;
}

.td_block_yazarlar_custom .td-author-info {
    flex: 1;
}

.td_block_yazarlar_custom .td-author-name {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.td_block_yazarlar_custom .td-author-name a {
    color: #222;
    text-decoration: none;
    transition: color 0.3s ease;
}

.td_block_yazarlar_custom .td-author-name a:hover {
    color: #4db2ec;
}

.td_block_yazarlar_custom .td-author-latest {
    font-size: 15px;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 767px) {
    .td_block_yazarlar_custom .td-author-avatar {
        margin-right: 15px;
    }
    
    .td_block_yazarlar_custom .td-author-avatar img {
        width: 60px;
        height: 60px;
    }
    
    .td_block_yazarlar_custom .td-author-name {
        font-size: 18px;
    }
    
    .td_block_yazarlar_custom .td-author-latest {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .td_block_yazarlar_custom .td-author-avatar img {
        width: 50px;
        height: 50px;
    }
    
    .td_block_yazarlar_custom .td-author-name {
        font-size: 16px;
    }
    
    .td_block_yazarlar_custom .td-author-latest {
        font-size: 13px;
    }
}
