.grid-widgets {
  padding: 2rem 0rem;
}
.grid-widgets .logo-google {
  height: 32px;
}
.google-reviews-card {
  min-height: 225px;
}
.google-reviews-card.two {
  min-height: auto;
}
.google-reviews-card .google-icon {
  width: 90px;
}
.google-reviews-card .user-avator {
  position: relative;
  width: 40px;
  height: 40px;
  box-shadow: rgba(17, 17, 17, 0.1) 0px 0px 2px inset;
  flex-shrink: 0;
  border-radius: 50%;
  overflow: hidden;
}
.google-reviews-card .user-avator img {
  -o-object-fit: cover;
  object-fit: cover;
}
.google-reviews-card .sm-google-icon {
  width: 24px;
  position: absolute;
  top: 24px;
  left: 20px;
}
.google-reviews-card .verify {
  width: 14px;
}
.google-reviews-card .review-content p {
  position: relative;
  overflow: hidden;
  max-height: 69px;
  -webkit-font-smoothing: antialiased;
}
.grid-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}

.ai-summary p {
  opacity: 0;
  transform: translateX(-30px);
  animation: slideInLeft 1s forwards;
}

.ai-summary p:nth-child(1) {
  animation-delay: 0s;
}

.ai-summary p:nth-child(2) {
  animation-delay: 0.5s;
}

.ai-summary p:nth-child(3) {
  animation-delay: 1s;
}

@keyframes slideInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
