[data-bs-theme="dark"] .timeline-item {
    color: #e6edf3;
}
[data-bs-theme="dark"] .anho {
    color: #e6edf3;
}
[data-bs-theme="dark"] .evento, [data-bs-theme="dark"] .timeline_section p {
    color: #e6edf3;
}
[data-bs-theme="dark"] .timeline-item .icono {
    color: #e6edf3;
}
[data-bs-theme="dark"] .timeline-item::after, [data-bs-theme="dark"] .timeline-item .marker {
    background-color: #e6edf3;
    color: #e6edf3;
}
/* Timeline layout fix */
.timeline-item {
    position: relative;
    opacity: 0;
    transition: opacity 0.6s, transform 0.6s;
    display: flex;
    align-items: flex-start;
    min-height: 70px;
    padding-bottom: 4rem;
    cursor: default;
}
.timeline-item::after {
    content: "";
    position: absolute;
    left: 19px;
    top: 0;
    height: 100%;
    width: 1px;
    background-color: #0C2948;
    opacity: 1;
    z-index: 0;
}
.timeline-item .marker {
    position: absolute;
    left: 9px;
    top: 10px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    box-sizing: border-box;
    opacity: 1;
    background-color: #0C2948;
    z-index: 2;
    flex-shrink: 0;
}
.timeline-item .texto {
    margin-left: 60px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
.anho {
    font-size: 24px;
    color: #0C2948;
    font-weight: 700;
    margin-bottom: 1.5rem;
}
.evento, .timeline_section p {
    font-size: 16px;
    color: #222;
    margin-bottom: 0.5rem;
}
.timeline-item .icono {
    margin-left: 30px;
    margin-top: 0.5rem;
    font-size: 22px;
    color: #0C2948;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
}
@media (min-width: 992px) {
    .anho {
        font-size: 60px;
    }
    .timeline-item .icono {
        font-size: 32px;
    }
}
@media (min-width: 768px) {
    .anho {
        font-size: 40px;
    }
    .timeline-item .icono {
        font-size: 28px;
    }
}