/* ==========================================================================
   feature-item.css — بطاقة ميزة (Feature card — لماذا يثق بنا)
   شركة السرعة المطلقة | كل القيم من tokens.css — RTL.
   بطاقة بيضاء: أيقونة دائرية + عنوان + نص. البطاقات تتقابل حول الإطار المركزي:
   المجموعة اليمنى الأيقونة للداخل (يسار)، اليسرى الأيقونة للداخل (يمين).
   WC-NOTE: ثابت (static)
   ========================================================================== */

/* المجموعة — بطاقتان مكدّستان عموديًا */
.feature-item-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-48);
  align-items: center;
}

/* البطاقة */
.feature-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: var(--space-16);
  width: 392px;
  max-width: 100%;
  padding: var(--space-16);
  border-radius: var(--radius-lg);
  border: var(--border-width) solid var(--color-border);
  background: var(--color-surface);
  box-shadow: var(--shadow-card);
}

/* بطاقات جهة البداية (يمين RTL): تُعكس ليكون الأيقونة للداخل،
   والنص محاذاة ناحية الأيقونة (يسار) */
.feature-item--right {
  flex-direction: row-reverse;
}
.feature-item--right .feature-item__body {
  text-align: left;
}

/* الأيقونة الدائرية — 78px بتوهّج خفيف */
.feature-item__icon {
  flex-shrink: 0;
  width: 78px;
  height: 78px;
  padding: var(--space-16);
  border-radius: var(--radius-pill);
  background: var(--color-surface);
  box-shadow: var(--shadow-icon);
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-item__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* النص */
.feature-item__body {
  flex: 1;
}
.feature-item__title {
  font-size: var(--fs-md);
  font-weight: var(--fw-bold);
  color: var(--color-text);
  margin-block-end: var(--space-4);
}
.feature-item__text {
  font-size: var(--fs-base);
  font-weight: var(--fw-regular);
  line-height: 1.375;
  color: var(--color-text);
}
