/* ========================================
   お客様の声セクション - les SALON
   ======================================== */

.testimonials-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #FFF9F0 0%, #FFFEF8 100%);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* カードデザイン */
.testimonial-card {
  background: #fff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  height: 100%;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.15);
}

/* 星評価 */
.testimonial-rating {
  display: flex;
  gap: 0.25rem;
  justify-content: center;
}

.testimonial-rating .star {
  color: #D4AF37;
  font-size: 1.5rem;
  text-shadow: 0 2px 4px rgba(212, 175, 55, 0.3);
}

/* 本文コンテンツ */
.testimonial-content {
  flex: 1;
  line-height: 1.9;
  color: var(--color-text);
}

.testimonial-content p {
  margin: 0;
  /* 途中で切れないように */
  display: block;
  overflow: visible;
  text-overflow: clip;
  white-space: normal;
}

/* 著者情報 */
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #eee;
}

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: linear-gradient(135deg, #D4AF37, #F4D03F);
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-author-info {
  flex: 1;
}

.testimonial-name {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-primary);
  margin: 0 0 0.25rem;
}

.testimonial-meta {
  font-size: 0.875rem;
  color: #888;
  margin: 0;
}

/* モバイル版「続きを見る」非表示 */
.testimonial-content .read-more {
  display: none !important;
}

/* モバイル対応 */
@media (max-width: 767px) {
  .testimonials-section {
    padding: 3rem 0;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 1rem;
  }
  
  .testimonial-card {
    padding: 1.5rem;
  }
  
  .testimonial-rating .star {
    font-size: 1.25rem;
  }
  
  .testimonial-content {
    font-size: 0.9375rem;
    line-height: 1.8;
  }
}

/* タブレット対応 */
@media (min-width: 768px) and (max-width: 1023px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
