/* Success Stories Page Styles */
.stories-section {
    padding: 4rem 0 6rem;
}

.stories-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.story-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1.5rem;
    padding: 2.5rem;
    transition: all 0.3s ease;
}

.story-card:hover {
    border-color: rgba(102, 126, 234, 0.3);
    transform: translateY(-2px);
}

.story-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.story-avatar {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.3), rgba(118, 75, 162, 0.3));
    border-radius: 50%;
    flex-shrink: 0;
}

.story-meta h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.story-author {
    font-weight: 500;
    color: var(--text-primary);
}

.story-role {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.story-quote {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
    border-left: 3px solid rgba(102, 126, 234, 0.5);
    font-style: italic;
}

.story-stats {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.story-stats span {
    padding: 0.5rem 1rem;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 9999px;
    font-size: 0.875rem;
    color: #818cf8;
}

@media (max-width: 768px) {
    .story-header {
        flex-direction: column;
        text-align: center;
    }
    
    .story-stats {
        justify-content: center;
    }
}
