.FeaturedNewsWidget {
	display: grid;
	grid-template-columns: minmax(0, 1.6fr) minmax(280px, 1fr);
	gap: 24px;
	width: 100%;
	direction: rtl;
}

.FeaturedNewsWidget .Showcase {
	min-width: 0;
}

.FeaturedNewsWidget .Showcase-thumbnail {
	position: relative;
	display: flex;
	align-items: flex-end;
	min-height: 500px;
	overflow: hidden;
	padding: 32px;
	border-radius: 20px;
	background-color: #222;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	color: #fff;
	text-decoration: none;
	isolation: isolate;
}

.FeaturedNewsWidget .Showcase-overlay {
	position: absolute;
	inset: 0;
	z-index: -1;
	background: linear-gradient(to top,
			rgba(0, 0, 0, 0.9),
			rgba(0, 0, 0, 0.05));
}

.FeaturedNewsWidget .Showcase-content {
	display: block;
	width: 100%;
}

.FeaturedNewsWidget .Showcase .post-title {
	margin: 0 0 12px;
	color: #fff;
	font-size: 22px;
	line-height: 1.5;
	font-family: 'peyda';
	font-weight: 600;
}

.FeaturedNewsWidget .post-lead {
	display: block;
	margin-bottom: 16px;
	color: #dadada;
	font-size: 14px;
	line-height: 1.9;
}

.FeaturedNewsWidget .post-date {
	display: block;
	color: var(--secondary-color) !important;
	font-size: 12px;
}

.list-item .post-date {
	color: #ADACA9 !important;
	font-size: 10px;
	    margin-top: .5rem;
}

.FeaturedNewsWidget .Showcase .post-date {
	color: rgba(255, 255, 255, 0.75);
}

.FeaturedNewsWidget .list {
	display: flex;
	flex-direction: column;
	gap: 13px;
}

.FeaturedNewsWidget .list-item {
	display: grid;
	grid-template-columns: 130px minmax(0, 1fr);
	gap: 16px;
	align-items: start;
	background: white;
	padding: .5rem;
	border-radius: 10px;
	box-shadow: 0px 10px 10px #80808014;
}

/* .FeaturedNewsWidget .list-item:last-child {
	padding-bottom: 0;
	border-bottom: 0;
} */

.FeaturedNewsWidget .post-thumbnail {
	display: block;
	overflow: hidden;
	aspect-ratio: 4 / 3;
	border-radius: 8px;
	background-color: #eee;
}

.FeaturedNewsWidget .post-thumbnail img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.FeaturedNewsWidget .list-item:hover .post-thumbnail img {
	transform: scale(1.05);
}

.FeaturedNewsWidget .post-thumbnail-placeholder {
	display: block;
	width: 100%;
	height: 100%;
	background-color: #eee;
}

.FeaturedNewsWidget .post-content {
	min-width: 0;
}

.FeaturedNewsWidget .list .post-title {
	line-height: 1.5rem !important;
}

.FeaturedNewsWidget .list .post-title a {
	color: inherit;
	text-decoration: none;
	font-family: "shabnam" !important;
	font-size: 14px;
	font-weight: 600;

}

.FeaturedNewsWidget .list .post-title a:hover {
	text-decoration: underline;
}

.FeaturedNewsWidget-empty {
	padding: 24px;
	border: 1px dashed #ccc;
	border-radius: 12px;
	text-align: center;
}

@media (max-width: 1024px) {
	/* .FeaturedNewsWidget {
		grid-template-columns: 1fr;
	} */

	.FeaturedNewsWidget .list {
		display: grid;
		grid-template-columns: repeat(1, minmax(0, 1fr));
	}

	.FeaturedNewsWidget .list-item {
		grid-template-columns: 130px minmax(0, 1fr);
		gap: 11px;
	}

	.FeaturedNewsWidget .list .post-title {
		line-height: 1.2rem !important;
	}

	.FeaturedNewsWidget .list .post-title a {
		font-size: 13px;
	}

	.FeaturedNewsWidget .Showcase .post-title {
		font-size: 20px;

	}

	.FeaturedNewsWidget .post-lead {
		font-size: 12px;
	}

	.FeaturedNewsWidget .post-date {
		font-size: 10px;
	}

	.FeaturedNewsWidget .Showcase-thumbnail {
		padding: 19px;
	}

	.FeaturedNewsWidget {

		grid-template-columns: minmax(0, 1.2fr) minmax(280px, 1fr);
		gap: 15px;
	}
}

@media (max-width: 767px) {
	.FeaturedNewsWidget {
		display: block;
	}

	.FeaturedNewsWidget .Showcase-thumbnail {
		min-height: 340px;
		padding: 22px;
	}

	.FeaturedNewsWidget .Showcase .post-title {
		font-size: 17px;
	}

	.FeaturedNewsWidget .list {
		grid-template-columns: 1fr;
	}

	.FeaturedNewsWidget .list-item {
		grid-template-columns: 105px minmax(0, 1fr);
	}

	.FeaturedNewsWidget .Showcase {
		margin-bottom: 1rem;
	}
}