.nf-platform-reviews {
  display: flex;
  width: min(100%, 410px);
  min-height: 92px;
  align-items: center;
  gap: 15px;
  padding: 17px 19px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 18px;
  color: var(--nf-ink, #10263a);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 16px 36px rgba(2, 25, 43, 0.16);
}

.nf-platform-reviews__icon {
  display: grid;
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  place-items: center;
  border-radius: 16px;
  color: #a66108;
  background: #fff4d7;
}

.nf-platform-reviews__icon svg {
  width: 31px;
  height: 31px;
  fill: #ffc34d;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.4;
}

.nf-platform-reviews__content {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 3px;
}

.nf-platform-reviews__content > strong {
  color: var(--nf-primary-dark, #082f52);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.nf-platform-reviews__rating {
  display: flex;
  align-items: center;
  gap: 9px;
}

.nf-platform-reviews__rating b {
  color: var(--nf-ink, #10263a);
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.nf-platform-reviews__stars {
  position: relative;
  display: inline-block;
  color: #d6dee5;
  font-size: 18px;
  letter-spacing: 1px;
  line-height: 1;
}

.nf-platform-reviews__stars::before {
  position: absolute;
  top: 0;
  left: 0;
  width: var(--nf-rating-percent, 100%);
  overflow: hidden;
  color: #f4a41d;
  content: "★★★★★";
  white-space: nowrap;
}

.nf-platform-reviews__content small {
  overflow: hidden;
  color: #687b8c;
  font-size: 10px;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media (max-width: 640px) {
  .nf-platform-reviews {
    width: 100%;
    min-height: 86px;
    padding: 14px 15px;
    border-radius: 15px;
  }

  .nf-platform-reviews__icon {
    width: 48px;
    height: 48px;
    flex-basis: 48px;
    border-radius: 14px;
  }

  .nf-platform-reviews__content small {
    font-size: 9px;
    white-space: normal;
  }
}
