.testimonial-block {
  background-image: url('../../images/testimonial.png'); /* 👈 vervang dit met jouw afbeelding */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  position: relative;
  text-align: center;
  color: #fff;
}

.testimonial-block::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  filter: brightness(65%);
}

.testimonial-overlay {
  padding: 2rem 3rem;
  max-width: 1000px;
  border-radius: 8px;
}

.testimonial-subtitle {
  font-size: 1.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1rem;
  font-family: 'Merge One', sans-serif;
}

.testimonial-text {
  font-size: 1rem;       /* ca. 16px */
  line-height: 1.6;
  font-family: 'Georgia', serif;
  margin-bottom: 1.5rem;
  color: white;
  transition: max-height 0.4s ease;
}

.testimonial-text.long {
  font-size: 1.2rem !important;  /* dwingt het af */
  line-height: 1.5;
}



.testimonial-name {
  font-size: 1.3rem;
  font-weight: bold;
  text-transform: uppercase;
  font-family: 'Cormorant', serif;
  color: white;
}

.lees-meer {
  display: none; /* standaard verborgen */
  margin-top: 10px;
  padding: 8px 16px;
  background: rgba(0,0,0,0.6);
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
}

/* ✅ Alleen mobiel */
@media screen and (max-width: 600px) {
  .testimonial-block {
    height: auto;
    padding: 20px;
  }

  .testimonial-text {
    font-size: 0.95rem;   /* ca. 15px op mobiel */
    line-height: 1.4;
    max-height: 200px;
    overflow: hidden;
  }

  .testimonial-text.long {
    font-size: 0.85rem;   /* ca. 13px op mobiel */
  }


  .testimonial-text.expanded {
    max-height: none;
  }

  .lees-meer {
    display: inline-block;
  }
}
