.stsm-testimonial-grid {
  width: 1290px;
  max-width: 100%;
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(3, 1fr);
  margin: auto;

  img {
    width: 100%;
    max-width: 100%;
    height: 100%;
    object-fit: cover;
  }

  &.style-1 {
    .stsm-testimonial {
      border-radius: 5px;
      padding: 30px 20px;
      display: flex;
      flex-direction: column;
    }

    .qoute-img {
      padding-bottom: 40px;

      img {
        max-width: 60px;
        height: auto;
      }
    }

    .reviewer-info {
      gap: 5px;
      display: flex;
      align-items: center;
      margin-top: auto;
    }

    .image {
      flex-basis: 60px;

      img {
        width: 100%;
        height: auto;
      }
    }

    .info {
      flex: 1;

      p {
        font-size: 16px;

        br {
          display: none;
        }
      }

      .name {
        font-size: 18px;
        font-weight: 500;
        padding-bottom: 2px;
      }
    }

    .feedback {
      padding-top: 8px;
      padding-bottom: 40px;
      font-size: 18px;
    }
  }

  &.style-2 {
    .stsm-testimonial {
      overflow: hidden;
      border-radius: 5px;
      background-color: #111;
    }

    .reviewer-info {
      gap: 15px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      background-color: #000;
      padding: 15px;
    }

    .info {
      text-align: center;

      p {
        color: #fff;
        font-size: 16px;
      }
    }

    .name {
      color: #fff;
      font-size: 20px;
      font-weight: 500;
      text-transform: capitalize;
    }

    .qoute-img img {
      width: 60px;
      height: auto;
    }

    .image {
      width: 60px;
      height: 60px;

      img {
        border-radius: 100%;
      }
    }

    .content {
      padding: 30px;
      text-align: center;
    }

    .feedback {
      padding-bottom: 10px;

      p {
        color: #fff;
        font-size: 16px;
      }
    }

    .reviewer-rating {
      gap: 2px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

  }


}