.homeContentSection {
	margin-top: 36px;
}

.homeContentSectionHeader {
	display: flex;
	margin-bottom: 12px;
	align-items: center;
	justify-content: space-between;
	gap: 15px;
}

.homeContentSectionHeader .shopSectionTitle {
	margin: 0;
}

body:not(.adminPage) .homeContentSectionLink {
	display: inline-flex;
	align-items: center;
	flex: 0 0 auto;
	gap: 5px;
	color: #3a8a67;
	font-weight: 700;
}

.homeArticleSection .blogGrid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
}

body:not(.adminPage) .homeArticleSection .blogCardLink {
	display: block;
	min-height: 0;
}

.homeArticleSection .blogCardImageWrap {
	height: 180px;
	min-height: 0;
}

.homeArticleSection .blogCardContent {
	padding: 16px;
}

.homeArticleSection .blogCardContent h3 {
	font-size: 18px;
}

@media (max-width: 900px) {
	.homeArticleSection .blogGrid {
		grid-template-columns: minmax(0, 1fr);
	}

	body:not(.adminPage) .homeArticleSection .blogCardLink {
		display: grid;
		grid-template-columns: 180px minmax(0, 1fr);
		min-height: 150px;
	}

	.homeArticleSection .blogCardImageWrap {
		height: auto;
		min-height: 150px;
	}
}

@media (max-width: 520px) {
	.homeContentSectionHeader {
		align-items: flex-start;
	}

	body:not(.adminPage) .homeContentSectionLink {
		padding-top: 2px;
		font-size: 14px;
	}

	body:not(.adminPage) .homeArticleSection .blogCardLink {
		display: block;
	}

	.homeArticleSection .blogCardImageWrap {
		height: 180px;
		min-height: 0;
	}
}
