.testimonials_2__container {
  position: relative;
  padding-top: 60px;
  padding-bottom: 70px;
}
.testimonials_2__title {
  position: relative;
  z-index: 1;
  text-shadow: 2px 0 #fff, -2px 0 #fff, 0 2px #fff, 0 -2px #fff, 1px 1px #fff, -1px -1px #fff, 1px -1px #fff, -1px 1px #fff;
}
.testimonials_2__list {
  columns: 2;
  column-gap: 40px;
}
.testimonials_2__item {
  break-inside: avoid;
  margin-bottom: 40px;
  max-width: 450px;
}
.testimonials_2__content {
  padding: 24px;
  padding-bottom: 28px;
  background-color: #fff;
  box-shadow: var(--box-shadow-next);
  border-radius: 6px;
  font-size: calc(14 / 16 * 1rem);
  line-height: 20px;
  position: relative;
  z-index: 1;
}
.testimonials_2__content::before {
  content: "“";
  position: absolute;
  left: 18px;
  top: 22px;
}
.testimonials_2__content::after {
  content: "”";
  position: absolute;
}
.testimonials_2__person {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 20px;
  margin-left: 24px;
}
.testimonials_2__img img {
  border-radius: 50%;
}
.testimonials_2__img {
  display: grid;
}
.testimonials_2__img > * {
  grid-area: 1/1;
}
.testimonials_2__img > *:last-child {
  z-index: 1;
}
.testimonials_2__img_loading {
  background-color: var(--slate-200);
  border-radius: 24px;
  position: relative;
  overflow: hidden;
}
.testimonials_2__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_2__name_company {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
}
.testimonials_2__name {
  font-size: calc(14 / 16 * 1rem);
  line-height: 20px;
}
.testimonials_2__company {
  font-size: calc(14 / 16 * 1rem);
  line-height: 20px;
  color: var(--slate-500);
}
.testimonials_2__company--link:hover {
  text-decoration: underline;
}
.testimonials_2__blob {
  position: absolute;
  top: 24px;
  left: -38px;
  z-index: 0;
}

@media(max-width: 600px) {
  .testimonials_2__list {
    columns: 1;
  }
}