/**
 * DISCORAK - Styles Testimonial
 * Section avis centré
**/

/* ============================================================
   SECTION TESTIMONIAL
   ============================================================ */
   #testimonial{
    width: 100%;
    padding: 5rem 15%;
    text-align: center;
    background: var(--bg-dark-800-30);
   }

   /* ============================================================
   ETOILES
   ============================================================ */
   .stars{
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    letter-spacing: 0.2rem;    
   }

   /* ============================================================
   CITATION
   ============================================================ */
   .testimonial-quote{
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 700;
    font-style: italic;
    color: var(--text-primary);
    max-width: 800px;
    margin: 0 auto 1.5rem;
    line-height: 1.7;
   }

   /* ============================================================
   AUTEUR
   ============================================================ */
   .testimonial-author{
    font-size: 0.95rem;
    color: var(--text-secondary);
   }

   /* ============================================================
   RESPONSIVE
   ============================================================ */
   @media (max-width: 768px){
    #testimonial{
        padding: 3rem 1.5rem;
    }

    .testimonial-quote{
        font-size: 1rem;
    }
   }