    .timeline {
        position: relative;
        width: 100%;
    }

    .timeline-item {
        display: flex;
        position: relative;
    }

    .timeline-left {
        width: 100px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .date-circle {
        width: 70px;
        height: 70px;
        border-radius: 50%;
        background-color: #c00;
        color: #fff;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        font-weight: bold;
        text-align: center;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    }

    .date-circle .day {
        font-size: 1.5rem;
        line-height: 1;
    }

    .date-circle .month-year {
        font-size: 0.8rem;
        line-height: 1.1;
    }

    .timeline-center {
        width: 30px;
        position: relative;
        display: flex;
        align-items: center;
    }

    .timeline-center .line {
        position: absolute;
        left: 50%;
        top: 0;
        bottom: 0;
        width: 4px;
        background-color: #ccc;
        transform: translateX(-50%);
        z-index: 1;
    }

    .timeline-center .dot {
        position: relative;
        width: 16px;
        height: 16px;
        background-color: #c00;
        border: 2px solid #fff;
        border-radius: 50%;
        margin: 0 auto;
        z-index: 2;
        /* top: 25px; */
    }

    .timeline-right {
        flex-grow: 1;
        padding-left: 20px;
        padding-top: 50px;
        padding-bottom: 50px;
        width: calc(100% - 130px);
        /* 100px (timeline-left) + 30px (timeline-center) */
        max-width: none;
    }

    .content-box {
        /* background: #e9e9e9; */
        background: #fbfbfb;
        border: 1px solid #b5b5b5;
        border-radius: 12px;
        padding: 15px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }

    .month-marker {
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 40px 0 20px 0;
        position: relative;
        z-index: 2;
    }

    .month-circle {
        width: 120px;
        height: 120px;
        border-radius: 50%;
        background: #fff;
        border: 6px solid #c00;
        color: #c00;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        font-size: 1.3rem;
        font-weight: bold;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
        position: relative;
        z-index: 2;
        text-align: center;
    }

    .month-circle .month {
        font-size: 1.5rem;
        font-weight: bold;
        line-height: 1.1;
    }

    .month-circle .year {
        font-size: 1.6rem;
        font-weight: normal;
        margin-top: 2px;
    }

    /* Ajuste para que la línea vertical pase por detrás del círculo grande */
    .timeline-center .month-marker-line {
        position: absolute;
        left: 50%;
        top: 0;
        bottom: 0;
        width: 4px;
        background-color: #ccc;
        transform: translateX(-50%);
        z-index: 1;
    }


    .evento-link {
        text-decoration: none;
        color: inherit;
    }

    .custom-content-box {
        padding-bottom: 100px !important;
        /* espacio para la imagen circular */
        text-align: center;
    }

    .circle-image-wrapper {
        position: absolute;
        left: 50%;
        bottom: -75px;
        transform: translateX(-50%);
        width: 150px;
        height: 150px;
        z-index: 3;
        display: flex;
        justify-content: center;
        align-items: flex-start;
        pointer-events: none;
    }

    .circle-image {
        width: 150px;
        height: 150px;
        object-fit: cover;
        border-radius: 50%;
        border: 6px solid #fff;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.10);
        background: #eee;
        display: block;
    }

    .lineatemporal .evento-link:hover .custom-content-box {
        border-color: #c00 !important;
        box-shadow: 0 2px 16px rgba(200, 0, 0, 0.15);
        transition: border-color 0.2s, box-shadow 0.2s;
    }