#underPageKv {
	background-image: url(../images/pc/news_hero.webp);
}

/* News Archive Layout */
.news_archive_container {
	display: flex;
	justify-content: space-between;
	gap: 140px;
}

.news_archive_sidebar {
	width: 250px;
	flex-shrink: 0;
}

.news_archive_content {
	flex: 1;
}

/* Sidebar Styles */
.sidebar_title {
	font-size: 16px;
	color: #333;
	border-bottom: 1px solid #333333;
	padding-bottom: 0.25em;
	font-weight: 500;
	margin-bottom: 10px;
}

.archive_list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.archive_item {
	margin: 10px 0;
}

.archive_link {
	display: block;
	color: #333333;
	text-decoration: none;
	font-size: 14px;
	transition: color 0.3s ease;
	position: relative;
	line-height: 1.4;
	padding-left: 20px;
}

.archive_link::before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 6px;
	height: 6px;
	border-right: 1px solid #333;
	border-top: 1px solid #333;
	transform: translateY(-50%) rotate(45deg);
}

.archive_link:hover {
	color: #333;
}

/* News List Styles */
.news_list {
	display: flex;
	flex-direction: column;
	gap: 32px;
}

.news_item {
	display: flex;
	gap: 20px;
}

.news_item_image {
	width: 152px;
	flex-shrink: 0;
}

.news_image_inner {
	position: relative;
	width: 100%;
	height: 120px;
	border-radius: 4px;
	overflow: hidden;
}

.news_item_image img {
	width: 100%;
	height: 120px;
	object-fit: cover;
	border-radius: 4px;
}

.news_item_content {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.news_item_meta {
	display: flex;
	gap: 7px;
	margin-bottom: 10px;
	align-items: center;
}

.news_date {
	font-size: 12px;
	font-weight: 500;
}

.news_category {
	font-family: "Be Vietnam Pro", sans-serif;
	font-size: 12px;
	background-color: transparent;
	color: #333;
	padding: 2px 4px;
	border: 1px solid #333;
}

.news_title {
	margin: 0;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.5;
}

.news_title a {
	color: #333;
	text-decoration: none;
	transition: color 0.3s ease;
}

.news_title a:hover {
	color: #666;
}

.no_posts {
	text-align: center;
	color: #666;
	font-size: 16px;
	padding: 40px 0;
}

/* Pagination Styles */
.news_pagination {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 60px;
	gap: 76px;
}

.pagination_arrow {
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	transition: opacity 0.3s ease;
}

.pagination_arrow:hover {
	opacity: 0.7;
}

.pagination_arrow.disabled {
	opacity: 0.3;
	cursor: not-allowed;
}

.pagination_numbers {
	display: flex;
	gap: 20px;
	align-items: center;
}

.pagination_number {
	font-size: 26px;
	font-weight: 500;
	color: rgba(51, 51, 51, 0.3);
	text-decoration: none;
	transition: color 0.3s ease;
	padding: 0 10px;
}

.pagination_number:hover {
	color: #333;
}

.pagination_number.current {
	color: #333;
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
	.news_archive_container {
		gap: 40px;
	}

	.news_archive_sidebar {
		width: 200px;
	}

	.news_item_image {
		width: 150px;
	}

	.news_image_inner {
		height: 100px;
	}

	.news_item_image img {
		height: 100px;
	}
}

@media screen and (max-width: 767px) {
	#underPageKv {
		background-image: url(../images/sp/news_hero.webp);
	}

	.news_archive_container {
		flex-direction: column-reverse;
		gap: 30px;
	}

	.news_archive_sidebar {
		width: 100%;
	}

	.news_archive_content {
		width: 100%;
	}

	.news_item {
		flex-direction: column;
		gap: 15px;
	}

	.news_item_image {
		width: 100%;
	}

	.news_image_inner {
		height: 200px;
	}

	.news_item_image img {
		height: 200px;
	}

	.news_item_meta {
		flex-direction: row;
		gap: 8px;
	}

	.content_margin {
		padding-top: 60px;
		padding-bottom: 60px;
	}

	.news_pagination {
		gap: 40px;
		margin-top: 40px;
	}

	.pagination_numbers {
		gap: 15px;
	}

	.pagination_number {
		font-size: 22px;
	}
}
