.news-list {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}
.news-card {
	display: flex;
	flex-direction: column;
	background: #fff;
	border-radius: 0.5rem;
	width: 100%;
}
.news-card .news-header {
	display: flex;
	flex-direction: row;
	max-height: 300px;
	overflow: hidden;
	width: 100%;
	align-items: center;
	justify-content: center;
	border-top-left-radius: 0.5rem;
	border-top-right-radius: 0.5rem;
}
.news-card .news-header img {
	width: 100%;
}
.news-card .news-text {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	max-height: 500px;
	margin: 1rem;
}
.news-card .news-text .news-info {
	display: flex;
	flex-direction: row;
	gap: 0.5rem;
	align-items: end;
}
.news-card .news-text .news-info .news-title {
	font-size: 1.5rem;
}
.news-card .news-text .news-info .news-title a {
	font-weight: 600;
}
.news-card .news-text .news-info .news-date {
	font-size: 0.9rem;
	font-weight: 600;
	margin-left: auto;
}
.news-card .news-text .news-brief {
	overflow: hidden;
}
.news-page .news-header {
	display: flex;
	flex-direction: column;
	max-height: 400px;
	overflow: hidden;
	align-items: center;
	justify-content: center;
}
.news-page .news-header img {
	max-width: 100%;
}
.news-page .news-date {
	font-size: 1.1rem;
	font-weight: 600;
}