
  :root {
    --color-background: #f7fafc;
    --color-background-alt: #f7fafa;
    --color-text-primary: #0d121c;
    --color-text-secondary: #121417;
    --color-text-muted: #667582;
    --color-text-footer: #d5e3ff;
    --color-text-footer-alt: #d7e4ff;
    --color-border: #e5e8eb;
    --color-icon-bg: #e8edf2;
    --color-footer-bg: #000000;

  }

  /* Positioning for merged icons - may need adjustments */
  .icon-part-1 { top: 5px; left: 4px; width: 15px; height: 13px; transform: rotate(90deg); }
  .icon-part-2 { top: 6px; left: 11px; width: 12px; height: 13px; }
  .icon-part-3 { top: 4px; left: 8px; width: 8px; height: 7px; }
  .icon-part-4 { top: 13px; left: 13px; width: 8px; height: 7px; }
  .icon-part-5 { top: 13px; left: 2px; width: 8px; height: 7px; }
  .icon-part-6 { top: 5px; left: 3px; width: 18px; height: 7px; }

  @media (max-width: 992px) {
    .main-nav {
      display: none; /* Hide nav on smaller screens, requires JS for hamburger menu */
    }
  }

/* CSS from section:articles */
  .section-title {
    text-align: center;
    font-weight: 700;
    font-size: 32px;
    color: var(--color-text-primary);
    margin: 40px 0 60px 0;
  }
  .articles-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
  }
  .article-card {
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
  }
  .article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
  }
  .article-card a {
    display: flex;
    flex-direction: column;
    height: 100%;
  }
  .card-image {
    width: 100%;
    height: 125px;
    object-fit: cover;
  }
  .card-content {
    padding: 12px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
  }
  .card-title {

    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: var(--color-text-primary);
    margin: 0 0 4px 0;
  }
  .card-description {

    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    color: var(--color-text-muted);
    margin: 0;
  }
  @media (max-width: 992px) {
    .articles-grid {
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }
  }


  /* Articles Section - تحسينات قسم المقالات */


.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.article-card {
  background-color: white;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
  border: 1px solid var(--saraha-border-light);
}

.article-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  border-color: var(--saraha-primary);
}

.article-card a {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
}

.card-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.article-card:hover .card-image {
  transform: scale(1.05);
}

.card-content {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.card-title {

  font-weight: 700;
  font-size: 1.1rem;
  line-height: 1.4;
  color: var(--saraha-dark-primary);
  margin-bottom: 0.75rem;
  transition: color 0.3s ease;
}

.article-card:hover .card-title {
  color: var(--saraha-primary);
}

.card-description {
  font-weight: 400;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--saraha-dark-secondary);
  margin-bottom: 1rem;
}

section#articles {
    margin-bottom: 45px;
}