/* ==========================================================================
   testimonial.css - wiederverwendbarer Testimonial-Block
   Nicole Angela Buck
   ========================================================================== */

/* Grid-Container: 3 Spalten, responsive auf 2 bzw. 1 Spalte */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 30px;
}

@media (max-width: 980px) {
  .testimonials { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .testimonials { grid-template-columns: 1fr; }
}

/* Einzelne Karte */
.testimonial {
  background: #2D2D2D;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 0;
  padding: 54px 30px 26px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: 0.3s;
}

.testimonial:hover {
  border-color: rgba(245, 196, 0, 0.35);
  transform: translateY(-3px);
  box-shadow: rgba(0, 0, 0, 0.4) 0px 16px 36px -16px;
}

/* Grosses Anfuehrungszeichen oben links */
.testimonial::before {
  content: "\201C";
  position: absolute;
  top: -28px;
  left: 8px;
  font-family: Georgia, serif;
  font-size: 10rem;
  color: rgba(245, 196, 0, 0.32);
  line-height: 1;
  pointer-events: none;
  font-weight: 700;
  z-index: 0;
}

@media (max-width: 520px) {
  .testimonial { padding: 46px 22px 22px; }
  .testimonial::before { font-size: 7rem; }
}

/* Sterne-Bewertung */
.t-rating {
  display: flex;
  gap: 3px;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
  font-size: 1.05rem;
  color: #F5C400;
  letter-spacing: 0.04em;
}

/* Zitat-Text */
.t-quote {
  color: #FFFFFF;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 22px;
  flex: 1 1 0%;
  position: relative;
  z-index: 1;
}

/* Autor-Bereich mit Trennlinie */
.t-author {
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: relative;
  z-index: 1;
}

/* Name */
.t-name {
  font-family: "Bebas Neue", "Arial Black", sans-serif;
  font-size: 1.15rem;
  color: #F5C400;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1;
}

/* Rolle / Beschreibung */
.t-role {
  font-family: "Courier New", monospace;
  font-size: 0.78rem;
  color: #888888;
  letter-spacing: 0.06em;
  line-height: 1.5;
  min-height: 2.4em;
}
