/* Reusable Testimonial Component - Stripe-inspired minimal design */

.testimonial-section {
    padding: 48px 16px;
    background: linear-gradient(to bottom, #ffffff 0%, #f8fafc 100%);
}

.testimonial-container {
    max-width: 56rem; /* 896px - matches max-w-4xl */
    margin: 0 auto;
}

.testimonial-card {
    background: #ffffff;
    border: 1px solid #e2e8f0; /* slate-200 */
    border-radius: 16px;
    padding: 48px 32px;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.2s ease;
    text-align: center;
}

.testimonial-card:hover {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

/* Quote icon - subtle decorative element */
.testimonial-quote-icon {
    display: inline-block;
    width: 40px;
    height: 40px;
    margin: 0 auto 24px;
    opacity: 0.15;
    color: #4f46e5; /* brand-600 */
}

.testimonial-quote-icon svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}

/* Quote text */
.testimonial-quote {
    font-size: 20px;
    line-height: 1.6;
    color: #0f172a; /* slate-900 */
    margin-bottom: 32px;
    font-weight: 400;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

/* Author section */
.testimonial-author {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-top: 32px;
}

.testimonial-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #f1f5f9; /* slate-100 */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}

.testimonial-author-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.testimonial-author-name-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.testimonial-author-name {
    font-size: 16px;
    font-weight: 600;
    color: #0f172a; /* slate-900 */
    margin: 0;
}

.testimonial-linkedin-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    transition: opacity 0.2s ease;
    cursor: pointer;
}

.testimonial-linkedin-link:hover {
    opacity: 0.8;
}

.testimonial-linkedin-link svg {
    width: 18px;
    height: 18px;
}

.testimonial-author-role {
    font-size: 14px;
    color: #64748b; /* slate-500 */
    margin: 0;
    line-height: 1.4;
}

/* Tablet and up */
@media (min-width: 768px) {
    .testimonial-section {
        padding: 56px 24px;
    }
    
    .testimonial-card {
        padding: 56px 48px;
    }
    
    .testimonial-quote {
        font-size: 22px;
    }
    
    .testimonial-avatar {
        width: 80px;
        height: 80px;
    }
}

/* Desktop */
@media (min-width: 1024px) {
    .testimonial-section {
        padding: 64px 32px;
    }
    
    .testimonial-card {
        padding: 64px 64px;
    }
    
    .testimonial-quote {
        font-size: 24px;
        line-height: 1.5;
    }
}
