.wa-review-box {
  display: flex;
  flex-direction: column;
  gap: calc(var(--space-xs) * 0.5);
  padding: var(--space-s);
  height: 100%;
  background-color: var(--white);
  box-shadow: 0px 0px 40px 0px var(--primary-light-trans-10);
  border-radius: var(--radius-l);
}
.wa-review-box__shortcode, .wa-review-box-wrapper {
  height: 100%;
}
.wa-review-box-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.wa-review-box-top__left {
  display: flex;
  flex-direction: column;
}
.wa-review-box-top-right {
  flex-shrink: 0;
}
.wa-review-box-inner {
  display: flex;
  flex-direction: row;
  gap: calc(var(--space-xs) * 0.5);
  align-items: center;
}
.wa-review-box__text {
  font-size: calc(var(--text-m) * 1);
  line-height: 1.15;
  color: var(--body-color);
}
.wa-review-box__text--strong {
  font-weight: 700;
  font-size: calc(var(--text-m) * 1.15);
  color: var(--base);
  font-family: Podkova;
}
.wa-review-box__star .wa-star-rating {
  display: inline-flex;
  align-items: center;
  gap: calc(var(--space-xs) * 0.1);
  font-family: inherit;
}
.wa-review-box__star .wa-star-rating .wa-star {
  font-size: var(--text-m);
  line-height: 1;
  color: var(--body-color);
  transition: color 0.2s ease;
}
.wa-review-box__star .wa-star-rating .wa-star-full {
  color: #FFD200;
}
.wa-review-box__star .wa-star-rating .wa-star-half {
  background: linear-gradient(90deg, #FFD200 50%, var(--base-light) 50%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #FFD200;
}
.wa-review-box__star .wa-star-rating .wa-star-empty {
  color: var(--base-light);
}
.wa-review-box__star .wa-star-rating .wa-rating-number {
  margin-left: var(--space-xs);
  font-size: var(--text-s);
  color: var(--body-color);
  font-weight: 500;
}
