.review-section {
  padding: 38px 18px 0;
  background: #f7faf8;
}

.review-header {
  text-align: center;
  margin-bottom: 24px;
}

.review-title-img {
  display: block;
  width: 100%;
  max-width: 340px;
  height: auto;
  margin: 0 auto 20px;
}

.review-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 18px;
}

.review-stats div {
  padding: 8px 2px;
  text-align: center;
  background: transparent;
  border: none;
  box-shadow: none;
}

.review-stats span {
  display: block;
  margin-bottom: 7px;
  color: #555;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.2;
}

.review-stats i {
  display: block;
  margin-bottom: 7px;
  font-style: normal;
  font-size: 26px;
  line-height: 1;
}

.review-stats strong {
  display: block;
  color: #008f2f;
  font-size: 21px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.5px;
}

.review-slider {
  width: 100%;
  overflow: hidden;
  padding: 6px 0 4px;
}

.review-track {
  display: flex;
  gap: 14px;
  transition: transform 1.1s ease;
  will-change: transform;
}

.review-card {
  flex: 0 0 80%;
  min-height: 220px;
  padding: 22px 20px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid #edf0ee;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.04);
}

.review-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 13px;
}

.review-name {
  font-size: 16px;
  font-weight: 700;
  color: #111;
}

.review-date {
  font-size: 12px;
  font-weight: 400;
  color: #999;
}

.review-stars {
  display: inline-block;
  margin-bottom: 14px;
  color: #ffbf00;
  font-size: 19px;
  letter-spacing: 1.3px;
  line-height: 1;
}

.review-text {
  min-height: 78px;
  margin: 0 0 18px;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.68;
  color: #333;
}

.review-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.review-telecom {
  font-size: 13px;
  font-weight: 600;
  color: #008f2f;
}

.review-badge {
  padding: 6px 10px;
  border-radius: 999px;
  background: #eef8f1;
  color: #008f2f;
  font-size: 12px;
  font-weight: 600;
}

.status-footer {
  margin: 28px -18px 0;
  padding: 18px 14px 20px;
  background: #fff;
  text-align: center;
  color: #aaa;
  font-size: 10px;
  font-weight: 400;
  line-height: 1.7;
  border-top: 1px solid #eee;
}

.status-footer p {
  margin: 0;
}

@media (max-width: 380px) {
  .review-title-img {
    max-width: 310px;
  }

  .review-stats span {
    font-size: 12px;
  }

  .review-stats i {
    font-size: 24px;
  }

  .review-stats strong {
    font-size: 18px;
  }

  .review-card {
    flex-basis: 82%;
    min-height: 214px;
  }

  .review-text {
    font-size: 14px;
  }
}