/* ===== حوكمة - تصميم عام ===== */

.hawkama-container {
  background: #f6f7f9;
  padding: 40px 0;
}

.hawkama-content {
  max-width: 1200px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 32px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
  border: 1px solid #dde7f0;
  padding: 32px 28px;
  direction: rtl;
  text-align: right;
}

/* العمود الأساسي (النص) */
.governance-sections {
  border-left: 2px solid #dde7f0;
  padding-left: 32px;
}

/* اللوغو على اليسار */
.logo-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 24px 16px;
}

.logo-section img {
  max-width: 180px;
  height: auto;
}

/* في الشاشات الكبيرة نخلي اللوغو ثابت (sticky) */
@media (min-width: 992px) {
  .logo-section {
    position: sticky;
    top: 110px;
  }
}

/* ===== عناوين الأقسام ===== */

.governance-section {
  margin-bottom: 32px;
}

.section-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #006f6b;
  margin-bottom: 12px;
  position: relative;
}

.section-title::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -6px;
  width: 70px;
  height: 3px;
  border-radius: 999px;
  background: #469e8d;
}

/* ألوان خاصة لعناوين فرعية */
.policies-title {
  color: #faa440;
}

.policies-title::after {
  background: #faa440;
}

.regulations-title {
  color: #faa440;
}

.regulations-title::after {
  background: #faa440;
}

.reports-title {
  color: #faa440;
}

.reports-title::after {
  background: #faa440;
}

/* ===== قائمة أهمية الحوكمة ===== */

.governance-importance {
  margin: 10px 0 0;
  padding-right: 1.2rem;
  list-style: disc;
}

.governance-importance li {
  margin-bottom: 8px;
  line-height: 1.9;
  color: #444;
  font-size: 0.95rem;
}

/* ===== قوائم الملفات (سياسات / لوائح / تقارير) ===== */

.policies-list,
.regulations-list,
.reports-list {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
}

.policies-list li,
.regulations-list li,
.reports-list li {
  margin-bottom: 10px;
}

/* رابط الملف */
.policy-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 14px;
  border: 1px solid #e2edf4;
  background: #fbfdff;
  text-decoration: none;
  color: #1a2933;
  transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
}

.policy-link:hover {
  background: #f3f8fc;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}

/* محتوى الملف (أيقونة + نص) */
.policy-content {
  display: flex;
  align-items: center;
  gap: 10px;
}

.policy-content img {
  width: 22px;
  height: auto;
}

.policy-text {
  font-size: 0.95rem;
  font-weight: 500;
  color: #23313c;
}

/* سهم التحميل */
.download-arrow {
  font-size: 0.9rem;
  color: #faa440;
}

/* ===== ريسبونسيف ===== */

@media (max-width: 991.98px) {
  .hawkama-content {
    padding: 20px 18px;
  }

  .governance-sections {
    border-left: none;
    padding-left: 0;
    border-top: 1px solid #dde7f0;
    margin-top: 20px;
    padding-top: 20px;
  }

  .logo-section {
    margin-bottom: 10px;
  }
}

@media (max-width: 575.98px) {
  .section-title {
    font-size: 1.2rem;
  }

  .policy-link {
    padding: 9px 10px;
  }

  .policy-text {
    font-size: 0.9rem;
  }
}
