/* Story Page Styles */

/* Section Headers */
.story-hero {
    background: linear-gradient(135deg, #f3f0ea 0%, #dcc3a5 100%);
    padding: 3rem 0;
    text-align: center;
}

/* Timeline Styles */
.timeline {
    padding: 4rem 0;
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    padding-left: 2rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 12px;
    height: 12px;
    background: #c6793d;
    border-radius: 50%;
}

.timeline-item::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 12px;
    width: 2px;
    height: calc(100% + 1rem);
    background: #a89a97;
}

.timeline-item:last-child::after {
    display: none;
}

.timeline-content {
    background: #f3f0ea;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(35, 67, 92, 0.1);
}

.timeline-date {
    color: #c6793d;
    font-weight: 600;
    margin-bottom: 0.5rem;
}
