.news-content {
	padding: 2em 0 0 0;
}
.news-content .container {
	padding-left: 15px;
	padding-right: 15px;
}
.news-row {
	display: flex;
	gap: 20px;
	align-items: stretch;
	min-height: calc(100vh - 120px);
}
.news-sidebar {
	flex: 0 0 30%;
	background: #111;
	border-radius: 5px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
}
.news-list {
	flex: 1;
	overflow-y: auto;
	margin: 0;
	padding: 0;
}
.news-list-item {
	padding: 16px 20px;
	color: #cfcfcf;
	font-size: 14px;
	font-family: 'NotoSans-Regular', sans-serif;
	line-height: 1.4em;
	cursor: pointer;
	list-style: none;
	border-bottom: 1px solid rgba(255,255,255,0.1);
}
.news-list-item:last-child {
	border-bottom: none;
}
.news-list-item:hover {
	color: #fff;
	background: rgba(255,255,255,0.05);
}
.news-list-item.active {
	color: #ffc600;
	font-family: 'NotoSans-Bold', sans-serif;
	background: rgba(255,198,0,0.08);
}
.news-main {
	flex: 1;
	background: #111;
	border-radius: 5px;
	padding: 2em 2.5em;
	overflow-y: auto;
}
.news-article {
	display: none;
}
.news-article.active {
	display: block;
}
.news-article h2 {
	color: #ffc600;
	font-size: 22px;
	font-family: 'NotoSans-Bold', sans-serif;
	line-height: 1.3em;
	margin: 0 0 1em 0;
}
.news-article h3 {
	color: #fff;
	font-size: 16px;
	font-family: 'NotoSans-Bold', sans-serif;
	margin: 3.0em 0 1.6em 0;
}
.news-article h3:first-child {
	margin-top: 0;
}
.news-article p {
	color: #cfcfcf;
	font-size: 14px;
	font-family: 'NotoSerif-Regular', serif;
	line-height: 1.8em;
	margin-bottom: 3.0em;
}
.news-article p:last-child {
	margin-bottom: 0;
}

@media (max-width: 1200px) {
	.news-row {
		flex-wrap: wrap;
	}
	.news-sidebar,
	.news-main {
		flex: 0 0 100%;
	}
	.news-content .container {
		padding-left: 15px;
		padding-right: 15px;
	}
}

/* copyright footer */
.card-tag {
	color: #fff;
	font-size: 0.6em;
	text-transform: uppercase;
	display: inline-block;
	margin-bottom: 1em;
	padding-left: 310px;
}

.no-sidebar .news-article h2,
.no-sidebar .news-article .card-tag {
	text-align: center;
	display: block;
	padding-left: 0;
}

.news-banner {
	display: block;
	width: 96%;
	margin: 0 0 2em 0;
	object-fit: cover;
	border-radius: 12px;
}

.copyright {
	padding: 1em 0 2em 0;
	text-align: center;
	padding-right: 120px;
}
.copyright p {
	color: #666;
	font-size: 15px;
	font-family: "NotoSans-Regular", sans-serif;
	margin: 0;
}
