#thrivestate-google-reviews-app p {
  margin: 0;
}

.carousel-controls {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 32px;
}

.rtl .carousel-controls svg {
  transform: rotate(-180deg);
}

.carousel-button {
  padding: 2px;
  border: 0;
  height: 36px;
  background: transparent;
  color: #c2b095;
  cursor: pointer;
  border-radius: 4px;
  transition: background 0.3s ease, color 0.3s ease;
}

.carousel-button:hover {
  background: #f6f2e8;
  color: #b1a088;
}

.reviews-container {
  display: flex;
  flex-direction: column;
  gap: 24px;
  color: #393939 !important;
  font-family: "Open Sans", sans-serif;
}

@media only screen and (max-width: 768px) {
  .reviews-container {
    flex-direction: column-reverse;
  }
}

.reviews-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 32px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid #c2b095;
  height: 88px;
}

@media only screen and (max-width: 768px) {
  .reviews-header {
    justify-content: center;
  }
}

.reviews-header-left {
  font-size: 28px;
  line-height: 1;
  font-family: "Montagu Slab", serif;
}

@media only screen and (max-width: 768px) {
  .reviews-header-left {
    display: none;
  }

  .reviews-mobile-header {
    display: block;
  }
}

.reviews-mobile-header {
  display: none;
  font-size: 24px;
  line-height: 1;
  font-family: "Montagu Slab", serif;
  text-align: center;
  white-space: pre-line;
}

.reviews-mobile-header span {
  font-weight: 600;
}

@media only screen and (max-width: 768px) {
  .reviews-mobile-header {
    display: block;
  }
}

.reviews-header-left span {
  font-weight: 600;
}

.reviews-header-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.reviews-header-right-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.reviews-header-right-content-rating {
  font-weight: 600;
  font-size: 20px;
  line-height: 1;
}

.reviews-header-right-content-text {
  font-size: 12px;
  line-height: 1;
  opacity: 0.5;
  margin-left: 2px;
  font-weight: 500;
  color: #000;
}

.review-container .reviews-header-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.review-container .reviews-header-right-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.review-container .reviews-header-right-content-rating {
  font-weight: 500;
  font-size: 20px;
  line-height: 1;
}

.review-container .reviews-header-right-content-text {
  font-size: 12px;
  line-height: 1;
  opacity: 0.5;
}

.reviews-carousel-wrapper {
  margin: 0 -8px;
}

.reviews-carousel .carousel__viewport {
  overflow-y: visible !important;
  padding: 16px 0;
}

.review-item {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  height: 100%;
  padding: 24px;
  margin: 0 8px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 4px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -4px rgba(0, 0, 0, 0.05);
}

.review-stars {
  display: flex;
  align-items: center;
  margin-left: 4px;
}

.review-star {
  width: 24px;
  height: 24px;
}

.review-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.review-link:hover {
  opacity: 0.9;
}

.review-author {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 16px;
}

.review-content {
  line-clamp: 10;
  -webkit-line-clamp: 10;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
}

.review-author-image {
  display: flex;
}

.review-author-image:hover {
  opacity: 0.9;
}

.review-author-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.review-author-name {
  line-height: 1.1;
  color: #1f1f1f;
  font-weight: 600;
}

.review-author-date {
  line-height: 1;
  font-size: 14px;
  color: #7a7a7a;
}