.latest-news-container {}

.latest-news-container .item {}

.latest-news-container .item .image {
	display: block;
	/* height: 25vh; */
	height: 160px;
	background-size: cover;
	background-position: center;
	border-radius: 3px;
	margin-bottom: 15px;
}

.latest-news-container .item .title {
	display: block;
	cursor: pointer;
	text-decoration: none;
	color: rgba(0, 0, 0, 0.6);
	font-weight: bold;
	margin-bottom: 10px;
}

.latest-news-container .item .date {
	display: block;
	cursor: pointer;
	text-decoration: none;
	color: rgb(190, 190, 190);
	font-size: 0.9rem;
	margin-bottom: 10px;
}

.latest-news-container .item .description {
	color: rgba(0, 0, 0, 0.7);
}

@media screen and (min-width: 767px) {
	.latest-news-container .item {
		/*height: 620px;*/
		overflow: hidden;
	}
}



