.testimonial-slider {
  text-align: center;
  font-family: 'Poppins', sans-serif;
  max-width: 600px;
  margin: auto;
  padding: 50px 20px;
  position: relative;
}

.testimonial-text {
  font-size: 18px;
  color: #333;
  line-height: 1.6rem;
  margin: 0 auto 40px auto;
  max-width: 500px;
  border-bottom: 1px solid #ccc;
  padding-bottom: 30px;
}

.avatar-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin: 30px 0;
}

.avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  opacity: 0.3;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
}

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.avatar.center {
  width: 90px;
  height: 90px;
  border: 5px solid #e16b2d;
  opacity: 1;
  transform: scale(1.05);
  z-index: 2;
}

.user-info .user-name {
  font-size: 26px;
  font-weight: 600;
  margin: 10px 0 5px 0;
  color: #000;
}

.user-info .user-handle {
  font-size: 16px;
  color: #444;
}
