.clay-journey-wrapper-284ca785 {
    max-width: 800px;
    margin: 0 auto;
    padding: 30px 20px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    text-align: center;
}

.clay-header {
    margin-bottom: 40px;
}

.clay-badge {
    display: inline-block;
    padding: 6px 14px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    border-radius: 50px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.clay-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin: 0 0 15px 0;
    line-height: 1.2;
}

.clay-intro {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Timeline Layout */
.clay-timeline-navigation {
    position: relative;
    margin: 50px auto 40px auto;
    max-width: 600px;
}

.clay-progress-track {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 4px;
    background-color: #E6E1DA;
    transform: translateY(-50%);
    z-index: 1;
}

.clay-progress-fill {
    height: 100%;
    width: 0%;
    transition: width 0.4s ease;
}

.clay-steps-container {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.clay-step-btn {
    border: 3px solid #E6E1DA;
    background: #FFF;
    border-radius: 50px;
    min-width: 65px;
    height: 65px;
    padding: 0 10px;
    cursor: pointer;
    outline: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.clay-step-btn:hover {
    transform: scale(1.1);
}

.clay-step-year {
    font-size: 0.9rem;
    font-weight: 700;
    color: #555;
    transition: color 0.3s ease;
}

.clay-step-btn.clay-active .clay-step-year {
    color: #FFF;
}

/* Story Cards */
.clay-story-cards {
    position: relative;
    min-height: 250px;
}

.clay-story-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateY(20px) scale(0.98);
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.clay-story-card.active {
    position: relative;
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.clay-card-body {
    border-radius: 16px;
    padding: 35px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    text-align: left;
    border: 1px solid rgba(0,0,0,0.05);
}

.clay-milestone-title {
    font-size: 1.6rem;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.clay-milestone-indicator {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 3px solid #E6E1DA;
    background: transparent;
    transition: all 0.4s ease;
}

.clay-milestone-desc {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 25px;
    color: #4A4A4A;
}

.clay-fun-fact {
    background: rgba(255,255,255,0.6);
    border-left: 4px solid #C05C3E;
    padding: 12px 20px;
    border-radius: 0 8px 8px 0;
}

.clay-fun-fact p {
    margin: 0;
    font-size: 0.95rem;
    font-style: italic;
    color: #5A5A5A;
}

@media (max-width: 480px) {
    .clay-step-btn {
        min-width: 55px;
        height: 55px;
    }
    .clay-step-year {
        font-size: 0.8rem;
    }
    .clay-card-body {
        padding: 20px;
    }
}
