/* CDC Testimonials – child-friendly styling */
.cdc-testimonials.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.cdc-testimonials .t-card {
  position: relative;
  background: #fffaf4; /* warm cream */
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 10px 30px rgba(0,0,0,.06);
  /* border-left: 6px solid #ffb347;  playful orange */
	border-left: 6px solid #e4c945;
  transition: transform .25s ease, box-shadow .25s ease;
}

.cdc-testimonials .t-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 34px rgba(0,0,0,.08);
}

.cdc-testimonials .t-badge {
  position: absolute;
  top: -10px;
  right: -10px;
  /*background: #ff6f61; /* coral */
	background: #fff;
  color: #fff;
  width: 42px; height: 42px;
  border-radius: 999px;
  display: grid; place-items: center;
  font-size: 18px;
  box-shadow: 0 4px 14px rgba(255,111,97,.35);
}

.cdc-testimonials .t-quote {
  font-style: italic;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 18px;
  color: #3b3b3b;
}

.cdc-testimonials .t-meta {
  display: flex;
  align-items: center;
  gap: 14px;
}

.cdc-testimonials .t-photo {
  width: 72px!important; height: 72px;   /* slightly bigger */
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #ffda77; /* sunny outline */
  padding: 3px;              /* stops image from cutting */
  background: #fff;          /* white cushion */
}

.cdc-testimonials .t-name {
  font-weight: 800;
  font-size: 17px;
  /*color: #ff6f61;  friendly coral */
	color: #f0557d;
}

.cdc-testimonials .t-role {
  font-size: 14px;
  color: #6b7280; /* gray-500 */
}

.cdc-testimonials .t-rating {
  font-size: 15px;
  letter-spacing: 2px;
  color: #ffb400; /* star yellow */
  margin-top: 6px;
}

/* Owl item spacing */
.cdc-testimonials.owl-carousel .t-card { margin: 20px; }

/* Owl Dots */
.cdc-testimonials .owl-dots {
  text-align: center;
  margin-top: 20px;
}

.cdc-testimonials .owl-dot span {
  width: 10px; height: 10px;
  background: #ffda77; /* sunny yellow */
  margin: 0 6px;
  display: inline-block;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.cdc-testimonials .owl-dot.active span,
.cdc-testimonials .owl-dot:hover span {
  background: #ff6f61; /* coral active */
  transform: scale(1.2);
}
