.fc-trainers {
  padding: 60px 20px;
  background: #2b2b2b;
  text-align: center;
  direction: rtl;
  font-family: Tahoma, Arial, sans-serif;
}

.fc-trainers * {
  box-sizing: border-box;
}

/* العنوان الرئيسي */
.fc-trainers .trainers-title {
  color: #c62828;
  font-size: 32px;
  font-weight: 800;
  margin: 0 0 12px;
}

/* الوصف (تم التعديل هنا) */
.fc-trainers .trainers-desc {
  text-align: center;
  direction: rtl;
  margin: 0 auto 40px;
  max-width: 650px;
  color: #f1f1f1;
  font-size: 17px;
  line-height: 2;
}

/* عنوان الأقسام */
.fc-trainers .trainers-subtitle {
  color: #c62828;
  font-size: 24px;
  font-weight: 800;
  margin: 50px 0 24px;
}

/* الشبكة */
.fc-trainers .trainers-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
}

/* الكارد */
.fc-trainers .trainer-card {
  background: linear-gradient(180deg, #232323 0%, #1b1b1b 100%);
  border-radius: 18px;
  padding: 18px 18px 20px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.fc-trainers .trainer-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.45);
}

/* حاوية الصورة */
.fc-trainers .trainer-photo {
  width: 100%;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #2f2f2f;
  border-radius: 14px;
  overflow: hidden;
  padding: 12px;
}

/* الصورة (مهم جدًا لإظهارها كاملة) */
.fc-trainers .trainer-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  border-radius: 10px;
}

/* الاسم */
.fc-trainers .trainer-name {
  margin-top: 16px;
  color: #c62828;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.5;
}

/* الوظيفة */
.fc-trainers .trainer-role {
  margin-top: 6px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
}

/* حماية النصوص الطويلة */
.fc-trainers .trainer-name,
.fc-trainers .trainer-role {
  word-break: break-word;
}

/* تابلت */
@media (max-width: 992px) {
  .fc-trainers .trainers-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .fc-trainers .trainer-photo {
    height: 300px;
  }
}

/* جوال */
@media (max-width: 640px) {
  .fc-trainers {
    padding: 40px 14px;
  }

  .fc-trainers .trainers-title {
    font-size: 28px;
  }

  .fc-trainers .trainers-desc {
    font-size: 15px;
  }

  .fc-trainers .trainers-subtitle {
    font-size: 22px;
    margin: 40px 0 20px;
  }

  .fc-trainers .trainers-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .fc-trainers .trainer-photo {
    height: 280px;
  }

  .fc-trainers .trainer-name {
    font-size: 20px;
  }

  .fc-trainers .trainer-role {
    font-size: 15px;
  }
}