/* =========================================================
   TGH HOMEPAGE BLOG
   Thế Giới Hoa Hồng
   ========================================================= */

.tgh-home-blog {
	background: #f8f6f1;
	padding: 80px 20px;
	clear: both;
}

.tgh-home-blog-inner {
	max-width: 1220px;
	margin: 0 auto;
}

.tgh-home-blog-heading {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 30px;
	margin-bottom: 40px;
}

.tgh-home-blog-heading-text {
	max-width: 700px;
}

.tgh-home-blog-eyebrow {
	display: block;
	margin-bottom: 10px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 2px;
	line-height: 1.4;
	color: #b99a72;
	text-transform: uppercase;
}

.tgh-home-blog-heading h2 {
	margin: 0 0 12px;
	font-family: "Cormorant Garamond", Georgia, serif;
	font-size: 42px;
	line-height: 1.15;
	font-weight: 600;
	color: #19392a;
}

.tgh-home-blog-heading p {
	margin: 0;
	max-width: 650px;
	color: #777;
	font-size: 15px;
	line-height: 1.7;
}

.tgh-home-blog-view-all {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	flex-shrink: 0;
	color: #19392a;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.4;
	text-decoration: none;
	border-bottom: 1px solid #b99a72;
	padding-bottom: 5px;
	transition: color .2s ease, border-color .2s ease;
}

.tgh-home-blog-view-all:hover {
	color: #b99a72;
	border-color: #19392a;
}

.tgh-home-blog-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 24px;
}

.tgh-home-blog-card {
	display: flex;
	flex-direction: column;
	background: #fff;
	border: 1px solid #e8e3db;
	overflow: hidden;
	transition: transform .25s ease, box-shadow .25s ease;
}

.tgh-home-blog-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 12px 30px rgba(25, 57, 42, .10);
}

.tgh-home-blog-image {
	display: block;
	position: relative;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background: #eee9df;
}

.tgh-home-blog-image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .4s ease;
}

.tgh-home-blog-card:hover .tgh-home-blog-image img {
	transform: scale(1.04);
}

.tgh-home-blog-placeholder {
	display: flex;
	width: 100%;
	height: 100%;
	align-items: center;
	justify-content: center;
	font-size: 42px;
	background: #eee9df;
}

.tgh-home-blog-content {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 22px;
}

.tgh-home-blog-category {
	margin-bottom: 9px;
	color: #b99a72;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 1px;
	line-height: 1.4;
	text-transform: uppercase;
}

.tgh-home-blog-title {
	margin: 0 0 8px;
	font-family: "Cormorant Garamond", Georgia, serif;
	font-size: 24px;
	line-height: 1.25;
	font-weight: 600;
}

.tgh-home-blog-title a {
	color: #19392a;
	text-decoration: none;
	transition: color .2s ease;
}

.tgh-home-blog-title a:hover {
	color: #b99a72;
}

.tgh-home-blog-date {
	margin-bottom: 12px;
	color: #999;
	font-size: 12px;
	line-height: 1.5;
}

.tgh-home-blog-excerpt {
	margin: 0 0 18px;
	color: #666;
	font-size: 14px;
	line-height: 1.65;
}

.tgh-home-blog-read {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	margin-top: auto;
	color: #19392a;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.4;
	text-decoration: none;
	transition: color .2s ease;
}

.tgh-home-blog-read:hover {
	color: #b99a72;
}

@media (max-width: 1024px) {
	.tgh-home-blog-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.tgh-home-blog-heading h2 {
		font-size: 36px;
	}
}

@media (max-width: 767px) {
	.tgh-home-blog {
		padding: 55px 16px;
	}

	.tgh-home-blog-heading {
		display: block;
		margin-bottom: 28px;
	}

	.tgh-home-blog-heading h2 {
		font-size: 32px;
	}

	.tgh-home-blog-heading p {
		font-size: 14px;
	}

	.tgh-home-blog-view-all {
		margin-top: 18px;
	}

	.tgh-home-blog-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.tgh-home-blog-content {
		padding: 20px;
	}

	.tgh-home-blog-title {
		font-size: 23px;
	}
}

@media (max-width: 480px) {
	.tgh-home-blog {
		padding-right: 14px;
		padding-left: 14px;
	}

	.tgh-home-blog-heading h2 {
		font-size: 29px;
	}

	.tgh-home-blog-title {
		font-size: 22px;
	}
}
