/* TIN TỨC */
.tin-tuc .post-item {
	padding: 12px;
}

.tin-tuc .col-inner {
	height: 100%;
}

.tin-tuc .box {
	background: var(--color-white);
	border: 1px solid #ededed;
	border-radius: 15px;
	overflow: hidden;
	box-shadow: 0 8px 25px rgba(0, 0, 0, .06);
	transition: .3s ease;
	height: 100%;
}

.tin-tuc .box:hover {
	transform: translateY(-6px);
	box-shadow: 0 18px 35px rgba(0, 0, 0, .12);
}

/* Ảnh */
.tin-tuc .box-image {
	overflow: hidden;
}

.tin-tuc .image-cover {
	border-radius: 18px 18px 0 0;
}

.tin-tuc .box-image img {
	transition: .4s;
}

.tin-tuc .box:hover img {
	transform: scale(1.08);
}

/* Nội dung */
.tin-tuc .box-text {
	padding: 15px;
}

.tin-tuc .box-text-inner {
	display: flex;
	flex-direction: column;
	height: 100%;
}

/* Thời gian */
.tin-tuc .post-meta {
	font-size: 14px;
	color: #888;
	margin-bottom: 10px;
	font-weight: 500;
	display: flex;
	align-items: center;
}

.tin-tuc .post-meta::before {
	content: "\f133";
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	color: var(--color-main);
	margin-right: 8px;
	font-size: 15px;
}

/* Tiêu đề */
.tin-tuc .post-title {
	margin: 0 0 10px;
}

.tin-tuc .post-title a {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	font-size: 20px;
	font-weight: 700;
	line-height: 1.45;
	color: var(--color-black);
}

.tin-tuc .box:hover .post-title a {
	color: var(--color-main);
}

/* Mô tả */
.tin-tuc .from_the_blog_excerpt {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	font-size: 15px;
	color: #666;
	line-height: 1.8;
}

/* Divider */
.tin-tuc .is-divider {
	display: none;
}

/* Nút */
.tin-tuc .button.is-link {
	padding: 0;
	margin: 0;
	border: none;
	background: none;
	color: var(--color-main);
	font-size: 15px;
	font-weight: 700;
	text-transform: none;
	text-align: left;
}

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

.tin-tuc .button.is-link:hover {
	color: #c94d00;
}

.tin-tuc .button.is-link:hover::after {
	margin-left: 14px;
}

/* Tablet */

@media (max-width:991px) {

	.tin-tuc .box-text {
		padding: 18px;
	}

	.tin-tuc .post-title a {
		font-size: 20px;
	}

	.tin-tuc .from_the_blog_excerpt {
		font-size: 14px;
	}

}

/* Mobile */
@media (max-width:767px) {
	.tin-tuc .post-item {
		padding: 8px;
	}

	.tin-tuc .box {
		border-radius: 14px;
	}

	.tin-tuc .image-cover {
		border-radius: 14px 14px 0 0;
	}

	.tin-tuc .box-text {
		padding: 16px;
	}

	.tin-tuc .post-meta {
		font-size: 13px;
	}

	.tin-tuc .post-meta::before {
		font-size: 13px;
	}

	.tin-tuc .post-title a {
		font-size: 18px;
	}

	.tin-tuc .from_the_blog_excerpt {
		font-size: 14px;
		-webkit-line-clamp: 3;
	}

	.tin-tuc .button.is-link {
		font-size: 14px;
	}
}