.testimonial-card {
  position: relative;
  box-shadow: inset 0 0 0 1px #ccc;
  padding: 24px 30px;
  overflow: hidden;
  background-color: #fff;
  border-radius: 0; /* 默认直角 */
  width: 100%;
}

.testimonial-card::after {
  content: "";
  position: absolute;
  bottom: -10px;
  right: -10px;
  width: 20px;
  height: 20px;
  background: #fff;
  border-bottom: 1px solid #ccc;
  border-width: 0 1px 1px 0;
  transform: rotate(135deg);
}

.testimonial-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.testimonial-name {
  font-size: 24px;
  letter-spacing: 1.52;
  font-weight: 500;
  color: #0066cc;
  text-decoration: none; /* 去掉默认下划线 */
  transition: color 0.3s ease;
}

.testimonial-name:hover {
}
.testimonial-rating {
  display: flex; /* 使用 flex 布局以方便控制间距 */
  align-items: center; /* 垂直居中 */
  gap: 4px; /* 增加星星之间的间距 */
}

.testimonial-rating .star {
  color: #ffcc00;
  font-size: 16px;
  margin-right: 0; /* 清除默认的 margin */
}

.testimonial-content {
  line-height: 1.778;
  color: #333;
  font-size: 18px;
}
@media screen and (max-width: 991px) {
  .testimonial-card {
    padding: 16px;
  }
  .testimonial-header {
    margin-bottom: 8px;
  }
  .testimonial-name {
    font-size: 12px;
  }
  .testimonial-content {
    font-size: 10px;
  }
  .testimonial-rating .star {
    font-size: 8px;
  }
}
