/* ═══════════════════════════════════════════════════════════
   LANDINGPAGES - KUNDENSTIMMEN & STYLING
   ═══════════════════════════════════════════════════════════ */

/* Testimonials Grid */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

/* Einzelne Testimonial Card */
.testimonial-card {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-left: 4px solid #ff6b35;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

/* Großes Anführungszeichen */
.testimonial-quote {
  font-size: 4rem;
  line-height: 0.8;
  color: #ff6b35;
  opacity: 0.3;
  font-family: Georgia, serif;
  margin-bottom: 0.5rem;
}

/* Testimonial Text */
.testimonial-text {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
  margin: 1rem 0 1.5rem 0;
  font-style: italic;
}

/* Autor-Bereich */
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid #e0e0e0;
}

/* Avatar (Emoji) */
.author-avatar {
  font-size: 2.5rem;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ff6b35 0%, #ff8c61 100%);
  border-radius: 50%;
  flex-shrink: 0;
}

/* Autor Info */
.author-info {
  display: flex;
  flex-direction: column;
}

.author-info strong {
  font-size: 1rem;
  color: #333;
  margin-bottom: 0.2rem;
}

.author-info span {
  font-size: 0.85rem;
  color: #666;
}

/* Benefits List (optional - für die ✅ Liste) */
.benefits-list {
  list-style: none;
  padding: 0;
  margin: 1.0rem 0;
}

.benefits-list li {
  padding: 0.2rem 0;
}

/* Lead Text */
.lead {
  line-height: 1.6;
  color: #555;
  margin: 1.5rem 0;
}

/* Responsive */
@media (max-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .testimonial-card {
    padding: 1.5rem;
  }

  .testimonial-quote {
    font-size: 3rem;
  }
}

/* Dark Mode Support (optional) */
@media (prefers-color-scheme: dark) {
  .testimonial-card {
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
  }

  .testimonial-text {
    color: #e0e0e0;
  }

  .author-info strong {
    color: #fff;
  }

  .author-info span {
    color: #aaa;
  }
}
