/* About Page Specific Styles */

/* Journey Content */
.journey-content {
    padding: 4rem 0 6rem;
    background: var(--bg-white);
}

.story-section {
    max-width: 800px;
    margin: 0 auto 6rem;
    position: relative;
}

.story-section:last-child {
    margin-bottom: 0;
}

/* Story Number (Timeline Badge) */
.story-number {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: var(--gradient);
    color: white;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
}

.story-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 2rem;
    line-height: 1.2;
}

.story-text {
    font-size: 1.125rem;
    line-height: 1.9;
    color: var(--text-secondary);
}

.story-text p {
    margin-bottom: 1.5rem;
}

.story-text p:last-child {
    margin-bottom: 0;
}

.story-text strong {
    color: var(--text-primary);
    font-weight: 600;
}

.story-text em {
    font-style: italic;
    color: var(--text-primary);
}

/* Highlighted Section */
.story-section.highlight {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.03) 0%, rgba(139, 92, 246, 0.03) 100%);
    border: 1px solid rgba(99, 102, 241, 0.15);
    border-radius: var(--radius-lg);
    padding: 3rem;
}

.story-section.highlight .story-title {
    text-align: center;
    margin-bottom: 3rem;
}

/* Learning Moments */
.learning-moment {
    margin-bottom: 3rem;
}

.learning-moment:last-child {
    margin-bottom: 0;
}

.moment-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--primary);
}

.insight {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary);
    font-style: italic;
    margin: 2rem 0 1.5rem;
}

/* Lists */
.comparison-list,
.goals-list {
    list-style: none;
    margin: 1.5rem 0;
    padding: 0;
}

.comparison-list li,
.goals-list li {
    padding: 0.75rem 0 0.75rem 2rem;
    position: relative;
    font-size: 1.0625rem;
    line-height: 1.7;
}

.comparison-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
    font-size: 1.25rem;
}

.goals-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
    font-size: 1.25rem;
}

/* Quote Style */
.story-text blockquote {
    border-left: 4px solid var(--primary);
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: var(--text-primary);
}

/* Responsive */
@media (max-width: 968px) {
    .story-title {
        font-size: 2rem;
    }
    
    .moment-title {
        font-size: 1.5rem;
    }
    
    .story-section.highlight {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .journey-content {
        padding: 3rem 0 4rem;
    }
    
    .story-section {
        margin-bottom: 4rem;
    }
    
    .story-title {
        font-size: 1.75rem;
    }
    
    .story-text {
        font-size: 1.0625rem;
    }
    
    .moment-title {
        font-size: 1.375rem;
    }
    
    .insight {
        font-size: 1.125rem;
    }
    
    .story-section.highlight {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .story-number {
        font-size: 0.875rem;
        padding: 0.375rem 1rem;
    }
}
