.rh-testimonials {
  /*background: #f7f7f7;*/
  padding: 90px 0;
  position: relative;
}

.rh-testimonials-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 42px;
}

.rh-kicker {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #ff5a00;
  margin-bottom: 10px;
}

.rh-testimonials-head p {
  margin: 0;
  max-width: 650px;
  font-size: 15px;
  line-height: 1.7;
  color: #555;
}

.rh-review-btn:hover {
  background: #111;
  border-color: #111;
  color: #fff;
}

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

.rh-review-card {
  background: #fff;
  border: 1px solid #e9e9e9;
  padding: 28px 24px 24px;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  min-height: 100%;
}

.rh-review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.07);
}

.rh-quote-mark {
  position: absolute;
  top: 14px;
  right: 18px;
  font-size: 58px;
  line-height: 1;
  color: rgba(255, 90, 0, 0.12);
  font-weight: 800;
  pointer-events: none;
}

.rh-stars {
  font-size: 16px;
  letter-spacing: 2px;
  color: #ff5a00;
}

.rh-review-author {
  padding-top: 16px;
  border-top: 1px solid #efefef;
  margin-top: 10px;
}

@media (max-width: 991px) {
  .rh-testimonials {
    padding: 70px 0;
  }
}

@media (max-width: 991px) {
  .rh-testimonials-head {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 991px) {
  .rh-testimonials-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .rh-review-card {
    padding: 24px 18px 20px;
  }
}

