.img-side {
  position: relative;
  display: inline-block;
  overflow: hidden;
  /* لازم ارتفاع كمان علشان الشكل يبقى دايرة */
  border-radius: 50%;
}

.img-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 50%;
  position: relative;
  z-index: 1; /* الصورة تحت */
}

.text-personal p {
  color: #ebd391;
}
.text-personal h4 {
  color: #5c2000;
  padding-bottom: 12px;
}
.text-personal .btn {
  background-color: #fdffdb;
  color: #5c2000;
  font-size: 25px;
  font-weight: 500;
  width: 120px;
  text-align: right; /* 🔹 الكلمة تبقى ناحية اليمين */
  padding-right: 15px; /* مسافة بسيطة من الحافة */
}

.text-personal .btn:hover {
  background-color: #ebd391;
  cursor: pointer;
}
.text-comment p {
  font-weight: 500;
  font-size: 20px;
  font-style: medium;
  color: #5c2000;
}
.make-comment {
  background-color: #fff; /* أو أي لون خلفية تفضليه */
  border-radius: 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  gap: 10px; /* مسافة بين العناصر */
  width: fit-content; /* أو 100% لو عايزةها بعرض الكونتينر */
  margin-right: 45px;
}

/* الصورة */
.make-comment .img-side img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

/* input */
.make-comment input {
  flex: 1; /* يخلي الـ input يتمدّ */
  border: none;
  outline: none;
  font-size: 16px;
  padding: 10px 15px;
  border-radius: 25px;
  color: #5c2000;
  background-color: transparent;
}

/* اللون الذهبي للـ placeholder */
.make-comment input::placeholder {
  color: #d4af37; /* ذهبي */
  font-weight: 500;
}

/* السهم */
.make-comment .arrow {
  width: 25px;
  height: 25px;
  cursor: pointer;
  margin-left: 8px;
  transition: transform 0.2s ease;
}

.make-comment .arrow:hover {
  transform: scale(1.1);
}
.custom-line {
  width: 60%; /* 👈 يعنى الخط ياخد 60% من عرض الصفحة */
  margin: 45px auto; /* يخليه في النص */
  border: none; /* نحذف الشكل الافتراضى */
  border-top: 2px solid #d4af37; /* لون ذهبي أو اللي تحبيه */
  border-radius: 5px; /* يخليه ناعم شوي */
  opacity: 0.8; /* خليه مش غامق جدًا */
}
.img-comment {
  display: flex;
  align-items: center; /* يخلي الصورة والنص في نفس المستوى */
  gap: 0; /* يمنع أي مسافة بين العناصر */
}

.img-comment > div {
  margin: 0;
  padding: 0;
}

/* الصورة */
.img-comment .desert {
  width: 250px; /* عدلي الحجم حسب ما تحبي */
  height: auto;
  display: block;
}

/* النص */
.img-comment p {
  margin: 0;
  padding: 0 10px; /* ممكن تخليها 0 لو عايزة يلاصق الصورة تمامًا */
  color: #5c2000;
  font-size: 18px;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .personal {
    padding: 10px;
  }
  .make-comment {
    margin-right: 20px;
    width: auto;
  }
  .text-comment p {
    font-size: 16px;
    padding-right: 100px;
  }
  .img-comment {
    flex-direction: column; /* الأعمدة فوق بعض */
    gap: 15px; /* تقل المسافة شويه */
  }

  .img-comment > div {
    width: 100%; /* كل جزء ياخد العرض كامل */
  }

  .make-comment {
    flex-direction: column; /* لو عايزة تعليق المستخدم يتحول تحت الصورة بدل جنبها */
    gap: 10px;
  }

  .make-comment input {
    width: 100%;
  }
}
