.reviews-slider-section {
  background-color: #f5f5f5;
  @media (max-width: 1232px) {
    padding-right: 0;
    .review-slider-header,
    .carousel-arrow-wrapper {
      padding-right: var(--global-sect-pad-x-md);
    }
  }
  .review-slider {
    display: grid;
    grid-template-columns: 400px 1fr;
    grid-template-rows: minmax(200px, 1fr) auto;
    gap: var(--grid-gap-lg);
    height: auto;
    align-items: start;
    @media (max-width: 1232px) {
      display: flex;
      flex-direction: column;
    }
    .review-slider-header {
      grid-column: 1;
      grid-row: 1;
      text-align: left;
      @media (max-width: 1232px) {
        order: 1;
      }
    }
    .carousel-arrow-wrapper {
      grid-column: 1;
      grid-row: 2;
      align-self: start;
      margin-top: auto;
      @media (max-width: 1232px) {
        order: 3;
      }
    }
    .review-slide-area {
      grid-column: 2;
      grid-row: 1 / span 2;
      height: auto;
      display: flex;
      flex-direction: column;
      height: 100%;
      @media (max-width: 1232px) {
        order: 2;
      }
    }
  }

  .owl-carousel,
  .owl-stage-outer {
    height: 100%;
  }
  .owl-stage {
    height: 100%;
    display: flex;
    align-items: stretch;
    max-width: 100%;
    /* min-width: fit-content; */
  }

  .owl-item {
    max-width: 100%;
    margin-left: 5px;
    margin-right: var(--grid-gap-sm);
  }

  .review-slide--header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .review-slide-item {
    display: flex;
    flex-direction: column;
    background: var(--brand-white);
    border: 1px solid rgba(0, 0, 0, 0.15);
    padding: var(--card-pad-sm);
    border-radius: 16px;
    height: 100%;
    gap: var(--content-gap-lg);
  }

  .review-slide-image {
    max-width: 80%;
    &.review-slide-image--img {
      max-height: 100px;
      width: auto;
      img {
        max-height: 70px;
        height: 100%;
        width: 100%;
        object-fit: contain;
      }
    }
  }

  .grid-card__info {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
  }

  .star-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
  }

  .star {
    width: 16px;
    height: 15px;
    fill: #3a3a3a;
  }
}
