.quote-slider-mobile {
  max-width: 600px;
  margin: 0 auto;
  padding: 2rem 1rem;
  overflow: hidden;
}

.quote-wrapper-mobile {
  position: relative;
  min-height: 380px;
}

.quote-mobile {
  display: block;
  text-align: center;
  color: white;
  font-family: SpaceGrotesk-Medium;
  font-style: italic;
  font-size: 18px;
  text-shadow: 0 2px 5px rgba(0,0,0,.5);
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transition: opacity 0.6s ease-in-out;
}

.quote-mobile.active {
  opacity: 1;
  pointer-events: auto;
  position: relative;
}

.quote-photo-block-mobile {
  margin-top: 1rem;
}

.quote-photo-mobile {
  width: 150px;
  height: 150px;
  object-fit: cover;
}

.quote-name-mobile {
  font-size: 20px;
  font-style: normal;
  margin-top: 5px;
  margin-bottom: 0;
}

.quote-role-mobile {
  font-size: 16px;
  font-style: normal;
}

.quote-indicators-mobile {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.indicator-mobile {
  width: 12px;
  height: 12px;
  background-color: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.indicator-mobile.active {
  background-color: white;
}