.testimonials-summary {
    font-size: var(--h3-font-size);
}

/* =========================================================
   CITE TEXT (TRIGGER)
========================================================= */
.cite {
    position: relative;
    cursor: pointer;
    color: var(--first-color-second);
    text-decoration: wavy underline;
    text-underline-offset: 4px;
    text-decoration-color:rgba(247, 100, 100,0.4);
    font-weight: 600;
    transition: border-color 0.2s ease, color 0.2s ease;
  }
  

  @media (hover: none) and (pointer: coarse) {
    .cite {
      border-bottom: none !important;
    }
  }
  

  
  /* underline reveal */
  .cite:hover {
    color: var(--first-color-alt);
    transition: width 0.28s ease;
  }

  
  /* =========================================================
     TOOLTIP CARD — NO BLUR, CLEAN, MATCHES YOUR DESIGN
  ========================================================= */
  .testimonial-tooltip {
    position: absolute;
    max-width: 340px;
    width: max-content;
  
    padding: 1rem 1.2rem;
    border-radius: 14px;
  
    /* Matches your timeline / card backgrounds */
    background: var(--container-color);
  
    /* Soft site-consistent borders & shadows */
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 4px 18px rgba(0,0,0,0.12);
  
    /* Typography uses your global variables */
    font-size: var(--small-font-size);
    line-height: 1.55;
    color: var(--text-color);
  
    /* Animation */
    opacity: 0;
    transform: translateY(6px) scale(0.97);
    transition: 
      opacity .22s ease,
      transform .22s ease;
  
    z-index: 99999;
    pointer-events: none;
  }
  
  .testimonial-tooltip.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
  }
  
  
  /* =========================================================
     TOOLTIP TITLE — YOUR h3 SIZE
  ========================================================= */
  .testimonial-tooltip strong {
    display: block;
    margin-bottom: 0.45rem;
    font-size: var(--h5-font-size);
    font-weight: 600;
    color: var(--title-color);
  }
  
  
  
  /* =========================================================
     DARK THEME SUPPORT
  ======
  