/* ============================================
   Media Kit Testimonials - Accolade Style
   Adapted for light (cream) section
   ============================================ */

.testimonials-section-cream {
  padding: 64px 0 96px;
}

.testimonials-section-cream .accolades-list {
  margin-top: 48px;
  max-width: 1190px;
  margin-left: auto;
  margin-right: auto;
}

/* Card - light theme */
.testimonials-section-cream .accolades-item {
  background: var(--white, #fff);
  border-radius: 12px;
  margin-left: 125px;
  position: relative;
  margin-bottom: 48px;
  min-height: 280px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.06);
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.testimonials-section-cream .accolades-item:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  border-color: rgba(216, 1, 20, 0.2);
}

@media (max-width: 767px) {
  .testimonials-section-cream .accolades-item {
    margin: 120px 0 40px;
    margin-left: 0;
    text-align: center;
  }
}

/* Circular headshot overlay */
.testimonials-section-cream .accolades-item__img {
  width: 252px;
  height: 252px;
  margin-left: -126px;
  top: 0;
  background: var(--white, #fff);
  border-radius: 50%;
  padding: 12px;
  display: inline-block;
  position: absolute;
  z-index: 2;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

@media (max-width: 767px) {
  .testimonials-section-cream .accolades-item__img {
    width: 160px;
    height: 160px;
    margin: 0 auto;
    left: 50%;
    margin-left: -80px;
    top: -80px;
  }
}

.testimonials-section-cream .accolades-item__img:before {
  content: '';
  width: 100%;
  height: 104%;
  left: 50%;
  position: absolute;
  top: 0;
  background: inherit;
  z-index: 2;
}

@media (max-width: 767px) {
  .testimonials-section-cream .accolades-item__img:before {
    left: -4%;
    top: 50%;
    width: 108%;
  }
}

.testimonials-section-cream .accolades-item__img-inner {
  position: relative;
  height: 100%;
  border-radius: 50%;
  z-index: 5;
  overflow: hidden;
}

.testimonials-section-cream .accolades-item__img-inner img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  width: 100%;
  height: 100%;
}

/* Fallback when image missing - grey circle */
.testimonials-section-cream .accolades-item__img-inner {
  background: var(--grey, #666666);
}

/* Text content */
.testimonials-section-cream .accolades-item__text {
  margin-left: 128px;
  padding: 24px 24px 32px;
  position: relative;
  z-index: 4;
  min-height: 280px;
}

@media (max-width: 767px) {
  .testimonials-section-cream .accolades-item__text {
    padding: 100px 24px 24px;
    margin-left: 0;
  }
}

.testimonials-section-cream .accolades-item__text h4 {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.5;
  color: var(--black, #0a0a0a);
  margin-bottom: 0;
}

.testimonials-section-cream .accolades-item__text p {
  margin-top: 16px;
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--black, #0a0a0a);
}

/* Read more truncation */
.testimonials-section-cream .testimonial-content {
  display: block;
  overflow: hidden;
}

.testimonials-section-cream .testimonial-short {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.testimonials-section-cream .accolades-item.expanded .testimonial-short {
  display: block;
  -webkit-line-clamp: unset;
}

/* Read more link */
.testimonials-section-cream .read-more-link {
  display: inline-block;
  margin-top: 12px;
  color: var(--warriorsage-red, #D80114);
  text-decoration: underline;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: color 0.3s ease;
}

.testimonials-section-cream .read-more-link:hover {
  color: var(--black, #0a0a0a);
}

/* Author name */
.testimonials-section-cream .accolades-item__name {
  margin-top: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--warriorsage-red, #D80114);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Author title */
.testimonials-section-cream .accolades-item__profession {
  font-size: 0.95rem;
  font-style: italic;
  margin-top: 4px;
  color: var(--grey, #666666);
}

/* Video testimonials */
.testimonials-section-cream .video-testimonial {
  margin-bottom: 48px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.testimonials-section-cream .video-testimonial__embed {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 16px;
}

.testimonials-section-cream .video-testimonial__embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.testimonials-section-cream .video-testimonial__name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--warriorsage-red, #D80114);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.testimonials-section-cream .video-testimonial__company {
  font-size: 0.95rem;
  font-style: italic;
  color: var(--grey, #666666);
  margin-top: 4px;
}
