/* =========================
   BASE
========================= */
.moit-org-image-block {
  max-width: 1100px;
  margin: auto;
  padding: 40px 20px;
  direction: rtl;
  font-family: 'Cairo', sans-serif;
}

/* =========================
   HEADER
========================= */
.moit-org-image-block__header {
  background: #ffffff;

  border: 1px solid #dfe9ee;

  border-radius: 20px;

  padding: 28px;

  margin-bottom: 30px;

  box-shadow:
    0 8px 20px rgba(0,0,0,.04);
}

.moit-org-image-block__header h2 {
  margin-bottom: 10px;
  font-size: 26px;
}

.moit-org-image-block__header p {
  font-size: 15px;
  line-height: 1.8;
}

/* =========================
   IMAGE WRAPPER
========================= */
.moit-org-image-block__wrapper {
  position: relative;
  background: #fff;
  border-radius: 16px;
  padding: 10px;
  overflow: hidden;
  cursor: zoom-in;
  
  border: 1px solid #dfe9ee;

  box-shadow:
    0 8px 20px rgba(0,0,0,.04);
}

/* إزالة الشادو */
.moit-org-image-block__wrapper:hover {
  box-shadow: none;
}

/* الصورة */
.moit-org-image-block__img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

/* =========================
   OVERLAY (احترافي)
========================= */
.moit-org-overlay {
  position: absolute;
  inset: 0;
  background: rgba(11, 61, 46, 0.45);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.moit-org-image-block__wrapper:hover .moit-org-overlay {
  opacity: 1;
}

/* زر الزوم */
.moit-org-zoom-icon {
  background: #c8a45d;
  color: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  font-size: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* =========================
   LIGHTBOX (احترافي)
========================= */
.moit-org-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

/* تفعيل */
.moit-org-lightbox.active {
  display: flex;
}

/* الصورة */
.moit-org-lightbox img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 10px;
}

/* زر الإغلاق */
.moit-org-close {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 35px;
  color: #fff;
  cursor: pointer;
}

/* =========================
   ACTIONS (PDF)
========================= */
.moit-org-actions {
  text-align: center;
  margin-top: 20px;
}

.moit-org-actions a {

  background:
    linear-gradient(
      135deg,
      #0b3c5d,
      #1f8a8a
    );

  color: #fff;

  padding: 12px 24px;

  border-radius: 12px;

  font-weight: 700;

  transition: all .25s ease;
}

.moit-org-actions a:hover {

  transform: translateY(-2px);

  opacity: .95;
}

/* =========================
   MOBILE (حل نهائي)
========================= */
@media (max-width: 768px) {

  .moit-org-image-block__wrapper {
    overflow: visible; /* مهم */
  }

  .moit-org-image-block__img {
    width: 100%;
    height: auto;
    min-width: auto; /* إزالة المشكلة */
  }

}

/* =========================
   BLOCKQUOTE احترافي
========================= */
.moit-org-quote {
  background: #ffffff;
  padding: 25px 25px 25px 20px;
  border-radius: 12px;
  position: relative;
  line-height: 2;
  font-size: 1rem;
  color: #333;
  margin: 0;

  /* خط accent */
  border-right: 6px solid #c8a45d;

  /* ظل خفيف */
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

/* لمسة فخامة بسيطة */
.moit-org-quote::before {
  content: "“";
  position: absolute;
  top: 5px;
  left: 15px;
  font-size: 40px;
  color: #c8a45d;
  opacity: 0.3;
}

/* =========================
   FOOTER CLOSING SECTION
========================= */
.moit-org-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap; /* يمنع النزول */
  gap: 20px;

  margin-top: 50px;
  padding: 15px 20px;
  background: #ffffff;
  border-radius: 50px;
  font-size: 14px;
  
  border: 1px solid #dfe9ee;

  box-shadow:
    0 8px 20px rgba(0,0,0,.04);
}

/* كل جزء */
.moit-org-footer__right,
.moit-org-footer__center,
.moit-org-footer__left {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap; /* يمنع كسر السطر */
}

/* النجوم */
.moit-org-rating {
  display: flex;
  gap: 4px;
}

/* السوشال */
/* =========================
   SOCIAL ICONS - BRAND STYLE
========================= */
.moit-org-share a {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  transition: all 0.3s ease;
  text-decoration: none;
}

/* SVG */
.moit-org-share svg {
  transition: all 0.3s ease;
}

/* HOVER رسمي */
.moit-org-share a:hover {
  background: #0b3d2e; /* أخضر الوزارة */
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 6px 15px rgba(11, 61, 46, 0.25);
}

/* تغيير لون الأيقونة */
.moit-org-share a:hover svg path {
  fill: #ffffff !important;
}

/* مهم جدًا */
.moit-org-footer span,
.moit-org-footer p {
  margin: 0;
}

/* فقط للجوال */
@media (max-width: 768px) {
  .moit-org-footer {
    flex-wrap: wrap;
    justify-content: center;
  }
}
