.news-container {
	display: flex;
	justify-content: center;
	background-color: #202020;
	width: 100%;
}

.news-inner {
	width: 80%;
	padding: 30px 0;
}

.news-top {
	width: 100%;
	text-align: center;
	padding: 20px 0;
}

.news-row {
	padding: 5px 0;
}

.news-header {
	font-size: 2rem;
	color: white;
}

.news-text {
	font-size: 1rem;
	color: white;
}

.news-content {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	padding: 10px 0;
}

.news-each {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	width: 100%;
	margin: 20px 0;
	align-items: stretch;
}

.news-each-image {
	width: 100%;
	aspect-ratio: 1 / 1;
	background-image: url(https://placehold.co/500x500);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	box-shadow:
		inset -3px -3px 5px rgba(0, 0, 0, 0.5),
		inset 3px 3px 5px rgba(0, 0, 0, 0.5),
		15px 15px 25px rgba(0, 0, 0, 0.5),
		-15px -15px 25px rgba(0, 0, 0, 0.5);
}

.news-each-content {
	display: flex;
	flex-direction: column;
	flex: 1;
	min-width: 0;
}

.content-row {
	display: block;
	padding: 0;
}

.content-header {
	font-size: 1.5rem;
	color: white;
}

.content-sub {
	font-size: 0.8rem;
	color: rgba(255, 255, 255, 0.8);
}

#content-info {
	margin-top: 5px;
	flex-grow: 1;
	overflow: hidden;
	display: flex;
}

.content-text {
	font-family: 'Regular';
	letter-spacing: 0.5px;
	font-size: 0.8rem;
	color: white;
	overflow-y: auto;
	height: 100%;
	padding-right: 8px;
}
.content-text::-webkit-scrollbar {
	width: 8px;
}
.content-text::-webkit-scrollbar-thumb {
	background-color: rgba(255, 255, 255, 0.3);
	border-radius: 4px;
}

@media (min-width: 768px) {
	.news-each {
		flex-wrap: nowrap;
	}

	.news-each-image {
		width: auto;
		height: 100%;
	}

	.content-header {
		font-size: 2rem;
	}

	.content-text {
		font-size: 1.2rem;
	}

	.content-sub {
		font-size: 1rem;
	}
}

@media (min-width: 1200px) {
	.news-row {
		padding: 5px 0;
	}

	.news-header {
		font-size: 3rem;
		color: white;
	}

	.news-text {
		font-size: 1.4rem;
		color: white;
	}
}
