.testimonials-widget {
  position: relative;
  margin: calc(-1 * var(--section-spacing)) 30px var(--section-spacing);
  padding: var(--section-spacing) 0;
  background: var(--c-white);
  border: 1px solid var(--c-gray-200);
  border-radius: var(--br-md);
  box-shadow: 0px 30px 60px -20px rgba(80, 66, 90, 0.06);
  z-index: 2;
  @media (max-width: 1440px) {
    margin: calc(-1 * var(--section-spacing)) 20px var(--section-spacing);
  }
  .testimonials-slider-container {
    position: relative;
    .testimonials-slider-prev,
    .testimonials-slider-next {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background-color: var(--c-white);
      border-radius: 50%;
      cursor: pointer;
      z-index: 10;
      img {
        @media (max-width: 768px) {
          width: 20px;
        }
      }
    }
    .testimonials-slider-prev {
      left: 10px;
      @media (max-width: 768px) {
        left: -14px;
      }
    }
    .testimonials-slider-next {
      right: 10px;
      @media (max-width: 768px) {
        right: -14px;
      }
    }
    .testimonials-slider {
      margin: 0 60px;
      @media (max-width: 768px) {
        margin: 0 10px;
      }
      .swiper-wrapper {
        .swiper-slide {
          blockquote {
            all: unset;
            display: block;
            text-align: center;
            p {
              margin-bottom: 1em;
              font-weight: 300;
              font-size: var(--fs-xl);
              font-style: italic;
              @media (max-width: 768px) {
                font-size: 14px;
              }
            }
            .stars {
              display: flex;
              gap: 12px;
              justify-content: center;
              margin-bottom: 1em;
            }
            cite {
              display: block;
              font-size: var(--fs-xl);
              font-weight: 700;
              font-style: normal;
              @media (max-width: 768px) {
                font-size: 18px;
              }
            }
          }
        }
      }
    }
  }
}
