/* مركز المعرفة والمشاركة الإلكترونية — أنماط مشتركة (BEM: kc-) */

.kc-page-shell { padding-bottom: 40px; }

.kc-title {
  font-size: 38px;
  font-weight: 900;
  color: #0f5132;
  margin: 26px 0 14px;
  line-height: 1.4;
}

.kc-intro {
  font-size: 18px;
  line-height: 2;
  color: #374151;
  max-width: 900px;
  margin: 0 0 28px;
}

/* ---------- الشبكة ---------- */
.kc-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin: 0 0 34px;
}
.kc-grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.kc-grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
/* الشبكة داخل قسم: القسم يتكفّل بالهامش السفلي */
.kc-section .kc-grid { margin-bottom: 0; }

/* ---------- البطاقة ---------- */
.kc-card {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: 1px solid #e7eef4;
  border-radius: 16px;
  padding: 26px 22px 22px;
  box-shadow: 0 10px 26px rgba(17, 24, 39, 0.05);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.kc-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 38px rgba(17, 24, 39, 0.10);
  border-color: #cfe3d8;
}

.kc-card__icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: #f3fcf6;
  color: #1b8354;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  flex: 0 0 auto;
}
.kc-card__icon svg { width: 26px; height: 26px; }

.kc-card__title {
  font-size: 21px;
  font-weight: 800;
  color: #0f5132;
  margin: 0 0 10px;
  line-height: 1.5;
}

.kc-card__desc {
  font-size: 16px;
  line-height: 1.9;
  color: #4b5563;
  margin: 0 0 18px;
  flex: 1 1 auto;
}

.kc-card__more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 800;
  color: #1b8354;
  margin-top: auto;
}
/* سهم يشير لليسار (اتجاه القراءة في RTL) */
.kc-card__more::after {
  content: "";
  width: 7px; height: 7px;
  border-top: 2px solid currentColor;
  border-left: 2px solid currentColor;
  transform: rotate(-45deg);
  transition: transform .2s ease;
}
.kc-card:hover .kc-card__more::after { transform: rotate(-45deg) translateX(-4px); }

/* ---------- بطاقة المنصة الخارجية ---------- */
.kc-platform-card {
  background: #ffffff;
  border: 1px solid #e7eef4;
  border-radius: 16px;
  padding: 28px 24px;
  box-shadow: 0 10px 26px rgba(17, 24, 39, 0.05);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.kc-platform-card__title {
  font-size: 22px;
  font-weight: 800;
  color: #0f5132;
  margin: 0 0 12px;
}
.kc-platform-card__desc {
  font-size: 16px;
  line-height: 1.95;
  color: #4b5563;
  margin: 0 0 22px;
  flex: 1 1 auto;
}
.kc-platform-card__btn {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #1b8354;
  color: #ffffff;
  border-radius: 12px;
  padding: 12px 22px;
  font-size: 16px;
  font-weight: 800;
  border: 1.5px solid #1b8354;
  transition: background .2s ease, color .2s ease;
}
.kc-platform-card__btn:hover { background: #ffffff; color: #1b8354; }
.kc-platform-card__btn svg { width: 18px; height: 18px; }

/* ---------- أقسام نصية ---------- */
.kc-section { margin: 0 0 34px; }

.kc-section__title {
  font-size: 25px;
  font-weight: 800;
  color: #0f5132;
  margin: 0 0 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid #e7eef4;
}

.kc-paragraph {
  font-size: 17px;
  line-height: 2.05;
  color: #374151;
  margin: 0 0 16px;
  max-width: 980px;
}

.kc-bullets { list-style: none; padding: 0; margin: 0 0 18px; }
.kc-bullets li {
  position: relative;
  padding-right: 26px;
  margin-bottom: 12px;
  font-size: 17px;
  line-height: 1.95;
  color: #374151;
}
.kc-bullets li::before {
  content: "";
  position: absolute;
  right: 6px;
  top: 13px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #1b8354;
}

/* ---------- الجداول ---------- */
.kc-table-wrap {
  overflow-x: auto;
  border: 1px solid #e7eef4;
  border-radius: 14px;
  margin: 0 0 26px;
}
.kc-table { width: 100%; border-collapse: collapse; min-width: 560px; }
.kc-table th,
.kc-table td {
  padding: 14px 18px;
  text-align: right;
  font-size: 16px;
  line-height: 1.8;
  border-bottom: 1px solid #e7eef4;
}
.kc-table th { background: #f3fcf6; color: #0f5132; font-weight: 800; }
.kc-table tr:last-child td { border-bottom: none; }
.kc-table tbody tr:hover { background: #fafcfb; }

/* ---------- الإحصائيات ---------- */
.kc-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin: 0 0 30px;
}
.kc-stat {
  background: #ffffff;
  border: 1px solid #e7eef4;
  border-radius: 14px;
  padding: 22px 18px;
  text-align: center;
}
.kc-stat__value {
  display: block;
  font-size: 30px;
  font-weight: 900;
  color: #1b8354;
  line-height: 1.3;
}
.kc-stat__label {
  display: block;
  font-size: 15px;
  color: #4b5563;
  margin-top: 8px;
  line-height: 1.7;
}
.kc-stats-note {
  font-size: 14px;
  color: #6b7280;
  background: #f9fafb;
  border: 1px dashed #d1d5db;
  border-radius: 10px;
  padding: 12px 16px;
  margin: 0 0 28px;
}

/* ---------- روابط مفيدة ---------- */
.kc-links { list-style: none; padding: 0; margin: 0; }
.kc-links li { margin-bottom: 12px; }
.kc-links a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 17px;
  color: #1b8354;
  font-weight: 700;
}
.kc-links a::before {
  content: "";
  width: 7px; height: 7px;
  border-top: 2px solid currentColor;
  border-left: 2px solid currentColor;
  transform: rotate(-45deg);
  flex: 0 0 auto;
}

/* ---------- استجابة ---------- */
@media (max-width: 1024px) {
  .kc-grid, .kc-grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .kc-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .kc-title { font-size: 32px; }
}

@media (max-width: 520px) {
  .kc-grid, .kc-grid--2, .kc-grid--4 { grid-template-columns: 1fr; }
  .kc-stats { grid-template-columns: 1fr; }
  .kc-title { font-size: 27px; }
  .kc-intro, .kc-paragraph, .kc-bullets li { font-size: 16px; }
  .kc-card { padding: 22px 18px 18px; }
  .kc-platform-card__btn { align-self: stretch; justify-content: center; }
}
