.news-list-bento {
	padding: 0 70px 60px;
}

.news-bento__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 20px;
	grid-auto-rows: minmax(168px, auto);
}

.news-bento__item {
	position: relative;
	border-radius: 20px;
	overflow: hidden;
	min-height: 168px;
}

.news-bento__link {
	display: flex;
	flex-direction: column;
	height: 100%;
	min-height: inherit;
	color: #fff;
	text-decoration: none;
}

.news-bento__item--feature {
	min-height: 440px;
}

.news-bento__item--feature .news-bento__link {
	justify-content: space-between;
	padding: 28px 28px 24px;
}

.news-bento__feature-bg {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(120% 80% at 100% 0%, rgba(47, 198, 180, 0.35) 0%, transparent 55%),
		radial-gradient(90% 70% at 0% 100%, rgba(64, 158, 239, 0.25) 0%, transparent 50%),
		linear-gradient(145deg, #0d1219 0%, #141a24 45%, #0b0d10 100%);
	z-index: 0;
}

.news-bento__feature-bg--has-image {
	background-size: cover;
	background-position: center;
}

.news-bento__feature-bg--has-image::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgb(0 0 0 / 89%) 0% 0%, rgb(8 10 14) 100%);
	/* background: linear-gradient(180deg, rgba(8, 10, 14, 0.35) 0%, rgba(8, 10, 14, 0.88) 100%); */
}

.news-bento__feature-body {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	flex: 1;
	padding: 20px 30px;
	gap: 14px;
	min-height: 0;
}

.news-bento__feature-title {
	margin: 0;
	font-size: 28px;
	font-weight: 600;
	line-height: 1.2;
	color: #fff;
}

.news-bento__feature-text {
	margin: 0;
	font-size: 15px;
	line-height: 1.5;
	color: rgba(255, 255, 255, 0.78);
	display: -webkit-box;
	-webkit-line-clamp: 4;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.news-bento__feature-arrow {
	position: relative;
	z-index: 1;
	flex-shrink: 0;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: auto;
	left: 32px;
}

.news-bento__feature-arrow svg {
	display: block;
}

.news-bento__item--compact .news-bento__link {
	flex-direction: row;
	align-items: stretch;
	gap: 20px;
	padding: 30px 25px 25px 35px;
	background: #0b0d10;
    border-top: 1px solid #2828284a;
    border-bottom: 1px solid #2828284a;
}

.news-bento__compact-main {
	flex: 1;
	min-width: 0;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 16px;
}

.news-bento__compact-title {
	margin: 0;
	font-size: 18px;
	font-weight: 600;
	line-height: 1.35;
	color: #fff;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.news-bento__compact-meta {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 14px;
	font-size: 13px;
	color: #6e788a;
}

.news-bento__compact-meta-item {
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

.news-bento__compact-thumb {
	flex-shrink: 0;
	width: 250px;
    height: auto;
	border-radius: 12px;
	overflow: hidden;
	background: #1e2430;
}

.news-bento__compact-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.news-bento__compact-thumb--empty {
	background: linear-gradient(135deg, #1a2330 0%, #243040 100%);
}

.news-list-bento .bottom_nav_wrapper {
	padding: 0 70px 40px;
}

@media (max-width: 991px) {
	.news-list-bento,
	.news-list-bento .bottom_nav_wrapper {
		padding-left: 24px;
		padding-right: 24px;
	}

	.news-bento__grid {
		grid-template-columns: 1fr;
	}

	.news-bento__item--feature,
	.news-bento__item--compact {
		grid-column: 1 !important;
		grid-row: auto !important;
		min-height: 280px;
	}

	.news-bento__item--compact {
		min-height: auto;
	}

	.news-bento__compact-thumb {
		width: 96px;
		height: 72px;
	}
}

@media (max-width: 575px) {
	.news-bento__item--compact .news-bento__link {
		flex-direction: column;
	}

	.news-bento__compact-thumb {
		width: 100%;
		height: 140px;
		order: -1;
	}

	.news-bento__feature-title {
		font-size: 22px;
	}
}
