.testimonials-container {
  width: 100%;
  max-width: 1200px;
}
.testimonials-container h2 {
  font-size: 3rem;
  font-weight: 500;
  margin-bottom: 40px;
}
.testimonial-content {
  position: relative;
  min-height: 180px;
  margin-bottom: 64px;
}
.testimonial-quote {
  font-size: 1.5rem;
  line-height: 1.6;
  font-weight: 400;
  transition: opacity 0.4s ease-in-out;
}
.testimonial-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.testimonial-authors {
  display: flex;
  align-items: center;
  gap: 20px;
}
.author-card {
  display: flex;
  align-items: center;
  gap: 15px;
  transition: opacity 0.4s ease-in-out;
}
.author-card img {
  width: 80px;
  height: 80px;
  object-fit: cover;
}
.author-card .author-info {
  display: flex;
  flex-direction: column;
}
.author-card .author-name {
  font-size: 1.25rem;
  font-weight: 500;
  color: #ffffff;
}
.author-card .author-title {
  font-size: 1rem;
  color: #a0a0a0;
}
.author-thumbs {
  display: flex;
  gap: 15px;
  align-items: center;
}
.author-thumbs img {
  width: 50px;
  height: 50px;
  cursor: pointer;
  opacity: 0.4;
  transition: all 0.4s ease-in-out;
  object-fit: cover;
}
.author-thumbs img:hover {
  opacity: 0.8;
}
.author-thumbs img.is-active {
  width: 0;
  opacity: 0;
  margin-left: -15px;
}
.slider-nav {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-direction: column;
}
.slider-nav .nav-arrow {
  font-size: 1.5rem;
  cursor: pointer;
  color: #a0a0a0;
  user-select: none;
  transition: color 0.3s ease;
}
.slider-nav .nav-arrow:hover {
  color: #ffffff;
}
.progress-bar {
  width: 100px;
  height: 2px;
  background-color: #444;
  position: relative;
  overflow: hidden;
}
.progress-bar-inner {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background-color: #fff;
  width: 0%;
  transition: width 0.4s ease-in-out;
}

#prev-btn > svg path {
  fill: #fff;
}

.slider-nav-btn {
  position: relative;
  top: -15px;
}
