/* =========================
   VIEW ALL NEWS BUTTON
   ثابت وجميل RTL / LTR
========================= */

/* الحاوية (العنوان + الزر) */
.section-header--row{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

/* نص العنوان */
.section-header--row > div{
  flex: 1 1 auto;
  min-width: 0;
}

/* الزر */
.section-header--row .btn-main.btn-main--small{
  flex: 0 0 auto;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  height: 44px;              /* ارتفاع ثابت */
  padding: 0 18px;           /* عرض مريح */
  font-size: 13px;
  font-weight: 800;
  line-height: 1;

  border-radius: 999px;      /* ستايل مواقع عالمية */
  white-space: nowrap;       /* لا ينكسر النص */
}

/* جوال */
@media (max-width: 768px){
  .section-header--row{
    flex-direction: column;
    align-items: stretch;
  }

  .section-header--row .btn-main.btn-main--small{
    align-self: flex-start;  /* LTR */
    height: 40px;
    padding: 0 16px;
    font-size: 12px;
  }

  html[dir="rtl"] .section-header--row .btn-main.btn-main--small{
    align-self: flex-end;    /* RTL */
  }
}
