:root {
  --text-light: #ffffff;
  --border-light-1: rgba(255, 255, 255, 0.3);
  --border-light-2: rgba(255, 255, 255, 0.5);
  --bg-glass: rgba(255, 255, 255, 0.3);
  --font-family-main: 'Poppins', sans-serif;
}

body {
  margin: 0;
  font-family: var(--font-family-main);
  background-color: #1a1a1a; /* Dark background to showcase the component */
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 24px;
}

* {
  box-sizing: border-box;
}

p, blockquote {
  margin: 0;
}

/* CSS from section:testimonial */
.testimonial-section {
    width: 100%;
    max-width: 720px;
  }

  .testimonial-card {
    position: relative;
    width: 100%;
    max-width: 696px;
    margin: 0 auto;
    aspect-ratio: 696 / 912;
    background-image: url('../images/login.webp');
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }

  .testimonial-overlay {
    width: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 100%);
    padding-top: 96px;
  }

  .testimonial-content {
    background-color: var(--bg-glass);
    border: 1px solid var(--border-light-1);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 32px;

  }

  .quote {
    color: var(--text-light);
    font-weight: 500;
    font-size: 30px;
    line-height: 38px;
  }

  .attribution-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .name-and-stars {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
  }

  .name {
    color: var(--text-light);
    font-weight: 500;
    font-size: 24px;
    line-height: 32px;
  }

  .star-rating {
    display: flex;
    align-items: center;
    gap: 4px;
  }

  .star-icon {
    width: 20px;
    height: 20px;
    background-color: var(--text-light);
    -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="currentColor"><path d="M12 .587l3.668 7.568 8.332 1.151-6.064 5.828 1.48 8.279-7.416-3.966-7.417 3.966 1.481-8.279-6.064-5.828 8.332-1.151z"/></svg>');
    mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="currentColor"><path d="M12 .587l3.668 7.568 8.332 1.151-6.064 5.828 1.48 8.279-7.416-3.966-7.417 3.966 1.481-8.279-6.064-5.828 8.332-1.151z"/></svg>');
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .details-and-arrows {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
  }

  .details {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  .job-title {
    color: var(--text-light);
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
  }

  .company {
    color: var(--text-light);
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
  }

  .navigation-arrows {
    display: flex;
    gap: 32px;
  }

  .arrow-button {
    width: 56px;
    height: 56px;
    background-color: transparent;
    border: 1px solid var(--border-light-2);
    border-radius: 9999px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    cursor: pointer;
    transition: background-color 0.2s;
  }

  .arrow-button:hover {
    background-color: rgba(255, 255, 255, 0.1);
  }

  .arrow-button img {
    width: 24px;
    height: 24px;
  }

  @media (max-width: 600px) {
    .quote {
      font-size: 24px;
      line-height: 32px;
    }

    .name {
      font-size: 20px;
      line-height: 28px;
    }

    .name-and-stars,
    .details-and-arrows {
      flex-direction: column;
      align-items: flex-start;
      gap: 16px;
    }

    .navigation-arrows {
      align-self: flex-end;
    }
  }
  .notification-slide {
    display: none;
  }

  .notification-slide.active {
    display: block;
  }
  .notification-slide {
    font-size: 0.95rem; /* ou 15px */
    line-height: 1.4;
    max-height: 140px;
    overflow-y: auto;
    overflow-x: hidden;
    word-wrap: break-word;
    white-space: normal;
  }