.hta-timeline-container {
        max-width: 1140px;
        margin: auto;
        /*padding: 20px;*/
        font-family: Arial, sans-serif;
    }

    .hta-timeline {
        position: relative;
    }

    /* LÍNEA VERTICAL */
    .hta-timeline::before {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        left: calc(80px + 80px);
        height: 100%;
        width: 5px;
        background: #233a64;
        z-index: 1;
    }

    .hta-item {
        display: grid;
        grid-template-columns: 80px 80px 1fr;
        align-items: center;
        gap: 4px;
        /*margin: 15px 0;*/
        padding: 8px;
        cursor: pointer;
        transition: background 0.2s, transform 0.2s;
        position: relative;
    }

    .hta-item:hover {
        outline: solid 1px var(--lightest-secondary);
        border-radius: 8px;
        background-color: var(--lightest-bg);
    }

    .hta-title-text p {
        font-size: var(--p-size);
        /*font-weight: bold;*/
        line-height: var(--h3-line-height);
    }

    /* Para que los enlaces dentro del título funcionen */
    .hta-title-text a {
        font-size: inherit;
        font-weight: inherit;
        position: relative;
        z-index: 3;
    }

    /* Evitar que el click en enlaces dispare el modal */
    .hta-title-text a {
        pointer-events: auto;
    }

    .hta-year {
        font-size: 1.2rem;
        font-weight: bold;
        display: flex;
        align-items: center;
        justify-content: right;
        /*text-align: center;*/
    }

    /* CÍRCULO */
    .hta-circle {
        width: 24px;
        height: 24px;
        background: #fff;
        border: 6px solid #233a64;
        border-radius: 50%;
        cursor: pointer;
        z-index: 2;
        margin: auto;
        transition: transform 0.2s;
		margin-left: 26px;
        /*margin-left: calc(80px / 2 - 2px);*/
        /* centra en la columna */
    }

    .hta-item:hover .hta-circle {
        width: 24px;
        height: 24px;
        transform: scale(1.1);
        background: #233a64;
        outline: 6px solid #233a64;
        border: 6px solid var(--lightest-secondary);
    }

    /* OCULTO */
    .hta-desc {
        display: none;
    }

    /* OVERLAY */
    .hta-modal {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(199, 227, 245, 0.45);
        z-index: 999999;
        align-items: center;
        justify-content: center;
    }

    /* CAJA DEL MODAL */
    .hta-modal-content {
        background: #ffffff;
        max-width: 600px;
        width: 90%;
        padding: 40px;
        border-radius: 12px;
        position: relative;
        border: solid 4px #233a64;
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    }

    /* BOTÓN CERRAR */
    .hta-close {
        position: absolute;
        top: -38px;
        right: -30px;
        font-size: 40px;
        font-weight: bold;
        color: #233a64;
        cursor: pointer;
        line-height: 1;
    }

    #htaModalText {
        font-family: inherit;
        font-size: inherit;
        line-height: inherit;
        color: inherit;
    }

    #htaModalText p {
        margin: 0;
    }