.news__item {
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	border: 2px solid #5ab7a9;
	padding: 1rem;
	border-radius: 10px;
	margin-bottom: 20px;
}

.news__img {
	margin-bottom: 0.5rem;
}

.news__content {

}

.news__content .news__text {
	padding: 0.5rem;
	text-align: justify;
}

.news__content .news__title {
	padding: 0.5rem;
	background: #5ab7a9a1;
	margin-bottom: 0.5rem;
}

.news__content .news__title a {
	font-size: 1.5rem;
	color: #fff;
	text-decoration: none;
	line-height: 1.5rem;
}


@media (min-width: 992px) {
	.news__item {
		width: 45%;
	}
}


