.smw-client-reviews {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.smw-review-card {
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
  border-radius: 24px;
  padding: 32px;
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
}

.smw-review-card-platform img {
  display: block;
  max-width: 150px;
  height: auto;
}

.smw-review-card-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 25px;
  margin-bottom: 60px;
}

.smw-review-card-rating-value {
  color: #350f6b;
  font-weight: 500;
  font-size: 28px;
  line-height: 1;
  letter-spacing: -0.56px;
}

.smw-review-card-stars {
  display: inline-flex;
  gap: 2px;
}

.smw-star {
  position: relative;
  display: inline-flex;
  width: 25px;
  height: 25px;
}

.smw-star svg {
  width: 25px;
  height: 25px;
  display: block;
}

.smw-star.is-empty svg {
  color: #F6B51E;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.2;
  stroke-linejoin: round;
}

.smw-star.is-full svg {
  color: #F6B51E;
}

.smw-star.is-half .smw-star-bg,
.smw-star.is-half .smw-star-fg {
  position: absolute;
  top: 0;
  left: 0;
}

.smw-star.is-half .smw-star-bg {
  color: #fbbf24;
}

.smw-star.is-half .smw-star-bg svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.2;
  stroke-linejoin: round;
}

.smw-star.is-half .smw-star-fg {
  color: #F6B51E;
  width: 50%;
  overflow: hidden;
}

.smw-review-card-quote {
  color: #350F6B;
  font-family: "NeueMontreal" !important;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -0.56px;
}

.smw-review-card-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 35px;
}

.smw-review-card-avatar {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
}

.smw-review-card-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.smw-review-card-name {
  color: #350F6B;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  font-size: 32px;
  font-family: "ObviouslyNarrow" !important;
}

.smw-review-card-designation {
  color: #350F6B;
  font-family: "NeueMontreal" !important;
  font-weight: 400;
  font-size: 28px;
  line-height: 1.2;
}

@media (max-width: 1199px) {
  .smw-review-card-quote {
    font-size: 24px;
  }

  .smw-review-card-name {
    font-size: 25px;
  }

  .smw-review-card-designation {
    font-size: 22px;
  }

  .smw-review-card-avatar {
    width: 70px;
    height: 70px;
  }

}

@media (max-width: 991px) {
  .smw-client-reviews {
    gap: 20px;
  }

  .smw-review-card {
    padding: 24px;
  }

  .smw-review-card-rating {
    margin-bottom: 40px;
  }

  .smw-review-card-quote {
    font-size: 20px;
  }

  .smw-review-card-footer {
    margin-top: 30px;
  }

  .smw-review-card-name {
    font-size: 22px;
  }

  .smw-review-card-designation {
    font-size: 20px;
  }


  .smw-review-card-rating-value {
    font-size: 24px;
  }

  .smw-star svg {
    width: 20px;
    height: 24px;
  }

  .smw-star {
    width: 20px;
    height: 24px;
  }
}

@media (max-width: 767px) {
  .smw-client-reviews {
    grid-template-columns: repeat(1, 1fr);
  }

  .smw-review-card-rating {
    margin-bottom: 30px;
  }
}