.testimonials_3__container {
  padding-top: 60px;
  padding-bottom: 70px;
}
.testimonials_3__title {
  text-align: center;
}
.testimonials_3__list {
  columns: 2;
  column-gap: 20px;
  margin-top: 32px;
}
.testimonials_3__list--single {
  columns: unset;
  max-width: 700px;
  margin: 0 auto;
}
.testimonials_3__item_wrapper {
  display: grid;
}
.testimonials_3__list--single .testimonials_3__item_wrapper+.testimonials_3__item_wrapper {
  margin-top: 40px;
}
.testimonials_3__item_wrapper > * {
  grid-area: 1 / 1;
}
.testimonials_3__item {
  break-inside: avoid;
  margin-bottom: 20px;
  padding: 32px;
  padding-bottom: 36px;
  background-color: #fff;
  border-radius: 24px;
  box-shadow: var(--box-shadow-warm);
  position: relative;
  transition: 250ms var(--cubic-bezier);
}
.testimonials_3__person {
  display: flex;
  gap: 12px;
  align-items: center;
}
.testimonials_3__img img {
  border-radius: 50%;
}
.testimonials_3__img {
  display: grid;
}
.testimonials_3__img > * {
  grid-area: 1/1;
}
.testimonials_3__img > *:last-child {
  z-index: 1;
}
.testimonials_3__img_loading {
  width: 48px;
  height: 48px;
  background-color: var(--slate-200);
  border-radius: 24px;
  position: relative;
  overflow: hidden;
}
.testimonials_3__img_loading::after {
  content: "";
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, .2) 20%, rgba(255, 255, 255, .5) 60%, rgba(255, 255, 255, 0));
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transform: translate(-100%);
  animation: shimmer 1.2s infinite;
}
.testimonials_3__name_company {
  display: flex;
  flex-direction: column;
}
.testimonials_3__name {
  font-size: calc(14 / 16 * 1rem);
  line-height: 20px;
}
.testimonials_3__company {
  font-size: calc(14 / 16 * 1rem);
  line-height: 20px;
  color: var(--slate-500);
}
.testimonials_3__content {
  position: relative;
  margin-top: 16px;
}
.testimonials_3__content::before {
  content: "“";
  position: absolute;
  left: -8px;
  top: 0;
}
.testimonials_3__content::after {
  content: "”";
  position: absolute;
}
.testimonials_3__rating {
  position: absolute;
  top: 16px;
  right: 24px;
}
.testimonials_3_border {
  border: 2px solid;
  border-radius: 24px;
  height: calc(100% - 20px);
  position: relative;
  right: -10px;
  bottom: -10px;
  transition: 250ms var(--cubic-bezier);
}

/* Colored */
.testimonials_3__item--colored .testimonials_3__name {
  color: #fff;
}
.testimonials_3__item--colored .testimonials_3__company {
  color: #fff;
}
.testimonials_3__item--colored .testimonials_3__content {
  color: #fff;
}
.testimonials_3__item--colored .testimonials_3__img_loading {
  width: 46px;
  height: 46px;
  top: 1px;
  left: 1px;
}

@media(hover: hover) {
  .testimonials_3__item_wrapper:hover .testimonials_3_border {
    transform: translate(-5px, -5px);
    transition: 125ms var(--cubic-bezier);
    border-radius: 28px;
  }
  .testimonials_3__item_wrapper:hover .testimonials_3__item {
    transform: translate(5px, 5px);
    transition: 125ms var(--cubic-bezier);
    box-shadow: none;
  }
  .testimonials_3__company:hover {
    text-decoration: underline;
  }
}

@media(max-width: 800px) {
  .testimonials_3__list {
    columns: 1;
  }
  .testimonials_3_border {
    height: calc(100% - 40px);
    bottom: -10px;
  }
  .testimonials_3__item {
    margin-bottom: 40px;
  }
}