.timeline-section {
    max-width: 768px;
    margin: 0 auto;
    position: relative;
}

.timeline-container {
    position: relative;
    width: 100%;
    padding: 0 2rem;
}

.timeline-line {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background-color: #c5b488; /* Couleur dorée */
    top: 0;
}

.moment-wrapper {
    position: relative;
    margin-bottom: 4rem;
    min-height: 200px;
}

.moment-image {
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
}

.moment-image.left {
    left: calc(50% - 220px);
}

.moment-image.right {
    right: calc(50% - 220px);
}

.moment-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.moment-info {
    position: absolute;
    width: 40%;
}

.moment-info.left {
    left: 0;
    text-align: right;
}

.moment-info.right {
    right: 0;
    text-align: left;
}

.moment-date {
    margin-bottom: 0.5rem;
}

.year {
    font-size: 1.5rem;
    font-style: italic;
    display: block;
}

.location {
    font-size: 1rem;
    font-style: italic;
}

.moment-title {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.timeline-dot {
    position: absolute;
    width: 12px;
    height: 12px;
    background-color: #c5b488;
    border-radius: 50%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.timeline-end {
    position: relative;
    text-align: center;
    padding-top: 2rem;
}

.to-be-continued {
    font-style: italic;
    color: #666;
}

@media (max-width: 768px) {

}
