/* ─── Blog Lifestyle Template ─────────────────────────────────────────────────── */

.blog-lifestyle {
	width: 100%;
}

.blog-lifestyle-inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 55px 24px 80px;
}

/* ─── Hero ────────────────────────────────────────────────────────────────────── */

.blog-lifestyle-hero {
	margin-bottom: 52px;
}

.blog-lifestyle-hero__link {
	display: block;
	text-decoration: none;
}

.blog-lifestyle-hero__image {
	position: relative;
	height: 668px;
	overflow: hidden;
	background: #e8e8e3;
}

.blog-lifestyle-hero__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.5s ease;
}

.blog-lifestyle-hero__link:hover .blog-lifestyle-hero__img {
	transform: scale(1.03);
}

.blog-lifestyle-hero__placeholder {
	width: 100%;
	height: 100%;
	background: #d5d5cf;
}

.blog-lifestyle-hero__content {
	text-align: center;
}

.blog-lifestyle-hero__title {
	font-size: 32px;
	font-weight: 500;
	color: #00561b;
	margin: 0 auto;
	line-height: 1.4;
}

.blog-lifestyle-hero__title a {
	color: inherit;
	text-decoration: none;
}

.blog-lifestyle-hero__title a:hover {
	text-decoration: underline;
}

/* ─── Posts Grid ──────────────────────────────────────────────────────────────── */

.blog-lifestyle-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 50px;
	margin-bottom: 40px;
}

/* ─── Post Card ───────────────────────────────────────────────────────────────── */

.blog-lifestyle-card {
	background: #ffffff;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
	display: flex;
	flex-direction: column;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-lifestyle-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 36px rgba(0, 0, 0, 0.12);
}

/* ─── Card Image ──────────────────────────────────────────────────────────────── */

.blog-lifestyle-card__image-wrap {
	display: block;
	overflow: hidden;
	height: 340px;
	flex-shrink: 0;
}

.blog-lifestyle-card__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.4s ease;
}

.blog-lifestyle-card:hover .blog-lifestyle-card__image {
	transform: scale(1.05);
}

/* ─── Card Body ───────────────────────────────────────────────────────────────── */

.blog-lifestyle-card__body {
	padding: 24px 70px;
	display: flex;
	flex-direction: column;
	flex: 1;
	text-align: center;
}

.blog-lifestyle-card__title {
	font-size: 32px;
	font-weight: 500;
	margin: 0 0 10px;
	line-height: 1.4;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.blog-lifestyle-card__title a {
	color: #00561B;
	text-decoration: none;
}

.blog-lifestyle-card__title a:hover {
	text-decoration: underline;
}

.blog-lifestyle-card__excerpt {
	font-size: 16px;
	color: #000000;
	line-height: 1.65;
	margin: 0 0 auto;
	padding-bottom: 16px;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.blog-lifestyle-card__more {
	display: inline-block;
	font-size: 16px;
	font-weight: 500;
	color: #00561B;
	text-transform: uppercase;
	text-decoration: none;
	letter-spacing: 0.06em;
	transition: opacity 0.2s ease;
}

.blog-lifestyle-card__more:hover {
	opacity: 0.7;
}

/* ─── Pagination ──────────────────────────────────────────────────────────────── */

.blog-lifestyle-pagination {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 6px;
	flex-wrap: wrap;
}

.blog-lifestyle-pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 34px;
	height: 34px;
	padding: 0 10px;
	background: #ffffff;
	border: 1px solid #dddddd;
	border-radius: 4px;
	font-size: 13px;
	color: #444444;
	text-decoration: none;
	transition: color 0.2s ease, border-color 0.2s ease;
}

.blog-lifestyle-pagination .page-numbers:hover {
	color: #1f5133;
	border-color: #1f5133;
}

.blog-lifestyle-pagination .page-numbers.current {
	background: #1f5133;
	border-color: #1f5133;
	color: #ffffff;
	cursor: default;
}

.blog-lifestyle-pagination .page-numbers.dots {
	border: none;
	background: none;
	min-width: auto;
	padding: 0 4px;
}

/* ─── Featured Events Section ─────────────────────────────────────────────────── */

.blog-lifestyle-events {
	padding-top: 64px;
}

.blog-lifestyle-events__title {
	font-size: 32px;
	font-weight: 500;
	color: #00561B;
	text-align: center;
	margin: 0 0 36px;
}

.blog-lifestyle-events__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 120px;
}

/* ─── Event Card ──────────────────────────────────────────────────────────────── */

.blog-lifestyle-event-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-decoration: none;
	gap: 12px;
}

.blog-lifestyle-event-card__image-wrap {
	width: 100%;
	aspect-ratio: 1 / 1;
	border-radius: 14px;
	overflow: hidden;
	background: #e8e8e3;
}

.blog-lifestyle-event-card__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.4s ease;
}

.blog-lifestyle-event-card:hover .blog-lifestyle-event-card__image {
	transform: scale(1.05);
}

.blog-lifestyle-event-card__title {
	font-size: 14px;
	font-weight: 500;
	color: #1d1d1d;
	text-align: center;
	margin: 0;
	line-height: 1.45;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

/* ─── Responsive: Tablet (550–849px) ─────────────────────────────────────────── */

@media (max-width: 849px) {
	.blog-lifestyle-inner {
		padding: 32px 20px 60px;
	}

	.blog-lifestyle-hero__image {
		height: 300px;
	}

	.blog-lifestyle-hero__title {
		font-size: 22px;
	}

	.blog-lifestyle-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
	}

	.blog-lifestyle-events__grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 16px;
	}
}

/* ─── Responsive: Mobile (< 550px) ───────────────────────────────────────────── */

@media (max-width: 549px) {

	.blog-lifestyle-card__title {
		font-size: 25px;
	}

	.blog-lifestyle-inner {
		padding: 24px 16px 48px;
	}

	.blog-lifestyle-hero {
		margin-bottom: 32px;
	}

	.blog-lifestyle-hero__image {
		height: 220px;
		/* border-radius: 12px; */
	}

	.blog-lifestyle-hero__title {
		font-size: 18px;
	}

	.blog-lifestyle-grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.blog-lifestyle-card__image-wrap {
		height: 190px;
	}

	.blog-lifestyle-events__grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 12px;
	}

	.blog-lifestyle-events__title {
		font-size: 22px;
	}
}