.testimonials {
  .testimonials-inner {
    .testimonials-items {
      margin: 1.25rem 1.25rem 0 1.25rem;
      @media (width >= 680px) {
        margin-top: 5rem;
      }

      .testimonials-item {
        display: none;
        max-width: 815px;
        margin: 0 auto;
        padding: 1.5rem;
        align-items: flex-start;
        gap: 32px;
        flex-direction: row;
        border-radius: 8px;
        border: 1px solid #f4f2ff;
        background: #fff;
        box-shadow: 0px 16px 42px 0px rgba(102, 95, 139, 0.1);
        transition: all 0.3s ease;
        min-height: 240.5px;

        .testimonials-image {
          display: none;
          @media (width >= 680px) {
            display: block;
          }
          & img {
            @media (width >= 680px) {
              width: 136px;
              height: auto;
              min-width: 136px;
              border-radius: 6px;
            }
          }
        }
        .testimonials-text {
          width: 100%;
          .testimonials-header {
            display: flex;
            gap: 20px;
            .testimonials-left {
              .testimonials-author {
                font-size: 1rem;
                font-style: normal;
                font-weight: 700;
                line-height: 175%;
              }
              .testimonials-company {
                color: var(--neutral-500);
                font-size: 1rem;
                font-style: normal;
                font-weight: 400;
                line-height: 175%;
              }
            }
            .testimonials-brand-link {
              margin-left: auto;
            }
            & img {
              display: flex;
              width: 60px;
              height: auto;
              max-width: 60px;
              border-radius: 6px;
              max-height: 80px;
              @media (width >= 680px) {
                display: none;
              }
            }
            & svg {
              width: auto;
              margin-left: auto;
              padding-right: 0.625rem;
              max-height: 22px;
              @media (width <= 680px) {
                max-height: 18px;
                padding-right: 0;
              }
            }
          }
          .testimonials-quote {
            font-size: 1rem;
            font-style: normal;
            font-weight: 400;
            line-height: 175%;
            margin-top: 1rem;
          }
        }
      }
    }
    .testimonials-dots {
      display: flex;
      max-width: 815px;
      align-items: center;
      justify-content: center;
      gap: 12px;
      margin: 2rem auto 0 auto;
      .testimonials-dot {
        width: 12px;
        height: 12px;
        border-radius: 200px;
        background: rgba(102, 112, 133, 0.15);
        cursor: pointer;
        &.active {
          background: rgba(102, 112, 133, 0.6);
        }
      }
    }
  }
}
