/* ============================================
   Testimonial Featured Layout
   ============================================
   Single featured testimonial with blue bg
   ============================================ */
.testimonial-featured {
  padding: 80px 0;
  background-color: #33B5DD;
  background-image: url("../../images/pattern-bg.png");
  background-repeat: repeat;
  background-size: 567px 378.25px;
  background-position: top left;
  position: relative;
}
.testimonial-featured::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(51, 181, 221, 0.92);
  pointer-events: none;
}
@media (max-width: 768px) {
  .testimonial-featured {
    padding: 60px 0;
  }
}

/* ============================================
   Container & Wrapper
   ============================================ */
.testimonial-featured__wrapper {
  position: relative;
  z-index: 1;
  max-width: 1071px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ============================================
   Card
   ============================================ */
.testimonial-featured__card {
  background-color: #ffffff;
  border-radius: 16px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  width: 100%;
}
@media (max-width: 768px) {
  .testimonial-featured__card {
    padding: 32px 24px;
    gap: 20px;
  }
}

/* ============================================
   Star Rating
   ============================================ */
.testimonial-featured__rating {
  display: flex;
  gap: 4px;
  align-items: center;
}

.testimonial-featured__star {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}
.testimonial-featured__star path {
  fill: #E0E0E0;
}
.testimonial-featured__star.active path {
  fill: #FFB800;
}
@media (max-width: 640px) {
  .testimonial-featured__star {
    width: 24px;
    height: 24px;
  }
}

/* ============================================
   Quote
   ============================================ */
.testimonial-featured__quote {
  color: #222222;
  font-family: "Outfit", sans-serif;
  font-size: 30px;
  font-weight: 500;
  line-height: 1.27;
  text-align: center;
  margin: 0;
}
.testimonial-featured__quote::before, .testimonial-featured__quote::after {
  content: '"';
}
@media (max-width: 1024px) {
  .testimonial-featured__quote {
    font-size: 26px;
    line-height: 1.38;
  }
}
@media (max-width: 768px) {
  .testimonial-featured__quote {
    font-size: 22px;
    line-height: 1.45;
  }
}
@media (max-width: 480px) {
  .testimonial-featured__quote {
    font-size: 18px;
    line-height: 1.5;
  }
}

/* ============================================
   Speech Bubble Arrow
   ============================================ */
.testimonial-featured__arrow {
  width: 70.148px;
  height: 18px;
  flex-shrink: 0;
  margin-top: -1px;
}
.testimonial-featured__arrow svg {
  display: block;
  width: 100%;
  height: 100%;
}
@media (max-width: 640px) {
  .testimonial-featured__arrow {
    width: 50px;
    height: 13px;
  }
}

/* ============================================
   Author Attribution
   ============================================ */
.testimonial-featured__author {
  color: #ffffff;
  font-family: "Outfit", sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.13;
  text-align: center;
  padding: 24px 0;
}
@media (max-width: 768px) {
  .testimonial-featured__author {
    font-size: 20px;
    line-height: 1.4;
    padding: 20px 0;
  }
}
@media (max-width: 480px) {
  .testimonial-featured__author {
    font-size: 18px;
    line-height: 1.5;
  }
}