.mle-home-blog {
	padding: 62px 0 68px;
	background: #ffffff;
	color: var(--uzeda-color-heading-black, #20232a);
	scroll-margin-top: 88px;
}

.mle-home-blog .home-container {
	width: 100%;
	max-width: var(--uzeda-container, 1280px);
	margin: 0 auto;
}

.mle-home-blog .home-section__header {
	max-width: 680px;
	margin: 0 0 26px;
	text-align: left;
}

.mle-home-blog .home-section__header h2 {
	margin: 0 0 12px;
	color: var(--uzeda-color-heading-black, #20232a);
	font-size: var(--home-type-h2);
	font-weight: 700;
	line-height: 1.18;
	letter-spacing: 0;
}

.mle-home-blog .home-section__header h2 span {
	color: var(--uzeda-color-accent-readable, #078a50);
}

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

.mle-home-blog .home-blog-card {
	display: flex;
	flex-direction: column;
	overflow: hidden;
	border: 1px solid rgba(15, 23, 42, 0.1);
	border-radius: 14px;
	background: #ffffff;
	box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
	transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.mle-home-blog .home-blog-card:hover,
.mle-home-blog .home-blog-card:has(:focus-visible) {
	transform: translateY(-2px);
	box-shadow: 0 16px 34px rgba(15, 23, 42, 0.1);
}

.mle-home-blog .home-blog-card__link {
	display: flex;
	flex-direction: column;
	height: 100%;
	color: inherit;
	text-decoration: none;
}

.mle-home-blog .home-blog-card__link:focus-visible {
	outline: 2px solid var(--uzeda-color-secondary, #00bf6a);
	outline-offset: -2px;
	border-radius: 14px;
}

.mle-home-blog .home-blog-card__image {
	aspect-ratio: 16 / 9;
	overflow: hidden;
	background: var(--uzeda-color-surface, #f5f7f8);
}

.mle-home-blog .home-blog-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.mle-home-blog .home-blog-card__content {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 16px;
}

.mle-home-blog .home-blog-card__category {
	margin: 0 0 8px;
	color: #067a46;
	font-size: 11px;
	font-weight: 650;
	line-height: 1.2;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.mle-home-blog .home-blog-card__title {
	display: -webkit-box;
	margin: 0 0 14px;
	overflow: hidden;
	color: var(--uzeda-color-heading-black, #20232a);
	font-size: 14.5px;
	font-weight: 750;
	line-height: 1.38;
	letter-spacing: 0;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	transition: color 0.2s ease;
}

.mle-home-blog .home-blog-card:hover .home-blog-card__title {
	color: var(--uzeda-color-accent-readable, #078a50);
}

.mle-home-blog .home-blog-card__excerpt {
	display: -webkit-box;
	margin: 0 0 auto;
	overflow: hidden;
	color: var(--uzeda-color-text, #4e5159);
	font-size: 12.5px;
	font-weight: 400;
	line-height: 1.5;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
}

.mle-home-blog .home-blog-card__meta {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-top: 12px;
	padding-top: 12px;
	border-top: 1px solid rgba(148, 163, 184, 0.25);
	color: #64748b;
	font-size: 11.5px;
	line-height: 1.3;
}

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

@media (max-width: 680px) {
	.mle-home-blog {
		padding: 38px 0 42px;
	}

	.mle-home-blog .home-container {
		width: 100%;
	}

	.mle-home-blog .home-section__header h2 {
		font-size: var(--home-type-h2-mobile);
	}

	.mle-home-blog .home-blog-grid {
		grid-template-columns: 1fr;
		gap: 14px;
	}

	.mle-home-blog .home-blog-card:nth-child(n + 3) {
		display: none;
	}

	.mle-home-blog .home-blog-card__content {
		padding: 14px;
	}

	.mle-home-blog .home-blog-card__excerpt {
		-webkit-line-clamp: 2;
	}
}
