.cronograma-header {
    text-align: center;
    margin: 30px;
    
}

.cronograma-header h2 {
    font-size: 28px;
    font-weight: bold;
    margin: 0;
    color: #cd2046;
}

.cronograma-header h3 {
    font-size: 22px;
    margin: 5px 0 0 0;
    color: #cd2046;
}

.timeline-pdf {
    position: relative;
    margin: 10px 200px;
    background-color: #2e2e44;¨
   
    
}

/* LINEA CENTRAL */
.timeline-pdf::before {
    content: '';
    position: absolute;
    width: 3px;
    background: #cd2046;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

/* ITEM */
.timeline-pdf .timeline {
    width: 50%;
    padding: 30px 40px;
    position: relative;

}

/* IZQUIERDA */
.timeline-pdf .timeline:nth-child(odd) {
    left: 0;
}

/* DERECHA */
.timeline-pdf .timeline:nth-child(even) {
    left: 50%;
}

/* PUNTO */
.timeline-pdf .timeline::before {
    content: "";
    position: absolute;
    top: 15px;
    right: -8px;
    width: 15px;
    height: 15px;
    background: #cd2046;
    border-radius: 50%;
}

/* AJUSTE DERECHA */
.timeline-pdf .timeline:nth-child(even)::before {
    left: -8px;
}

/* CAJA */
.timeline-pdf .timeline-content {
    background: #f48e1e;
    padding: 15px;
    border-radius: 6px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

/* TEXTO */
.timeline-pdf .date {
    font-weight: bold;
    color: #951b40;
    font-size: 24px;
    background-color: #fff;

}

.timeline-pdf h4 {
    text-transform: uppercase;
    margin: 8px 0;
}

.timeline-pdf ul {
    margin-left: 18px;
}

span{
    font-weight: bold;
}

/* DESTACADO */
.timeline-pdf .destacado .timeline-content {
    background: #cd2046;
    color: #fff;
}

.timeline-pdf ul {
    list-style-type: disc !important;
    padding-left: 20px;
}

.timeline-pdf ul li {
    display: list-item !important;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .timeline-pdf::before {
        left: 10px;

    }

    .timeline-pdf .timeline {
        width: 100%;
        padding-left: 30px;
        padding-right: 10px;
        left: 0 !important;
  
    }

    .timeline-pdf .timeline::before {
        left: 0;

    }
    .timeline-pdf {
        margin: 20px 0;
    }
}