.stories-overview {
    margin-bottom: 4rem;
}

.overview-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 3rem;
    border-radius: 16px;
    color: white;
    text-align: center;
}

.overview-stats .stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    display: block;
    margin-bottom: 0.5rem;
}

.overview-stats .stat-label {
    font-size: 1rem;
    opacity: 0.95;
    line-height: 1.4;
}

.featured-story {
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    overflow: hidden;
    margin-bottom: 5rem;
}

.story-header {
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    padding: 3rem;
    text-align: center;
}

.story-category {
    background: var(--accent-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}

.story-header h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.story-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    color: #64748b;
    font-size: 0.9rem;
}

.story-content {
    padding: 3rem;
}

.story-challenge,
.story-solution,
.story-results,
.story-impact {
    margin-bottom: 3rem;
}

.story-challenge h3,
.story-solution h3,
.story-results h3,
.story-impact h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.challenge-points {
    display: grid;
    gap: 1rem;
    margin-top: 1.5rem;
}

.challenge-point {
    background: #fef2f2;
    border-left: 4px solid #ef4444;
    padding: 1rem;
    border-radius: 0 8px 8px 0;
}

.solution-timeline {
    margin-top: 2rem;
}

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.timeline-step {
    background: var(--accent-color);
    color: white;
    padding: 0.75rem;
    border-radius: 50%;
    font-weight: bold;
    min-width: 80px;
    text-align: center;
    flex-shrink: 0;
}

.timeline-content {
    flex: 1;
    background: #f0f9ff;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

.timeline-content h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.timeline-content ul {
    list-style: none;
    padding: 0;
}

.timeline-content li {
    padding: 0.25rem 0;
    padding-left: 1rem;
    position: relative;
}

.timeline-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.result-card {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border-top: 4px solid var(--accent-color);
}

.result-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.result-value {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.5rem;
}

.result-label {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.4;
}

.success-quote {
    background: #f1f5f9;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
    margin-top: 2rem;
}

.success-quote blockquote {
    margin: 0 0 1rem 0;
    font-style: italic;
    color: #374151;
    font-size: 1.1rem;
    line-height: 1.6;
}

.success-quote cite {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
}

.impact-metrics {
    display: grid;
    gap: 1rem;
    margin-top: 1.5rem;
}

.impact-item {
    background: #dcfce7;
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid #16a34a;
}

.other-stories {
    margin-bottom: 5rem;
}

.other-stories h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 3rem;
    font-size: 2rem;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.story-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform 0.3s ease;
    position: relative;
}

.story-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.story-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--accent-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 2;
}

.story-header-small {
    padding: 2rem 2rem 1rem;
}

.story-header-small h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    line-height: 1.4;
}

.story-meta-small {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    color: #64748b;
    font-size: 0.85rem;
}

.story-summary {
    padding: 0 2rem 1rem;
}

.story-summary p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    line-height: 1.5;
}

.story-highlight {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 1.5rem 2rem;
    text-align: center;
}

.highlight-number {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 0.25rem;
}

.highlight-text {
    font-size: 0.9rem;
    opacity: 0.95;
}

.success-metrics {
    background: #f8fafc;
    padding: 4rem 3rem;
    border-radius: 16px;
    margin-bottom: 4rem;
}

.success-metrics h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.metric-category {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
}

.metric-category h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

.metric-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.metric-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 8px;
}

.metric-value {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--accent-color);
}

.metric-label {
    color: #64748b;
    font-size: 0.9rem;
    text-align: right;
    max-width: 60%;
    line-height: 1.3;
}

.stories-cta {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 4rem 3rem;
    border-radius: 16px;
    text-align: center;
}

.stories-cta h2 {
    color: white;
    margin-bottom: 1rem;
}

.stories-cta p {
    font-size: 1.1rem;
    opacity: 0.95;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-secondary {
    background: rgba(255,255,255,0.1);
    border: 2px solid white;
    color: white;
}

.btn-secondary:hover {
    background: white;
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .overview-stats {
        grid-template-columns: 1fr;
        padding: 2rem;
    }
    
    .story-header {
        padding: 2rem;
    }
    
    .story-header h2 {
        font-size: 1.5rem;
    }
    
    .story-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .story-content {
        padding: 2rem;
    }
    
    .timeline-item {
        flex-direction: column;
        gap: 1rem;
    }
    
    .timeline-step {
        align-self: flex-start;
        min-width: auto;
        padding: 0.5rem 1rem;
    }
    
    .results-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stories-grid {
        grid-template-columns: 1fr;
    }
    
    .metrics-grid {
        grid-template-columns: 1fr;
    }
    
    .metric-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .metric-label {
        max-width: 100%;
        text-align: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}
