/* Ẩn mô tả section bài viết*/
.entry-summary.clearfix {
    display: none;
}

/* Ẩn mô tả bài viết ngoài trang chủ*/
.latest-posts-slider .entry-summary {
  display: none;
}

/* Ẩn date bài viết gần đây*/
.wp-block-latest-posts__post-date {
    display: none;
}

/* Giới hạn dòng - hiệu ứng over*/
.wp-block-latest-posts__post-title {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: all 0.3s ease;
}

.wp-block-latest-posts__post-title:hover {
  -webkit-line-clamp: unset; /* Hiển thị toàn bộ văn bản */
  white-space: normal; /* Văn bản kéo dài */
  text-overflow: unset; /* Loại bỏ dấu ba chấm */
}

/* Ẩn hình ảnh bài biết, trên tất cả các bài viết */
body.single-post .entry-thumbnail {
  display: none;
}