/* CARD DỊCH VỤ */
.tin_tuc .box-blog-post {
    border-radius: 16px;
    overflow: hidden;
    background: #f5f7f5;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
}

.tin_tuc .box-blog-post:hover {
    transform: translateY(-3px);
}

/* ẢNH TRÊN */
.tin_tuc .box-image img {
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
}

/* PHẦN TEXT */
.tin_tuc .box-text {
    padding: 25px;
}

/* ẨN DIVIDER VUÔNG */
.tin_tuc .is-divider {
    display: none;
}

/* TIÊU ĐỀ */
.tin_tuc .post-title {
    font-size: 18px;
    color: var(--color-black);
}

.tin_tuc .post-title a {
	display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 2.6em;
}

/* Hover đổi màu tiêu đề */
.tin_tuc .box-blog-post:hover .post-title a {
    color: var(--color-chinh);
}

/* MÔ TẢ */
.tin_tuc .from_the_blog_excerpt {
    color: var(--color-black);
    font-size: 14px;
    line-height: 1.6;
}

/* NÚT CHI TIẾT */
.tin_tuc .button.is-link {
    background: none;
    color: var(--color-chinh);
    font-size: 15px;
	margin-top: 0 !important;
}

.tin_tuc .button.is-link:after {
    content: "\f061";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin-left: 8px;
}

.img_anh img {
	border-radius: 8px;
}

/* RESPONSIVE */
@media (max-width:768px) {
    .tin_tuc .box-text {
        padding: 20px;
    }

    .tin_tuc .post-title {
        font-size: 18px;
    }

    .tin_tuc .from_the_blog_excerpt {
        font-size: 14px;
    }

}