/* ===== MENU ===== */
.testimonials_menu {
	cursor: pointer;
	font-family: sans-serif;
}

.testimonials_menu div.active {
	color: var(--orange);
}

/* ===== VIEWER ===== */
.testimonials_viewer {
	width: 100%;
	max-width: 500px;
	margin: 0 auto;
	overflow: hidden;
}



.testimonials_viewer_frame {
	position: relative;
	overflow: hidden;
	transition: height 0.6s ease;
}


/* Camada de fade superior e inferior */
.testimonials_viewer_frame::before,
.testimonials_viewer_frame::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 50px;
  pointer-events: none;
  z-index: 2;
}

.testimonials_viewer_frame::before {
  top: 0;
  background: linear-gradient(to bottom, rgba(255,255,255,1), rgba(255,255,255,0));
}

.testimonials_viewer_frame::after {
  bottom: 0;
  background: linear-gradient(to top, rgba(255,255,255,1), rgba(255,255,255,0));
}

/* Empilha depoimentos verticalmente */
.testimonials_viewer_frame_content {
	display: flex;
	flex-direction: column;
	transition: transform 0.6s cubic-bezier(.4,0,.2,1);
}

/* Cada depoimento ocupa a largura total */
.testimonials_viewer_frame_content div {
	display: block;
	box-sizing: border-box;
	text-align: center;
}