.vok-reviews {
  padding: 40px 0 80px;
}

.vok-reviews__title {
  font-family: "Luckiest Guy", cursive;
  font-size: 40px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  text-align: center;
  margin: 0 0 36px;
}

.vok-reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.vok-reviews__card {
  background: #05141b;
  border: 1px solid var(--vok-border);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.vok-reviews__text {
  font-family: "Inter", sans-serif;
  font-style: italic;
  font-size: 14px;
  line-height: 1.5;
  color: var(--vok-text-soft);
  margin: 0;
  flex: 1;
}

.vok-reviews__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.vok-reviews__author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.vok-reviews__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.vok-reviews__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vok-reviews__name {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: #fff;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.vok-reviews__stars {
  display: flex;
  gap: 3px;
}

.vok-reviews__stars span {
  width: 14px;
  height: 14px;
  background: var(--vok-green);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M12 2l3.09 6.26L22 9.27l-5 4.87 1.18 6.88L12 17.77l-6.18 3.25L7 14.14 2 9.27l6.91-1.01L12 2z'/></svg>")
    center/contain no-repeat;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M12 2l3.09 6.26L22 9.27l-5 4.87 1.18 6.88L12 17.77l-6.18 3.25L7 14.14 2 9.27l6.91-1.01L12 2z'/></svg>")
    center/contain no-repeat;
}

@media (max-width: 900px) {
  .vok-reviews__grid {
    grid-template-columns: 1fr;
  }

  .vok-reviews__title {
    font-size: 30px;
  }
}
