.testimonial-card {
  opacity: 0;
  transform: translateY(20px);
  animation: cardAppear 0.6s ease-out forwards;
}

@keyframes cardAppear {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.testimonials-grid.container {
  max-width: 1200px;
}
.wall-of-love-section {
  background: #fbfbfb;
}

.testimonial-card.verified-customer {
  .social-icon, .date {
    display:none;
  }
  padding: 25px;
  h3,
  h4 {
    font-size: 18px;
    font-weight: 600;
    color: #6c6ad6;
  }
  h5 {
    font-weight: 600;
  }
}
.testimonials-grid {
  .testimonial-card.dark {
    background: #0e1113;
    * {
      color: white;
    }
  }
  img.screenshot {
    width: 100%;
    object-fit: cover;
    border-radius: 16px;
  }
  h2 {
    padding: 0px;
    font-size: 40px;
    margin: 0 0 2rem;
    line-height: 100%;
    font-family: "Fellix Semibold";
    letter-spacing: -0.04em;
    color: #2a3441;
    text-transform: none;
    color: #2a3441;
    text-align: center;
  }
  .subtitle {
    color: #6c6ad6;
    font-size: 14px;
    text-transform: uppercase;
  }
}
.text-muted {
  color: #8e8e8e !important;
}

.testimonial-card {
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(204, 204, 204, 1);
  .verified {
    font-size: 14px;
    color: #333333;
  }
  .testimonial-text h4 {
    font-size: 18px;
    font-weight: 600;
    color: #6c6ad6;
  }

  h5 {
    font-weight: bold;
  }
  .date {
    font-size: 11px;
  }
  .source {
    font-size: 13px;
  }
  .testimonial-text {
    p,
    body {
      font-size: 13px;
      color: #333333;
      margin-bottom: 1rem;
      &:last-child {
        margin-bottom: 0;
      }
    }
    h3 {
      margin-bottom: 10px;
      font-size: 16px;
      font-weight: bold;
    }
  }
}

.verified-badge {
  color: #666;
}

.social-icon {
  color: #1877f2;
  width: 15px;
}

.screenshot-container {
  border-radius: 8px;
  overflow: hidden;
}
