.custom-hashtag-section-list {
    /* Đây là container chứa danh sách các box hashtag */
    display: flex;
    flex-direction: column;
    gap: 4px; /* Khoảng cách nhỏ giữa các item */
    border-radius: 8px;
	margin-top:0;
	padding-right: 12px;
	
    overflow: hidden; /* Giúp border-radius hoạt động tốt */
}
.custom-post-section-grid {
	height: 100%;
}
.hashtag-item-box {
    display: flex;
    justify-content: space-between; /* Đẩy nội dung và mũi tên ra hai bên */
    align-items: center;
    background-color: #fff; /* Nền trắng cho từng box */
    text-decoration: none;
    color: #333; /* Màu chữ mặc định */
    border-bottom: 1px solid #eee; /* Đường viền nhẹ giữa các item */
    transition: background-color 0.2s, transform 0.2s;
	margin-block: 4px;
    padding-inline: 0px 12px;
    padding-block: 8px;
    border-radius: 4px;
}

/* Loại bỏ đường viền cuối cùng */
.hashtag-item-box:last-child {
    border-bottom: none;
}

.hashtag-item-box:hover {
	padding-inline: 8px 12px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.hashtag-item-box:hover .hashtag-arrow{
	 transform: translateX(5px); /* Hiệu ứng dịch chuyển nhẹ sang phải */
}
.hashtag-content {
    display: flex;
    flex-direction: column; /* Đặt tên và số lượng bài viết theo chiều dọc */
	padding-right: 12px;
}

/* Kiểu dáng cho Hashtag (Tên Category) */
.hashtag-name {
    font-size: 16px;
	font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: #059669; /* Màu xanh đậm cho hashtag */
    line-height: 1.2;
    margin-bottom: 3px;
}

/* Kiểu dáng cho Số lượng bài viết */
.hashtag-count {
    font-size: 14px;
    font-weight: 400;
    color: #666;
	font-family: "Space Mono", monospace;
}

/* Kiểu dáng cho Mũi tên */
.hashtag-arrow {
    font-size: 20px;
    font-weight: 700;
    color: #059669; /* Màu mũi tên khớp với màu hashtag */
}

/* Nhắm trực tiếp vào thẻ h3 nằm trong block có class icon- */
[class^="icon-"] h3.uagb-heading-text {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
}

[class^="icon-"] h3.uagb-heading-text::before {
    font-family: dashicons !important;
    display: inline-block !important;
    font-size: 28px !important;
    width: 30px;
    height: 30px;
    color: #54B435; /* Màu xanh brightStdio */
    flex-shrink: 0;
     /* Khoảng cách nhỏ với chữ */
	
}

/* Định nghĩa mã icon cho từng class khi apply vào h3 */
.icon-star h3.uagb-heading-text,
.icon-new h3.uagb-heading-text,
.icon-location h3.uagb-heading-text,
.icon-food h3.uagb-heading-text,
.icon-culture h3.uagb-heading-text,
.icon-guide h3.uagb-heading-text,
.icon-news-travel h3.uagb-heading-text,
.icon-video h3.uagb-heading-text,
.icon-news-general h3.uagb-heading-text,
.icon-like h3.uagb-heading-text{
	display:flex;
	align-items:center;
}
.icon-star h3.uagb-heading-text::before { content: "\f154" !important;margin-right: 8px; font-family: "dashicons" !important;}
.icon-new h3.uagb-heading-text::before { content: "\f488" !important;margin-right: 8px; font-family: "dashicons" !important;}
.icon-location h3.uagb-heading-text::before { content: "\f230" !important;margin-right: 8px; font-family: "dashicons" !important;}
.icon-food h3.uagb-heading-text::before { content: "\f511" !important;margin-right: 8px; font-family: "dashicons" !important;}
.icon-culture h3.uagb-heading-text::before { content: "\f307" !important; margin-right: 8px; font-family: "dashicons" !important;}
.icon-guide h3.uagb-heading-text::before { content: "\f330" !important; margin-right: 8px; font-family: "dashicons" !important;}
.icon-news-travel h3.uagb-heading-text::before { content: "\f319" !important; margin-right: 8px; font-family: "dashicons" !important;}
.icon-video h3.uagb-heading-text::before { content: "\f126" !important;margin-right: 8px; font-family: "dashicons" !important;}
.icon-news-general h3.uagb-heading-text::before { content: "\f119" !important; margin-right: 8px; font-family: "dashicons" !important;}
.icon-like h3.uagb-heading-text::before { content: "\f487" !important; margin-right: 8px; font-family: "dashicons" !important;}
