.sts-reviews-faq {
  padding: 0 0 var(--sts-section-pad);
}

.sts-reviews-faq-card {
  background: #111827;
  border-radius: var(--sts-radius-lg);
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.sts-rfaq-row {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  align-items: start;
}

.sts-reviews-title,
.sts-faq-title {
  font-size: 28px;
  color: #fff;
  margin: 0 0 12px;
  line-height: 1.25;
}

.sts-reviews-text,
.sts-faq-text {
  color: var(--sts-muted);
  font-size: 14px;
  margin: 0;
}

.sts-reviews-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.sts-review {
  display: flex;
  gap: 14px;
  align-items: center;
  background: #161f33;
  border: 1px solid var(--sts-border);
  border-radius: 14px;
  padding: 16px 18px;
}

.sts-review-body {
  flex: 1;
  min-width: 0;
}

.sts-review-text {
  font-size: 12px;
  color: var(--sts-muted);
  line-height: 1.5;
  margin: 0 0 6px;
}

.sts-review-author {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
}

.sts-review-initials {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    var(--sts-primary) 0%,
    var(--sts-primary-2) 100%
  );
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  letter-spacing: 0.5px;
}

.sts-faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sts-faq-item {
  background: #161f33;
  border: 1px solid var(--sts-border);
  border-radius: 12px;
  overflow: hidden;
}

.sts-faq-item.is-open {
  border-color: var(--sts-primary);
}

.sts-faq-trigger {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  font-size: 14px;
  color: #fff;
  font-weight: 500;
  background: transparent;
  border: 0;
  cursor: pointer;
  text-align: left;
}

.sts-faq-icon {
  width: 14px;
  height: 14px;
  position: relative;
  flex-shrink: 0;
}

.sts-faq-icon::before,
.sts-faq-icon::after {
  content: "";
  position: absolute;
  background: #fff;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.25s ease;
}

.sts-faq-icon::before {
  width: 10px;
  height: 2px;
}

.sts-faq-icon::after {
  width: 2px;
  height: 10px;
}

.sts-faq-item.is-open .sts-faq-icon::after {
  transform: translate(-50%, -50%) scaleY(0);
}

.sts-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 18px;
}

.sts-faq-answer p {
  color: var(--sts-muted);
  font-size: 13px;
  margin: 0;
  padding-bottom: 16px;
}

.sts-faq-item.is-open .sts-faq-answer {
  max-height: 480px;
}

@media (max-width: 880px) {
  .sts-reviews-faq-card {
    padding: 32px 22px;
    gap: 36px;
  }
  .sts-rfaq-row {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .sts-reviews-title,
  .sts-faq-title {
    font-size: 22px;
  }
}
