.news-wrapper{
	display: grid;
	grid-template-columns: repeat(4, minmax(250px, 1fr));
	grid-gap: 1rem;
}
.news{
	display: flex;
	flex-direction: column;
}
.news img{
	height: 200px;
	width: 100%;
	object-fit: cover;
}
.news .title{
	display: flex;
	justify-content: center;
	align-items: center;
	flex-grow: 1;
	padding: 0.5rem;
	font-size: 1.35rem;
	text-align: center;
}

@media (max-width: 1200px) {
	.news-wrapper {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (max-width: 767px) {
	.news-wrapper {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 450px) {
	.news-container h1 {
		font-size: 2rem;
	}
	.news-wrapper {
		grid-template-columns: 1fr;
	}
}