.timeline-08b4f778 {
    --tl-color: #c9b068;
    width: 100%;
    padding: 20px 0;
}
.timeline-08b4f778-track {
    display: flex;
    justify-content: space-between;
}
.timeline-08b4f778-item {
    flex: 1;
    text-align: center;
    padding: 0 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.timeline-08b4f778-dot-wrapper {
    display: flex;
    align-items: center;
    width: 100%;
    margin-bottom: 30px;
}
.timeline-08b4f778-line {
    flex: 1;
    height: 1px;
    background-color: var(--tl-color);
}
.timeline-08b4f778-item:first-child .timeline-08b4f778-line-left {
    background-color: transparent;
}
.timeline-08b4f778-item:last-child .timeline-08b4f778-line-right {
    background-color: transparent;
}
.timeline-08b4f778-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--tl-color);
    margin: 0 10px;
    flex-shrink: 0;
}
.timeline-08b4f778-dot.filled {
    background-color: var(--tl-color);
}
.timeline-08b4f778-dot.empty {
    background-color: transparent;
}
.timeline-08b4f778-content {
    max-width: 200px;
}
.timeline-08b4f778-phase {
    color: var(--tl-color);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}
.timeline-08b4f778-title {
    font-size: 24px;
    margin: 0 0 15px 0;
    font-family: serif;
    font-weight: normal;
}
.timeline-08b4f778-desc {
    font-size: 14px;
    line-height: 1.6;
}

/* Tablet & Mobile Breakpoint */
@media (max-width: 1024px) {
    .timeline-08b4f778-track {
        flex-direction: column;
    }
    .timeline-08b4f778-item {
        flex-direction: row;
        text-align: left;
        align-items: stretch;
    }
    .timeline-08b4f778-dot-wrapper {
        flex-direction: column;
        width: auto;
        margin-bottom: 0;
        margin-right: 20px;
    }
    .timeline-08b4f778-line {
        width: 1px;
        height: auto;
    }
    .timeline-08b4f778-dot {
        margin: 10px 0;
    }
    .timeline-08b4f778-content {
        max-width: none;
        padding-bottom: 30px;
    }
    .timeline-08b4f778-item:last-child .timeline-08b4f778-content {
        padding-bottom: 0;
    }
    .timeline-08b4f778-phase {
        margin-bottom: 10px;
    }
}