.testimonials-section {
  position: relative;
  width: 100%;
  color: rgb(var(--color-text));
  background-color: rgb(var(--color-background));
}
.testimonials {
  position: relative;
}
.testimonials__track {
  display: flex;
  flex-wrap: wrap;
  column-gap: var(--column-gap);
  flex-wrap: nowrap;
}
.testimonials .testimonial {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 16px;
  column-gap: 8px;
  width: calc((100% - (var(--column-gap) * (var(--column-grid) - 1))) / var(--column-grid));
  text-align: center;
}
@media (max-width: 959px) {
  .testimonials .testimonial {
    width: 100%;
  }
  .testimonials .text-with-icons__icon {
    width: var(--m-textwithicon-icon-width, 24px);
    height: var(--m-textwithicon-icon-width, 24px);
  }
}
.testimonials__pager {
  display: flex;
  gap: 24px;
  justify-content: center;
  align-items: center;
  height: 12px;
  margin-block-start: 48px;
}
.testimonials__pager--dot {
  display: block;
  width: 12px;
  height: 12px;
  padding: 0;
  cursor: pointer;
  background-color: rgb(var(--color-text));
  border: 0;
  border-radius: 50%;
  transition: opacity, width, height, 0.3s;
}
.testimonials__pager--dot.is-active {
  width: 12px;
  height: 12px;
  border: 1px solid rgba(var(--color-text));
  background-color: transparent;
}
