/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    min-height: 100vh;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: #ECF2F8;
    padding: 6rem 1.5rem;
    line-height: 1.5;
  }
  
  /* Grid Layout */
  .testimonials-grid {
    display: grid;
    gap: 2rem;
    max-width: 1440px;
    margin: 0 auto;
  }
  
  @media (min-width: 768px) {
    .testimonials-grid {
      grid-template-columns: repeat(4, 1fr);
      grid-template-rows: repeat(2, auto);
    }
  
    /* Specific card placements */
    .testimonial:nth-child(1) { grid-column: 1 / 3; }
    .testimonial:nth-child(4) { grid-column: 2 / 4; }
    .testimonial:nth-child(5) { 
      grid-column: 4;
      grid-row: 1 / 3;
    }
  }
  
  /* Card Styles */
  .testimonial {
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
  }
  
  /* Card Color Variants */
  .testimonial-purple {
    background-color: #733FC8;
    color: white;
  }
  
  .testimonial-gray {
    background-color: #48556A;
    color: white;
    box-shadow: rgb(165, 165, 165) 0px 48px 100px 0px;
  }
  
  .testimonial-white {
    background-color: white;
    color: #48556A;
    box-shadow: rgb(165, 165, 165) 0px 48px 100px 0px;
  }
  
  .testimonial-blackish {
    background-color: #19202D;
    color: white;
    box-shadow: rgb(165, 165, 165) 0px 48px 100px 0px;
  }
  
  /* Quote Background */
  .quote-bg {
    position: absolute;
    top: 0;
    right: 1.5rem;
    width: 7rem;
    height: 7rem;
    z-index: 0;
  }
  
  /* Header Styles */
  .testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    z-index: 1;
    margin-bottom: 1rem;
  }
  
  .avatar {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    border: 2px solid plum;
  }
  
  .avatar svg {
    width: 1.25rem;
    height: 1.25rem;
    color: currentColor;
    opacity: 0.8;
  }
  
  .author-info h2 {
    font-size: 0.8125rem;
    font-weight: 500;
  }
  
  .author-info p {
    font-size: 0.8125rem;
    opacity: 0.5;
  }
  
  /* Quote Content */
  blockquote {
    position: relative;
    z-index: 1;
  }
  
  .quote {
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
  }
  
  .description {
    font-size: 0.8125rem;
    opacity: 0.7;
    line-height: 1.8;
  }
  
  /* White Card Specific Styles */
  .testimonial-white .avatar {
    background-color: rgba(115, 63, 200, 0.1);
    border-color: rgba(115, 63, 200, 0.1);
  }
  
  .testimonial-white .avatar svg {
    color: #48556A;
  }
  
  /* Attribution Styles */
  .attribution {
    text-align: center;
    font-size: 0.875rem;
    color: #48556A;
    margin-top: 2rem;
  }
  
  .attribution a {
    color: #733FC8;
    text-decoration: none;
    transition: color 0.2s ease;
  }
  
  .attribution a:hover {
    color: #48556A;
    text-decoration: underline;
  }