.compounds-widget-wrapper {
	width: 100%;
	direction: rtl;
}

.compounds-title-wrap {
	margin-bottom: 20px;
}

.compounds-title {
	font-size: 28px;
	font-weight: 700;
	margin: 0;
}

/* الحاوية الأساسية للسلايدر - بانر واحد كبير بعرض السكشن مع بروز بسيط للي جنبه */
.compounds-swiper {
	width: 100%;
	overflow: visible;
	position: relative;
	padding-bottom: 40px; /* مساحة للنقاط تحت */
}

.compounds-swiper .swiper {
	overflow: visible;
}

.compounds-swiper .swiper-wrapper {
	align-items: stretch;
}

.compounds-slide {
	width: 100%;
	height: auto;
	display: flex;
	flex-direction: column;
}

/*
 * كل الصور تاخد نفس حجم أول صورة تلقائيًا عن طريق:
 * - object-fit: cover بيخلي أي صورة تتقص وتتملي على نفس المقاس
 * - الحجم الفعلي (height) بيتحدد من الجافاسكريبت بناءً على أول صورة
 */
.compounds-slide img,
.compounds-single-banner img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

/* حالة الصورة الواحدة: بانر كبير كامل العرض من غير سلايدر */
.compounds-single-banner {
	width: 100%;
}

.compounds-caption {
	margin-top: 8px;
	font-size: 14px;
	text-align: center;
	color: #555;
}

/* أسهم التنقل */
.compounds-swiper .swiper-button-next,
.compounds-swiper .swiper-button-prev {
	width: 40px;
	height: 40px;
	background: rgba(255, 255, 255, 0.9);
	border-radius: 50%;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
	color: #1a1a1a;
}

.compounds-swiper .swiper-button-next::after,
.compounds-swiper .swiper-button-prev::after {
	font-size: 16px;
	font-weight: bold;
}

/* عشان الموقع RTL، نبدل اتجاه الأسهم بصريًا */
.compounds-swiper .swiper-button-next {
	right: auto;
	left: 10px;
}
.compounds-swiper .swiper-button-prev {
	left: auto;
	right: 10px;
}

/* نقاط التنقل */
.compounds-swiper .swiper-pagination {
	bottom: 0;
}

.compounds-swiper .swiper-pagination-bullet {
	background: #999;
	opacity: 0.6;
}

.compounds-swiper .swiper-pagination-bullet-active {
	background: #1a1a1a;
	opacity: 1;
}

@media (max-width: 767px) {
	.compounds-title {
		font-size: 22px;
	}
}
