/* ================= Testimonials Section (Block) ================= */
.testimonials-section { background-size: auto; background-position: center top; background-repeat: repeat; padding: 30px 0 60px; }
.cta-pill-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 26px; margin-bottom: 28px; }
.cta-pill { 
    display: inline-flex; 
    align-items: center; 
    justify-content: center; 
    background: #cb3638; 
    color: #fff; 
    border-radius: 999px; 
    padding: 12px 24px; 
    text-decoration: none; 
    font-weight: 800; 
    box-shadow: 0 6px 20px rgba(0,0,0,.25);
    transition: background-color 0.3s ease, color 0.3s ease;
}
.cta-pill:hover { background: #fff; color: #cb3638; }

.testimonial-shell { background-size: auto; background-position: center top; background-repeat: repeat; border-radius: 8px; overflow: hidden; box-shadow: 0 12px 28px rgba(0,0,0,.35); }
.testimonial-header { text-align: center; padding: 30px 20px 0; color: #fff; }
.testimonial-kicker { 
    font-family: "Averia Serif Libre", sans-serif;
    font-weight: 400;
    font-size: 2rem;
    line-height: 1.2;
    margin: 0 0 6px;
}
.testimonial-title { color: #cb3638; font-size: 56px; margin: 0 0 10px; font-weight: 900; text-transform: uppercase; }
.testimonial-slider { position: relative; padding: 24px 28px 36px; color: #fff; min-height: 220px; }
.testimonial { display: none; text-align: center; max-width: 1000px; margin: 0 auto; }
.testimonial.active { display: block; }
.testimonial-text { font-size: 20px; line-height: 1.6; margin: 0 0 16px; }
.testimonial-author { font-weight: 900; color: #cb3638; letter-spacing: .5px; }
.testimonial-dots { display: flex; gap: 12px; justify-content: center; padding: 0 0 26px; }
.testimonial-dots .dot { width: 10px; height: 10px; border-radius: 50%; background: #cb3638; opacity: .6; border: none; cursor: pointer; }
.testimonial-dots .dot.active { opacity: 1; }

@media (max-width: 1024px) { 
  .cta-pill-row { grid-template-columns: 1fr 1fr 1fr; }
  .testimonial-title { font-size: 44px; }
}

@media (max-width: 768px) {
  .cta-pill-row { grid-template-columns: 1fr; }
  .testimonial-title { font-size: 36px; }
  .testimonial-text { font-size: 18px; }
}


