.google-font {
  width: 8%;
}
.google-font-text {
  font-weight: 700;
  font-size: 20px;
  line-height: 26px;
  color: rgb(17, 17, 17);
}
.rating-star {
  font-size: 15px;
  line-height: 20px;
  color: rgb(252, 191, 2);
}
.google-image {
  width: 20%;
}
.rating-text p {
  font-size: 44px;
  line-height: 20px;
  color: rgb(17, 17, 17);
}
.review-date {
  font-size: 13px;
}
.card {
  padding: 1rem;
}
.card .card-body .review-photo {
  display: inline-block;
  position: relative;
  width: 5%;
}
.google-font {
  position: absolute;
  bottom: 0;
  right: 0;
  border-radius: 50%;
  padding: 2px;
  background-color: white;
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.card .card-body .review-date .google-image {
  width: 20%;
}
@media (max-width: 1200px) {
  .card .card-body .review-photo {
    width: 6%;
  }
}
@media (max-width: 1000px) {
  .card .card-body .review-photo {
    width: 8%;
  }
}
@media (max-width: 770px) {
  .card .card-body .review-photo {
    width: 12%;
  }
}
@media (max-width: 490px) {
  .card .card-body .review-photo {
    width: 80px;
  }
}
.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;
}
.sm-google-icon {
  width: 24px;
  position: absolute;
  top: 24px;
  left: 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);
  }
}
.grid-photo {
  display: grid;
  max-height: 200px;
  grid-template-columns: 1fr 1fr 1fr;
  width: 60%;
  gap: 0.8rem;
}
.grid-photo img {
  object-fit: cover;
  height: 100px;
  width: 100%;
  border-radius: 8px;
}
