.home-blog-title {
	text-decoration: none;
	font-size: 25px;
	margin-bottom: 15px;
	display: block;
}

.home-blog-title:hover {
	text-decoration: none;
}

.home-blog-container {
	background-color: #f8f8f8;
	padding-top: 30px;
	padding-bottom: 30px;
}

.home-blog__item {
	text-decoration: none;
	max-width: 250px;
}

.home-blog__item img {
	transition: transform 0.2s ease-out;
}

.home-blog__item:hover {
	text-decoration: none;
	transform : scale(1.05);
}

.home-blog__item-title {
	color: #000;
		font-weight: bold;
		margin-bottom: 0;
}

.home-blog__date {
	color: #31343c;
	font-size: 11px;
}

.home-blog__date:hover {
	color: #31343c;
}

.home-blog {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.home-blog__img-container {
	display: flex;
	justify-content: center;
}

@media screen and (max-width: 767px) {
	.home-blog__item {
		width: 100%;
	}

	.home-blog__item-title {
		text-align: center;
	}

	.home-blog {
		justify-content: center;
	}
}

@media (min-width: 768px) {
	.home-blog__item-title {
		min-height: 75px;
	}
}