.testimonials-section.with-stars {
  position: relative;
}

.testimonials-section.with-stars::before,
.testimonials-section.with-stars::after {
  content: '';
  position: absolute;
  z-index: 0;
  background-image: url('https://d3vpszern3jgjo.cloudfront.net/wp-content/uploads/2023/01/star-big.webp');
  background-repeat: no-repeat;
  background-size: contain;
  max-width: 470px;
  max-height: 550px;
  width: 100%;
  height: 100%;
}

.testimonials-section.with-stars::before {
  top: -50px;
  left: 0;
}

.testimonials-section.with-stars::after {
  bottom: -50px;
  right: 0;
  transform: rotate(180deg);
}

.testimonials__wrapper {
  display: flex;
  flex-direction: row;
  gap: 30px;
  margin: 20px 0;
  z-index: 1;
}

.testimonials__list {
  display: flex;
  flex-direction: column;
  gap: 25px;
  flex: 1.5;
  margin-bottom: 0;
  padding-left: 0;
}

.testimonials__item {
  display: flex;
  flex-direction: column;
  padding: 30px 40px;
  background-color: #f9fafc;
  border-radius: 10px;
  cursor: pointer;
  border: 2px solid #e4e5eb;
  gap: 5px 0;
  transition: 0.2s border-color ease, 0.2s background-color ease;
}

.testimonials__item:not(.active):hover {
  background-color: #e4e5eb;
}

.testimonials__item.active {
  border-color: #3461c9;
  background-color: #3461c9;
}

.testimonials__person-name {
  font-size: 32px;
  color: #3461c9;
  font-weight: bold;
  line-height: 1.2;
}

.testimonials__person-info {
  font-size: 20px;
  color: #3461c9;
  font-weight: bold;
  line-height: 1.2;
}

.testimonials__item.active .testimonials__person-name,
.testimonials__item.active .testimonials__person-info {
  color: #fff;
}

.testimonials__preview {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
  flex: 1.5;
  /* padding: 145px 100px 70px; */
  padding-left: 100px;
  padding-right: 100px;
  background-color: #fff;
  border: 2px solid #e4e5eb;
  border-radius: 10px;
}

.testimonials__preview-text {
  opacity: 0;
  visibility: hidden;
  transition: 0.2s opacity ease, 0.2s visibility ease;
  display: none;
  z-index: 1;
}

.testimonials__preview-text span {
  display: none;
}

.testimonials__preview-text p {
  font-size: 24px;
  color: #273e5d;
  font-style: italic;
  line-height: 1.333;
}

.testimonials__preview-text.active {
  opacity: 1;
  visibility: visible;
}

.testimonials__preview::before,
.testimonials__preview::after {
  content: url('https://d3vpszern3jgjo.cloudfront.net/wp-content/uploads/2023/01/star-small.webp');
  position: absolute;
  width: 40px;
  height: 40px;
  z-index: 0;
}

.testimonials__preview::before {
  top: 30px;
  left: 50px;
}

.testimonials__preview::after {
  bottom: 50px;
  right: 40px;
  transform: rotate(30deg);
}

@media screen and (max-width: 992px) {
  .testimonials__item {
    padding: 30px;
  }

  .testimonials__person-name {
    font-size: 28px;
  }

  .testimonials__person-info {
    font-size: 18px;
  }

  .testimonials__preview {
    padding-left: 40px;
    padding-right: 40px;
  }

  .testimonials__preview::before {
    top: 10px;
    left: 20px;
  }

  .testimonials__preview::after {
    bottom: 25px;
    right: 20px;
  }
}

@media screen and (max-width: 768px) {
  .testimonials__wrapper {
    flex-direction: column-reverse;
  }

  .testimonials__list {
    flex-direction: row;
    justify-content: center;
    gap: 10px;
  }

  .testimonials__item * {
    display: none;
  }

  .testimonials__item {
    padding: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
  }

  .testimonials__preview {
    padding: 50px 40px 40px;
    min-height: 300px;
  }

  .testimonials-section h2 {
    padding-bottom: 0;
  }

  .testimonials-section.with-stars::before,
  .testimonials-section.with-stars::after {
    height: 60%;
  }

  .testimonials__preview-text p {
    margin-top: 20px;
  }

  .testimonials__preview-text span {
    display: block;
  }

  .testimonials__preview-text .testimonials__person-name {
    font-size: 24px;
    text-align: left;
  }

  .testimonials__preview-text .testimonials__person-info {
    font-size: 18px;
    text-align: left;
  }
}

@media screen and (max-width: 600px) {
  .testimonials__preview-text p {
    font-size: 18px;
  }

  .testimonials__preview {
    min-height: 250px;
  }

  .testimonials-section.with-stars::before,
  .testimonials-section.with-stars::after {
    height: 50%;
  }

  .testimonials__preview-text .testimonials__person-name {
    font-size: 22px;
  }

  .testimonials__preview-text .testimonials__person-info {
    font-size: 16px;
  }
}

@media screen and (max-width: 400px) {
  .testimonials__preview-text p {
    font-size: 16px;
  }

  .testimonials-section.with-stars::before,
  .testimonials-section.with-stars::after {
    height: 40%;
  }

  .testimonials-section.with-stars::before {
    top: -25px;
  }

  .testimonials-section.with-stars::after {
    bottom: -25px;
  }
}
