How to delete the blog content and "read me" button in the blog list page

please see the image, I want to delete the things inside the circle.

I am using debut theme.

shop url: https://puppycanva.com/blogs/blogs

Hello,
Add this css at the bottom of
Online Store->Theme->Edit code->Assets->theme.css.liquid

.template-blog #shopify-section-blog-template .article-listing .rte {
    display: none !important;
}
.template-blog #shopify-section-blog-template .article-listing ul.list--inline.article__meta-buttons {
    display: none !important;
}

hi, your code works.

there is a line between each blog titles

can you delete that too?

Add this css

#shopify-section-blog-template ul.blog-list-view li.border-top {
    border-top: none;
}