/* ================================================
   OMJAAH Testimonials – Komplettes Layout & Nav
   ================================================ */

html { scroll-behavior: smooth; }

.testimonials {
  margin: 0 auto;
  padding: 2rem 1rem;
  font-family: "Open Sans", sans-serif;
  color: #333;
}

.page-header {
  margin-bottom: 2rem;
}

/* -------------------- */
/* VISUELLE NAVIGATION  */
/* -------------------- */
.testimonial-overview-nav {
  text-align: center;
  margin: 2rem 0 3rem;
}

.testimonial-overview-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.testimonial-overview-nav li {
  flex: 0 0 auto;
}

.testimonial-overview-nav a {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #333;
  transition: transform 0.2s ease, color 0.2s ease;
}

.testimonial-overview-nav a:hover,
.testimonial-overview-nav a:focus {
  transform: translateY(-3px);
  color: #a05fa3;
}

.testimonial-overview-nav img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 0%;
  border: 3px solid #eee;
  margin-bottom: 0.5rem;
  transition: border-color 0.2s ease;
}

.testimonial-overview-nav a:hover img {
  border-color: #a05fa3;
}

.testimonial-overview-nav span {
  font-weight: 600;
  font-size: 0.95rem;
  text-align: center;
  line-height: 1.3;
}

@media (max-width: 768px) {
  .testimonial-overview-nav img {
    width: 80px;
    height: 80px;
  }
  .testimonial-overview-nav ul {
    gap: 1rem;
  }
}

/* -------------------- */
/* INTRO-BEREICH        */
/* -------------------- */
.testimonials-intro {
  margin-bottom: 3rem;
  overflow: hidden;
}

.intro-image-wrap {
  float: left;
  width: 240px;
  margin: 0 1.5rem 1rem 0;
}

.intro-image {
  width: 100%;
  height: auto;
  border-radius: 0%;
  border: 3px solid #eee;
}

.intro-text p {
  margin-bottom: 1rem;
  line-height: 1.6;
}

/* -------------------- */
/* ABSCHNITTE / BLOECKE */
/* -------------------- */
.testimonial-category {
  border-top: 1px solid #e3e3e3;
  padding-top: 2rem;
  margin-top: 2rem;
}

.testimonial-category h2 {

}

.more-link {
  margin-top: .5rem;
  font-size: .95rem;
}

.more-link a {
  color: #7f3468;
  text-decoration: none;

}

.more-link a:hover {
  text-decoration: underline;
  color: #7f3468;
}

/* Responsive Anpassung */
@media (max-width: 768px) {
  .intro-image-wrap {
    float: none;
    margin: 0 auto 1rem;
    width: 180px;
  }

  .intro-text {
    text-align: center;
  }

  .testimonial-category h2 {
    text-align: center;
  }
}


/* Stil für Inline-Anker im Text */
.intro-text a {
  color: #7f3468;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}

.intro-text a:hover,
.intro-text a:focus {
  color: #7f3468;
  border-bottom: 1px solid #8b4c90;
}
