/* =========================================================================
   main.css — أنماط مخصصة + أنيميشن + تجاوب (مكمّلة لـ Tailwind)
   ========================================================================= */

.material-symbols-outlined {
	font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

body {
	font-family: 'Hanken Grotesk', sans-serif;
	background-color: #f9f9f9;
	color: #1a1c1c;
}

html {
	scroll-behavior: smooth;
}

.hero-gradient {
	background: linear-gradient(rgba(0, 33, 71, 0.85), rgba(0, 33, 71, 0.55));
}

/* =========================================================================
   0) شريط أخبار الجامعة المتحرك (News Ticker)
   ارتفاع الشريط = 2.5rem (40px) — والهيدر يبدأ تحته (top-10).
   ========================================================================= */
.ticker-track {
	display: flex;
	align-items: center;
	width: max-content;
	direction: ltr; /* لحركة marquee سلسة وصحيحة الاتجاه داخل صفحة RTL */
	will-change: transform; /* الحركة تُدار بالكامل عبر JavaScript (requestAnimationFrame) */
}
@keyframes ticker-scroll {
	from {
		transform: translateX(0);
	}
	to {
		transform: translateX( calc( -1 * var( --ticker-w, 50% ) ) );
	}
}
/* إيقاف الحركة عند مرور الماوس */
#news-ticker:hover .ticker-track {
	animation-play-state: paused;
}
/* تلاشٍ ناعم على طرفَي الشريط */
.ticker-viewport {
	direction: ltr; /* يمنع اختفاء نص الشريط في صفحات RTL */
	-webkit-mask-image: linear-gradient(to left, transparent, #000 40px, #000 calc(100% - 40px), transparent);
	mask-image: linear-gradient(to left, transparent, #000 40px, #000 calc(100% - 40px), transparent);
}

/* دفع محتوى الصفحات الداخلية أسفل الشريط + الهيدر الثابتَين (الواجهة يتكفّل بها الهيرو) */
body:not(.home) {
	padding-top: 120px;
}
@media ( min-width: 768px ) {
	body:not(.home) {
		padding-top: 136px;
	}
}

/* حجم شعار الجامعة داخل الناف بار الموسّع */
#site-header .custom-logo,
#site-header .custom-logo-link img {
	height: 56px;
	width: auto;
	max-width: 240px;
	object-fit: contain;
}
@media ( min-width: 768px ) {
	#site-header .custom-logo,
	#site-header .custom-logo-link img {
		height: 72px;
	}
}

/* شريط تمرير أنيق */
::-webkit-scrollbar {
	width: 10px;
}
::-webkit-scrollbar-track {
	background: #eeeeee;
}
::-webkit-scrollbar-thumb {
	background: #002147;
	border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
	background: #B8993C;
}

/* تحديد النص بلون الهوية */
::selection {
	background: #B8993C;
	color: #ffffff;
}

/* =========================================================================
   1) الهيدر — تفاعل مع التمرير
   ========================================================================= */
#site-header {
	transition: box-shadow 0.4s ease, background-color 0.4s ease, transform 0.4s ease;
}
#site-header.is-scrolled {
	box-shadow: 0 8px 30px rgba(0, 33, 71, 0.10);
	background-color: rgba(255, 255, 255, 0.92);
	backdrop-filter: saturate(180%) blur(8px);
}
/* إخفاء الهيدر عند النزول وإظهاره عند الصعود (يُحسب ارتفاع شريط الأخبار 2.5rem) */
#site-header.is-hidden {
	transform: translateY( calc( -100% - 2.5rem ) );
}

/* خط ذهبي متحرك تحت روابط القائمة */
.nav-link {
	position: relative;
}
.nav-link::after {
	content: '';
	position: absolute;
	bottom: -4px;
	right: 0;
	width: 0;
	height: 2px;
	background-color: #B8993C;
	transition: width 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.nav-link:hover::after,
.nav-link.is-active::after {
	width: 100%;
}

/* قائمة ووردبريس الرئيسية (wp_nav_menu) — سطح المكتب */
.primary-menu,
.primary-menu ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
.primary-menu > li {
	position: relative;
}
.primary-menu a {
	display: inline-block;
	font-family: 'Hanken Grotesk', sans-serif;
	font-weight: 600;
	color: #002147;
	white-space: nowrap;
	transition: color 0.3s ease;
}
.primary-menu > li > a {
	position: relative;
}
.primary-menu > li > a::after {
	content: '';
	position: absolute;
	bottom: -6px;
	right: 0;
	width: 0;
	height: 2px;
	background: #B8993C;
	transition: width 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.primary-menu > li > a:hover::after,
.primary-menu > li.current-menu-item > a::after,
.primary-menu > li.current-menu-ancestor > a::after {
	width: 100%;
}
.primary-menu a:hover,
.primary-menu .current-menu-item > a {
	color: #B8993C;
}
/* قائمة منسدلة */
.primary-menu ul.sub-menu {
	position: absolute;
	top: 100%;
	right: 0;
	min-width: 230px;
	background: #fff;
	border: 1px solid #c4c6cf;
	border-radius: 0.5rem;
	box-shadow: 0 12px 32px rgba(0, 33, 71, 0.12);
	padding: 0.5rem;
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
	transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
	z-index: 60;
}
.primary-menu li:hover > ul.sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}
.primary-menu ul.sub-menu li {
	position: relative;
}
.primary-menu ul.sub-menu a {
	display: block;
	padding: 0.55rem 0.75rem;
	border-radius: 0.375rem;
	font-weight: 400;
	font-size: 0.95rem;
	text-align: right;
}
.primary-menu ul.sub-menu a:hover {
	background: #f3f3f3;
	color: #B8993C;
}
.primary-menu ul.sub-menu ul.sub-menu {
	top: 0;
	right: 100%;
}

/* قائمة ووردبريس — الموبايل */
.mobile-menu-list,
.mobile-menu-list ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
.mobile-menu-list a {
	display: block;
	padding: 0.75rem;
	border-radius: 0.5rem;
	color: #002147;
	text-align: right;
	font-weight: 600;
	transition: background-color 0.2s ease, color 0.2s ease;
}
.mobile-menu-list a:hover,
.mobile-menu-list .current-menu-item > a {
	background: #f3f3f3;
	color: #B8993C;
}
.mobile-menu-list .sub-menu {
	padding-right: 0.75rem;
	margin: 0.25rem 0.5rem;
	border-right: 2px solid #e2e2e2;
}
.mobile-menu-list .sub-menu a {
	font-weight: 400;
	font-size: 0.95rem;
}

/* =========================================================================
   تنسيق محتوى المقال (single)
   ========================================================================= */
.article-content {
	color: #3a3d42;
	line-height: 1.95;
	font-size: 1.075rem;
}
.article-content > * + * {
	margin-top: 1.25rem;
}
.article-content h1:first-child,
.article-content h2:first-child,
.article-content h3:first-child,
.article-content p:first-child {
	margin-top: 0;
}
.article-content h2 {
	font-family: 'EB Garamond', serif;
	color: #002147;
	font-size: 1.9rem;
	font-weight: 700;
	margin-top: 2.25rem;
	margin-bottom: 0.5rem;
}
.article-content h3 {
	font-family: 'EB Garamond', serif;
	color: #002147;
	font-size: 1.5rem;
	font-weight: 700;
	margin-top: 1.75rem;
}
.article-content h4 {
	color: #002147;
	font-weight: 700;
	font-size: 1.2rem;
	margin-top: 1.5rem;
}
.article-content a {
	color: #B8993C;
	text-decoration: underline;
	text-underline-offset: 3px;
}
.article-content a:hover {
	color: #002147;
}
.article-content ul,
.article-content ol {
	padding-right: 1.5rem;
}
.article-content ul {
	list-style: disc;
}
.article-content ol {
	list-style: decimal;
}
.article-content li {
	margin-top: 0.4rem;
}
.article-content img {
	border-radius: 0.75rem;
	margin: 1.5rem auto;
	max-width: 100%;
	height: auto;
	box-shadow: 0 12px 30px rgba(0, 33, 71, 0.12);
}
.article-content figure {
	margin: 1.5rem 0;
}
.article-content figcaption {
	text-align: center;
	font-size: 0.9rem;
	color: #74777f;
	margin-top: 0.5rem;
}
.article-content blockquote {
	border-right: 4px solid #B8993C;
	background: #f3f3f3;
	padding: 1rem 1.25rem;
	border-radius: 0.5rem;
	color: #002147;
	font-size: 1.1rem;
}
.article-content table {
	width: 100%;
	border-collapse: collapse;
	margin: 1.5rem 0;
}
.article-content th,
.article-content td {
	border: 1px solid #c4c6cf;
	padding: 0.6rem 0.9rem;
	text-align: right;
}
.article-content th {
	background: #002147;
	color: #fff;
}

/* أزرار المشاركة + بطاقات الشريط الجانبي */
.share-btn {
	width: 42px;
	height: 42px;
	border-radius: 9999px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #002147;
	color: #fff;
	transition: background-color 0.25s ease, color 0.25s ease, transform 0.2s ease;
}
.share-btn:hover {
	background: #B8993C;
	color: #002147;
	transform: translateY(-3px);
}

/* ترقيم الصفحات (Pagination) */
.pagination {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.5rem;
	margin-top: 3rem;
}
.pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 44px;
	height: 44px;
	padding: 0 0.85rem;
	border-radius: 0.5rem;
	border: 1px solid #c4c6cf;
	background: #fff;
	color: #002147;
	font-weight: 600;
	transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.pagination .page-numbers:hover {
	background: #002147;
	color: #fff;
	border-color: #002147;
}
.pagination .page-numbers.current {
	background: #B8993C;
	color: #002147;
	border-color: #B8993C;
}
.pagination .page-numbers.dots {
	border-color: transparent;
	background: transparent;
}

/* =========================================================================
   2) قائمة الموبايل المنزلقة
   ========================================================================= */
#mobile-menu {
	visibility: hidden;
	opacity: 0;
	transition: opacity 0.35s ease, visibility 0.35s ease;
}
#mobile-menu.is-open {
	visibility: visible;
	opacity: 1;
}
#mobile-menu .menu-panel {
	transform: translateX(100%); /* مخفية لليمين (RTL) */
	transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
#mobile-menu.is-open .menu-panel {
	transform: translateX(0);
}
body.menu-open {
	overflow: hidden;
}

/* =========================================================================
   3) الظهور التدريجي عند التمرير (Scroll Reveal)
   ========================================================================= */
[data-reveal] {
	opacity: 0;
	transform: translateY(34px);
	transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
		transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
	will-change: opacity, transform;
}
[data-reveal].is-visible {
	opacity: 1;
	transform: none;
}
[data-reveal='right'] {
	transform: translateX(40px);
}
[data-reveal='left'] {
	transform: translateX(-40px);
}
[data-reveal='zoom'] {
	transform: scale(0.92);
}
/* على الشاشات الصغيرة: ظهور عمودي فقط لتجنّب الانزياح الأفقي (overflow) */
@media ( max-width: 1023px ) {
	[data-reveal='right'],
	[data-reveal='left'] {
		transform: translateY(34px);
	}
}

/* منع أي تمرير أفقي عرضي */
html,
body {
	overflow-x: hidden;
	max-width: 100%;
}

/* =========================================================================
   4) دخول الـ Hero عند تحميل الصفحة
   ========================================================================= */
@keyframes heroFadeUp {
	from {
		opacity: 0;
		transform: translateY(36px);
	}
	to {
		opacity: 1;
		transform: none;
	}
}
.hero-fade {
	opacity: 0;
	animation: heroFadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

/* تكبير بطيء لخلفية الـ Hero (Ken Burns) */
@keyframes kenburns {
	from {
		transform: scale(1);
	}
	to {
		transform: scale(1.14);
	}
}
.hero-bg {
	animation: kenburns 20s ease-out forwards;
}

/* سلايدر الهيرو */
.hero-slider {
	background-color: #002147; /* خلفية احتياطية إن تعذّر تحميل الصور */
}
.hero-slide {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	opacity: 0;
	transition: opacity 1.4s ease-in-out;
	will-change: opacity;
}
.hero-slide.is-active {
	opacity: 1;
	animation: kenburns 8s ease-out forwards;
}
.hero-dots {
	display: flex;
	gap: 10px;
}
.hero-dot {
	width: 10px;
	height: 10px;
	border-radius: 9999px;
	background: rgba(255, 255, 255, 0.45);
	cursor: pointer;
	transition: width 0.35s ease, background-color 0.35s ease;
}
.hero-dot.is-active {
	width: 28px;
	background: #B8993C;
}

/* =========================================================================
   5) بطاقات بحركة رفع ناعمة
   ========================================================================= */
.lift-card {
	transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
		box-shadow 0.4s ease, border-color 0.3s ease;
}
.lift-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 40px -12px rgba(0, 33, 71, 0.18);
}

/* أيقونة البطاقة تدور قليلاً عند المرور */
.lift-card .card-icon {
	transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), background-color 0.3s ease;
}
.lift-card:hover .card-icon {
	transform: rotate(-6deg) scale(1.08);
}

/* =========================================================================
   5.1) تبويبات الطلاب المتميّزين (Tabs)
   ========================================================================= */
.tab-btn {
	background-color: #ffffff;
	color: #002147;
	border: 1px solid #c4c6cf;
	transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease,
		transform 0.2s ease;
}
.tab-btn:hover {
	border-color: #B8993C;
	transform: translateY(-2px);
}
.tab-btn.is-active {
	background-color: #002147;
	color: #ffffff;
	border-color: #002147;
}

@keyframes tabFade {
	from {
		opacity: 0;
		transform: translateY(14px);
	}
	to {
		opacity: 1;
		transform: none;
	}
}
.tab-panel:not(.is-hidden) {
	animation: tabFade 0.45s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.tab-panel.is-hidden {
	display: none;
}

/* إخفاء شريط التمرير الأفقي للتبويبات مع إبقاء إمكانية التمرير */
.tabs-scroll {
	scrollbar-width: none;
}
.tabs-scroll::-webkit-scrollbar {
	display: none;
}

/* =========================================================================
   6) زر العودة للأعلى
   ========================================================================= */
#scroll-top {
	position: fixed;
	bottom: 28px;
	left: 28px;
	z-index: 55;
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #002147;
	color: #fff;
	border-radius: 50%;
	box-shadow: 0 10px 25px rgba(0, 33, 71, 0.3);
	opacity: 0;
	visibility: hidden;
	transform: translateY(20px);
	transition: all 0.35s ease;
}
#scroll-top.is-visible {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}
#scroll-top:hover {
	background-color: #B8993C;
	transform: translateY(-4px);
}

/* =========================================================================
   7) تجاوب — تصغير الهوامش والعناوين على الموبايل
   ========================================================================= */
@media (max-width: 767px) {
	::-webkit-scrollbar {
		width: 4px;
	}
	#scroll-top {
		bottom: 18px;
		left: 18px;
		width: 44px;
		height: 44px;
	}
}

/* =========================================================================
   8) احترام تفضيل تقليل الحركة
   ========================================================================= */
@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}
	/* إيقاف الحركات الزخرفية فقط، وإظهار المحتوى فوراً */
	.hero-bg,
	.hero-slide.is-active {
		animation: none !important;
	}
	.hero-fade {
		opacity: 1 !important;
		animation: none !important;
	}
	[data-reveal] {
		opacity: 1 !important;
		transform: none !important;
		transition: none !important;
	}
	/* شريط الأخبار يُدار عبر JS (requestAnimationFrame) فلا يتأثر بهذا الإعداد */
}

/* =====================================================
   قائمة التنقل الرئيسية + القوائم المنسدلة (wp_nav_menu)
   ===================================================== */
.primary-menu, .primary-menu ul { list-style: none; margin: 0; padding: 0; }
.primary-menu > li { position: relative; }
.primary-menu > li > a {
	display: inline-flex; align-items: center; gap: .25rem;
	font-family: "Hanken Grotesk", sans-serif; font-weight: 600; font-size: .8rem;
	color: #141827; white-space: nowrap; padding: .5rem 0; transition: color .2s;
}
.primary-menu > li > a:hover,
.primary-menu > li.current-menu-item > a,
.primary-menu > li.current-menu-parent > a { color: #e79e38; }
.primary-menu > li.menu-item-has-children > a::after {
	content: "\25BE"; font-size: .7rem; opacity: .7; margin-inline-start: .15rem;
}
/* لوحة المنسدلة */
.primary-menu .sub-menu {
	position: absolute; top: calc(100% + 6px); right: 0; min-width: 250px;
	background: #fff; border: 1px solid #c4c6cf; border-radius: .5rem;
	box-shadow: 0 14px 40px rgba(20,24,39,.16); padding: .5rem;
	opacity: 0; visibility: hidden; transform: translateY(10px);
	transition: opacity .2s ease, transform .2s ease, visibility .2s; z-index: 60;
}
.primary-menu li.menu-item-has-children:hover > .sub-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.primary-menu .sub-menu li { position: relative; }
.primary-menu .sub-menu li a {
	display: block; padding: .6rem .8rem; border-radius: .375rem; font-size: .9rem;
	color: #1a1c1c; white-space: nowrap; transition: background .15s, color .15s, padding .15s;
}
.primary-menu .sub-menu li a:hover { background: #f3f3f3; color: #e79e38; padding-inline-end: 1.1rem; }
/* منسدلة من المستوى الثالث (إن وُجدت) */
.primary-menu .sub-menu .sub-menu { top: -.5rem; right: calc(100% + 6px); }

/* القائمة داخل درج الموبايل */
.mobile-menu-list a { display: block; padding: .65rem .75rem; border-radius: .5rem; color: #141827; font-weight: 500; transition: background .15s, color .15s; }
.mobile-menu-list a:hover { background: #f3f3f3; color: #e79e38; }
.mobile-menu-list .menu-item-has-children > a { font-weight: 700; }
.mobile-menu-list .sub-menu { margin: .15rem .25rem .5rem; padding-inline-start: .6rem; border-inline-start: 2px solid #e5c361; }
.mobile-menu-list .sub-menu a { font-size: .88rem; font-weight: 400; opacity: .9; }

/* =====================================================
   فيديوهات مضمّنة متجاوبة (يوتيوب/فيسبوك) + وسائط المحتوى
   ===================================================== */
.article-content iframe {
	display: block;
	width: 100% !important;
	max-width: 100%;
	aspect-ratio: 16 / 9;
	height: auto !important;
	min-height: 220px;
	border: 0;
	border-radius: 0.75rem;
	margin: 1.75rem auto;
	background: #0b0f1a;
	box-shadow: 0 10px 30px rgba(20,24,39,.14);
}
.article-content figure iframe { margin: 0 auto; }
.article-content video { display:block; width: 100%; border-radius: 0.75rem; margin: 1.75rem auto; }
/* تباعد أوضح بين كتل الأحداث (عنوان + نص + فيديو) */
.article-content h2 { padding-top: .5rem; border-top: 1px solid #ececf0; }
.article-content h2:first-child { border-top: 0; padding-top: 0; }

/* =====================================================
   نموذج Contact Form 7 بتصميم القالب
   ===================================================== */
.ct-contact-form .wpcf7-form > p { margin: 0 0 1.1rem; }
.ct-contact-form label { display: block; font-weight: 600; color: #141827; margin-bottom: .4rem; font-size: .95rem; }
.ct-contact-form input[type="text"],
.ct-contact-form input[type="email"],
.ct-contact-form input[type="tel"],
.ct-contact-form input[type="url"],
.ct-contact-form input[type="number"],
.ct-contact-form input[type="date"],
.ct-contact-form textarea,
.ct-contact-form select {
	width: 100%;
	background: #f9f9f9;
	border: 1px solid #c4c6cf;
	border-radius: 0.6rem;
	padding: 0.85rem 1rem;
	font-family: inherit;
	font-size: 1rem;
	color: #1a1c1c;
	transition: border-color .2s, box-shadow .2s, background .2s;
}
.ct-contact-form textarea { min-height: 150px; resize: vertical; }
.ct-contact-form input:focus,
.ct-contact-form textarea:focus,
.ct-contact-form select:focus {
	outline: none; background: #fff;
	border-color: #e79e38;
	box-shadow: 0 0 0 3px rgba(231,158,56,.18);
}
.ct-contact-form input[type="submit"],
.ct-contact-form .wpcf7-submit {
	width: auto;
	background: #141827;
	color: #fff;
	border: 0;
	border-radius: 0.6rem;
	padding: 0.95rem 2.75rem;
	font-family: inherit;
	font-weight: 700;
	font-size: 1rem;
	cursor: pointer;
	margin-top: .35rem;
	transition: background .2s, transform .2s, box-shadow .2s;
}
.ct-contact-form input[type="submit"]:hover,
.ct-contact-form .wpcf7-submit:hover { background: #e79e38; color: #141827; transform: translateY(-2px); box-shadow: 0 8px 22px rgba(231,158,56,.3); }
.ct-contact-form .wpcf7-spinner { margin: .5rem; }
.wpcf7-response-output { border-radius: .5rem; margin: 1rem 0 0 !important; padding: .8rem 1rem !important; font-size: .95rem; }
.wpcf7 form.sent .wpcf7-response-output { border-color: #3c9a5f; background: #eafaf0; color: #1e6b3c; }
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.failed .wpcf7-response-output { border-color: #ba1a1a; background: #ffecec; color: #93000a; }
.wpcf7-not-valid-tip { color: #ba1a1a; font-size: .85rem; margin-top: .25rem; }

/* =====================================================
   تحسين احترافي لعرض محتوى الصفحات/الأخبار
   ===================================================== */
/* محاذاة يمين للعربي (تجاوز التوسيط القديم في المحتوى) */
.article-content,
.article-content p,
.article-content h1, .article-content h2, .article-content h3, .article-content h4, .article-content h5, .article-content h6,
.article-content ul, .article-content ol, .article-content li,
.article-content blockquote { text-align: right !important; }
.article-content { direction: rtl; color: #2b2f36; font-size: 1.1rem; line-height: 2; }
.article-content p { font-weight: 400; margin-top: 1.15rem; }
/* أول فقرة كمقدّمة بارزة */
.article-content > p:first-of-type { font-size: 1.2rem; color: #141827; font-weight: 500; }
/* عناوين بشريط ذهبي جانبي (تصميم بدل الخط العلوي) */
.article-content h2 {
	border-top: 0 !important;
	position: relative;
	padding: 0 1rem 0 0;
	margin-top: 2.75rem;
	font-size: 1.7rem;
	line-height: 1.5;
}
.article-content h2::before {
	content: ""; position: absolute; right: 0; top: .1em; bottom: .1em;
	width: 5px; border-radius: 3px; background: #e79e38;
}
.article-content h3 { margin-top: 2rem; font-size: 1.35rem; }
/* صور المحتوى: إطار وظل خفيف */
.article-content img { box-shadow: 0 8px 26px rgba(20,24,39,.12); margin: 1.75rem auto; }
/* قوائم أنيقة */
.article-content ul li::marker { color: #e79e38; }
.article-content ol li::marker { color: #e79e38; font-weight: 700; }

/* قائمة أوسع على الشاشات الكبيرة */
@media (min-width: 1360px) { .primary-menu > li > a { font-size: .9rem; } }
