.blog-list-item {
	display: block;
	max-height: 556px;
	height: 100%;
	position: relative;
	overflow: hidden;
}
.blog-list-item > img {
	width: 100%;
	min-height: 556px;
	height: 100%;
	object-fit: cover;
}
.blog-list-item .blog-list-item-text-label {
	position: absolute;
	bottom: 0;
	width: calc(100% - 48px);
	min-height: 132px;
	margin: 0 24px 24px;
	padding: 18px 14px;
	background-color: #fff;
}
.blog-list-item .blog-list-item-date {
	margin-bottom: 14px;
	font-size: 14px;
	color: #afb0b3;
}
.blog-list-item .blog-list-item-name {
	margin-bottom: 4px;
	font-size: 14px;
	line-height: 18px;
	color: #333;
	text-transform: uppercase;
}
.blog-list-item .blog-list-item-hashtag {
	font-size: 14px;
	color: #aaa;
}
.blog-list-item .blog-list-item-preview-text {
	min-height: 0;
	max-height: 0;
	margin: 0;
	margin-top: 0;
	font-size: 12px;
	font-weight: 400;
	line-height: 150%;
	overflow: hidden;
	transition: min-height .2s ,max-height .2s, margin-top .2s;
}
.blog-list-item:hover .blog-list-item-preview-text {
	min-height: 72px;
	max-height: 72px;
	margin-top: 18px;
}

@media screen and (max-width: 991px) {
	.blog-list-item {
		min-height: 551px;
		max-height: 551px;
	}
	.blog-list-item .blog-list-item-date {
		font-size: 11px;
	}
	.blog-list-item .blog-list-item-name {
		font-size: 12px;
		line-height: 16px;
	}
	.blog-list-item .blog-list-item-preview-text {
		font-size: 11px;
		line-height: 135%;
	}
	.blog-list-item:hover .blog-list-item-preview-text {
		min-height: 60px;
		max-height: 60px;
	}
}

@media screen and (max-width: 575px) {
	.blog-list-item {
		min-height: 433px;
		max-height: 433px;
	}
}