/* ===== TESTIMONIALS ===== */
.ervaringen { background:var(--white); }
.ervaringen-header { text-align:center; margin-bottom:4rem; }
.ervaringen-header h2 { font-weight:600; font-size:clamp(2rem,3.2vw,2.6rem); line-height:1.2; letter-spacing:-0.02em; margin-bottom:0.75rem; }
.ervaringen-header p { font-size:1.02rem; color:var(--gray-dark); line-height:1.8; max-width:520px; margin:0 auto; }

.testimonials-grid { display:grid; grid-template-columns:1fr 1fr; gap:1.5rem; }

.testimonial { padding:2.5rem; position:relative; transition:transform 0.4s, box-shadow 0.4s; }
.testimonial:hover { transform:translateY(-3px); box-shadow:0 16px 40px rgba(10,10,8,0.06); }
.testimonial.bg-cream { background:var(--cream); }
.testimonial.bg-sand { background:var(--sand-light); }
.testimonial.bg-moss { background:var(--moss); }
.testimonial.bg-moss .testimonial-text { color:rgba(255,255,255,0.75); }
.testimonial.bg-moss .testimonial-author { color:rgba(255,255,255,0.5); }
.testimonial.bg-moss .testimonial-quote { color:rgba(255,255,255,0.15); }
.testimonial.bg-accent { background:var(--accent); }
.testimonial.bg-accent .testimonial-text { color:rgba(255,255,255,0.85); }
.testimonial.bg-accent .testimonial-author { color:rgba(255,255,255,0.55); }
.testimonial.bg-accent .testimonial-quote { color:rgba(255,255,255,0.12); }

.testimonial-quote { font-family:'Manrope',sans-serif; font-weight:800; font-size:4.5rem; line-height:1; color:var(--sand); position:absolute; top:1.25rem; left:2rem; pointer-events:none; }
.testimonial-text { font-size:1rem; color:var(--gray-dark); line-height:1.85; margin-top:1.5rem; position:relative; }
.testimonial-author { margin-top:1.5rem; font-weight:500; font-size:0.82rem; color:var(--gray); letter-spacing:0.02em; }

.testimonial.featured { grid-column:1/-1; display:grid; grid-template-columns:1fr 1fr; gap:0; padding:0; }
.testimonial.featured .featured-left { padding:3rem; display:flex; flex-direction:column; justify-content:flex-start; }
.testimonial.featured .featured-right { padding:3rem; background:rgba(0,0,0,0.05); display:flex; flex-direction:column; justify-content:flex-start; }
.testimonial.featured .testimonial-quote { position:static; margin-bottom:0.5rem; }
.testimonial.featured .testimonial-text { margin-top:0; }

/* ===== RESPONSIVE ===== */
@media (max-width:860px) {
  .testimonials-grid { grid-template-columns:1fr; }
  .testimonial.featured { grid-template-columns:1fr; }
}
