.cf-carousel {
  display: flex;
  gap: 35px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 10px;

  /* مخفی کردن نوار اسکرول */
  -ms-overflow-style: none;
  /* برای IE و Edge */
  scrollbar-width: none;
  /* برای Firefox */
}

.cf-carousel::-webkit-scrollbar {
  display: none;
  /* برای Chrome, Safari, Opera */
}

.cf-item {
  flex: 0 0 auto;
  min-width: 250px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.062);
  padding: 25px 15px 25px 15px;
  text-align: center;
}

.cf-avatar-wrapper {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 15px auto;
}

.cf-avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cf-name {
  color: #1f1f1f;
  font-weight: 600;
  margin-bottom: 15px;
}

.cf-feedback {
  font-weight: 300;
  color: #767676;
}

.truncate-3-lines {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
  width: 250px;
  line-height: 1.4em;
}
