/* ===== Слайдер ===== */
.speaker-slider {
  display: flex;
  overflow: hidden;
  gap: 20px;
  scroll-behavior: smooth;
}

/* ===== Карточка ===== */
.speaker-card {
  flex: 0 0 260px;
  border: 1px solid #ddd;
  padding: 15px;
  border-radius: 10px;
  background: #fff;
}

/* Фото */
.speaker-card img {
  width: 100%;
  border-radius: 50%;
  margin-bottom: 8px;
}

/* Контейнер текста */
.text-wrapper {
  position: relative;
  max-height: 3em;
  overflow: hidden;
  transition: max-height 0.5s ease;
}

/* Сам текст */
.speaker-text {
  margin: 0;
  line-height: 1.5em;
}

/* Градиент */
.fade-gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1.5em;
  background: linear-gradient(rgba(255,255,255,0), #fff);
  pointer-events: none;
  transition: opacity 0.5s ease;
}

/* Кнопка */
.show-more {
  display: inline-block;
  margin-top: 8px;
  color: #007bff;
  cursor: pointer;
  font-weight: 500;
}

/* Навигация */
.slider-nav {
  margin-top: 12px;
  text-align: center;
}
.slider-nav button {
  padding: 5px 12px;
  font-size: 18px;
  cursor: pointer;
}