.section_hero {
	height: 800px;
	background: url(../images/webp/new-item-4.webp);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	display: grid;
	position: relative;
}

.section_hero_mark {
	background-color: #00000099;
	width: 100%;
	height: 100%;
	color: var(--grey-00);
}

.section_hero_content {
	width: 644px;
	margin-top: 160px;
	margin-left: 60px;
	display: grid;
	gap: 2px;
}

.section_hero_content_title {
	font-size: 32px;
	font-weight: 600;
	line-height: 40px;
}

.section_hero_content_des {
	font-size: 18px;
	line-height: 28px;
}

.btn-view-more {
	margin-top: 32px;
	margin-left: 60px;
	padding: 12px 16px 12px 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	border-radius: 99px;
	background: #ffffff29;
	width: fit-content;
	font-weight: 600;
	backdrop-filter: blur(40px);
}

.section_hero_recent {
	position: absolute;
	bottom: 0;
	left: 0;
}

.section_hero_recent_title {
	padding: 16px 12px;
	padding-right: 60px;
	display: flex;
	gap: 16px;
	align-items: center;
	background: #ffffff29;
	backdrop-filter: blur(40px);
	border-top-right-radius: 999px;
	width: fit-content;
}

.section_hero_recent_list {
	background: #ffffff29;
	backdrop-filter: blur(40px);
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	border-top: 1px solid var(--grey-00);
}

.section_hero_recent_item {
	font-size: 14px;
	font-weight: 600;
	line-height: 20px;
	padding: 32px 60px;
	border-right: 1px solid var(--grey-00);
	cursor: pointer;
}

.section_hero_recent_item:hover {
	text-decoration: underline;
}

.section_news_list {
	padding: 80px 60px;
	gap: 48px;
	display: grid;
}

.section_news_title {
	font-size: 40px;
	font-weight: 600;
	line-height: 48px;
	text-align: center;
}

.section_news_list .news_container {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 40px 28px;
	max-width: 1440px;
	margin-inline: auto;
}

.section_news_list .news_container .news_item {
	padding: 16px;
	border-radius: 24px;
	background: var(--grey-300);
	display: grid;
	grid-template-columns: 60% auto;
	gap: 16px;
	cursor: pointer;
}

.news_item:hover {
	color: var(--brand-primary);
}

.news_item .news_item_title {
	font-size: 24px;
	font-weight: 600;
	line-height: 32px;
}

.news_item_image {
	border-radius: 16px;
}

.news_item_content {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 16px;
}

.news_item_content .btn {
	padding: 4px;
	border: 1px solid var(--brand-primary);
	color: var(--brand-primary);
	width: fit-content;
	height: auto;
	min-width: 100px;
}

.news_pagination {
	display: flex;
	justify-content: center;
	gap: 8px;
}

.news_pagination_item {
	width: 40px;
	height: 40px;
	display: grid;
	place-items: center;
	border: 1px solid var(--grey-400);
	background-color: var(--grey-00);
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	border-radius: 999px;
}

.news_pagination_item:hover {
	color: var(--brand-primary);
	border: 1px solid var(--brand-primary);
}

.news_pagination_item:disabled {
	color: var(--grey-600);
	background-color: var(--grey-400);
	border: 1px solid var(--grey-400);
	cursor: not-allowed;
}

.news_pagination_item.activate {
	color: var(--grey-00);
	background-color: var(--brand-primary);
	border: 1px solid var(--brand-primary);
	pointer-events: none;
}

.news_pagination_item_jump {
	background-color: var(--grey-400);
	color: var(--grey-900);
}

@media (width <=1024px) {
	.section_hero_content {
		width: 90%;
		max-width: 644px;
		margin-left: 32px;
	}

	.section_hero_recent_list::-webkit-scrollbar {
		display: none;
		/* Ẩn trên Chrome, Safari */
	}

	.section_hero_recent_list {
		overflow: auto;
		display: flex;
		scrollbar-width: none;
		/* Ẩn trên Firefox */
		-ms-overflow-style: none;
		/* Ẩn trên IE & Edge */
	}

	.section_hero_recent_item {
		padding: 16px;
		flex-shrink: 0;
		max-width: 250px;
	}

	.section_news_list {
		padding: 64px 32px;
		gap: 32px;
	}

	.section_news_title {
		font-size: 32px;
		line-height: 40px;
	}

	.section_news_list .news_container {
		gap: 16px;
	}

	.section_news_list .news_container .news_item {
		padding: 16px;
		grid-template-columns: 1fr;
		gap: 12px;
	}

	.news_item_image {
		grid-area: 1 / 1 / 2 / 1;
	}

	.news_item .news_item_title {
		font-size: 18px;
		line-height: 28px;
	}

	.news_item_content {
		gap: 12px;
	}
}

@media (max-width: 640px) {
	.section_hero_content {
		width: auto;
		margin-top: 200px;
		margin-left: 24px;
	}

	.section_hero_content_title {
		font-size: 20px;
		line-height: 28px;
	}

	.section_hero_content_des {
		font-size: 14px;
		line-height: 20px;
	}

	.btn-view-more {
		margin-top: 24px;
		margin-left: 16px;
		padding: 10px 16px 10px 24px;
		font-size: 14px;
	}

	.section_hero_recent_title {
		padding: 12px;
		padding-right: 32px;
		gap: 8px;
	}

	.section_hero_recent_item {
		font-size: 12px;
		line-height: 18px;
	}

	.section_news_list {
		padding: 24px 16px;
		gap: 16px;
	}

	.section_news_title {
		font-size: 20px;
		line-height: 28px;
	}

	.section_news_list .news_container {
		grid-template-columns: 1fr;
	}

	.section_news_list .news_container .news_item {
		padding: 12px;
		grid-template-columns: 1fr;
		gap: 8px;
	}

	.news_item .news_item_title {
		font-size: 16px;
		line-height: 24px;
	}

	.news_item_content {
		gap: 8px;
	}

	.news_pagination_item {
		width: 32px;
		height: 32px;
		font-size: 12px;
	}
}