/* ===== Ward Latest Articles — جديد المقالات ===== */
.ward-latest-articles {
	padding: 80px 0;
	background: #fff;
	direction: rtl;
}

.ward-latest-articles-head {
	margin-bottom: 32px;
	text-align: right;
}

.ward-latest-articles .ward-section-title {
	margin: 0;
	font-size: clamp(26px, 3vw, 34px);
	color: #091037;
	font-weight: 800;
}

.ward-articles-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.ward-article-card {
	display: flex;
	flex-direction: column;
	background: #fff;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 8px 24px rgba(16, 26, 74, .07);
	transition: transform .25s ease, box-shadow .25s ease;
}

.ward-article-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 14px 32px rgba(16, 26, 74, .11);
}

/* صورة فوق — لاصقة في البوكس */
.ward-article-media {
	display: block;
	aspect-ratio: 16 / 11;
	overflow: hidden;
	background: #e8eaf2;
}

.ward-article-img,
.ward-article-media img {
	width: 100% !important;
	height: 100% !important;
	object-fit: cover;
	display: block;
	margin: 0;
	padding: 0;
	border: 0;
	border-radius: 0;
}

.ward-article-img--placeholder {
	display: block;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, #e8eaf2, #d5d8e6);
}

/* الجزء الأبيض ملتصق بالصورة */
.ward-article-body {
	background: #fff;
	padding: 16px 18px 18px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	flex: 1;
	text-align: right;
}

.ward-article-meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	flex-wrap: wrap;
}

.ward-article-cat {
	display: inline-flex;
	align-items: center;
	padding: 5px 12px;
	border-radius: 999px;
	background: #e8eaf8;
	color: #3b4a9a;
	font-size: 12px;
	font-weight: 700;
	line-height: 1.3;
}

.ward-article-time {
	font-size: 12px;
	color: #9aa0b5;
	font-weight: 500;
}

/* عنوان بخلفية رمادية */
.ward-article-title {
	margin: 0;
	padding: 10px 12px;
	border-radius: 10px;
	background: #f3f4f8;
	font-size: 16px;
	font-weight: 800;
	line-height: 1.55;
	color: #091037;
}

.ward-article-title a {
	color: inherit;
	text-decoration: none;
}
.ward-article-title a:hover {
	color: #1b2a6b;
}

/* وصف: سطر واحد + ... */
.ward-article-excerpt {
	margin: 0;
	font-size: 13.5px;
	line-height: 1.7;
	color: #6b7089;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.ward-article-date {
	display: block;
	margin-top: auto;
	padding-top: 4px;
	font-size: 12px;
	color: #9aa0b5;
}

.ward-articles-empty {
	text-align: center;
	color: #6b7089;
	margin: 0;
}

@media (max-width: 1000px) {
	.ward-articles-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 560px) {
	.ward-articles-grid {
		grid-template-columns: 1fr;
	}
}
