.zhiting-customer-reviews {
  padding: 50px 0 var(--component-gap) 0;
  background: var(--bg-color);
}

.zhiting-reviews-title {
  margin: 0 0 36px 0;
  color: #000;
  font-family: var(--zhiting-font-accent);
  font-size: var(--font-48);
  font-weight: 700;
  line-height: normal;
}

.zhiting-reviews-wrapper {
  width: 100%;
}

.zhiting-reviews-swiper {
  width: 100%;
  padding: 20px;
}

.zhiting-reviews-swiper .swiper-wrapper {
  align-items: stretch;
}

.zhiting-reviews-swiper .swiper-slide {
  height: auto;
}

.zhiting-review-card {
  display: flex;
  gap: 45px;
  padding: 40px;
  height: 100%;
  border-radius: 12px;
  background: #FFF;
  box-shadow: 0 0 20px 0 rgba(13, 76, 145, 0.15);
  transition: all 0.3s ease;
  position: relative;
}

.zhiting-review-icon{
  position: absolute;
  right: 40px;
  bottom: 40px;
}

.zhiting-review-left {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.zhiting-review-avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  margin-bottom: 18px;
}

.zhiting-review-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.zhiting-review-info {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.zhiting-review-name {
  color: #000;
  font-family: var(--zhiting-font-accent);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 10px;
}

.zhiting-review-stars {
  display: flex;
  gap: 4px;
  align-items: center;
}

.zhiting-review-stars svg {
  width: 20px;
  height: 19px;
  color: #E0E0E0;
  transition: color 0.3s ease;
}

.zhiting-review-stars svg.active {
  color: #FFB800;
}

.zhiting-review-content {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
}

.zhiting-review-content p {
  margin: 0;
  color: #454545;
  font-family: var(--zhiting-font-accent);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}

/* 响应式 */
@media screen and (max-width: 1500px) {
  .zhiting-review-icon{
    right: 20px;
    bottom: 20px;
  }
}
@media screen and (max-width: 991px) {
  .zhiting-reviews-title {
    margin-bottom: 40px;
  }

  .zhiting-review-card {
    padding: 30px;
    gap: 20px;
  }
}

@media screen and (max-width: 768px) {
  .zhiting-review-card {
    flex-direction: column;
    padding: 25px;
  }

  .zhiting-review-left {
    flex-direction: row;
    width: 100%;
    gap: 20px;
  }

  .zhiting-review-avatar {
    width: 60px;
    height: 60px;
    margin-bottom: 0;
  }

  .zhiting-review-info {
    align-items: flex-start;
    flex: 1;
  }

  .zhiting-review-name {
    text-align: left;
  }
}
