/* Timeline Container */
.timeline-container {
    position: relative;
    margin-left: 40px;
}
.timeline-item {
    position: relative;
    margin-bottom: 40px;
}

.timeline-dot {
    position: absolute;
    left: -32px;
    top: 8px;
    width: 16px;
    height: 16px;
    background: linear-gradient(135deg, #0ea5e9, #22c55e);
    border-radius: 50%;
    box-shadow: 0 0 14px rgba(56,189,248,0.9);
}

.timeline-line {
    position: absolute;
    left: -24px;
    top: 24px;
    width: 2px;
    height: calc(100% + 16px);
    background: rgba(56,189,248,0.4);
}

.timeline-content {
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(148,163,184,0.2);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 0 18px rgba(56,189,248,0.15);
}

.timeline-content h4 {
    color: #e2e8f0;
}

.timeline-content p {
    color: #cbd5e1;
}

.timeline-date {
    font-size: 0.85rem;
    color: #94a3b8;
}
.timeline-content h4 {
    word-break: break-word;
    overflow-wrap: break-word;
    white-space: normal;
}

@media (max-width: 576px) {

    .timeline-container {
        margin-left: 10px;
        padding-left: 0;
    }

    .timeline-dot {
        left: -14px;
        width: 12px;
        height: 12px;
    }

    .timeline-line {
        left: -8px;
        height: calc(100% + 20px);
    }

    .timeline-content {
        padding: 14px;
        border-radius: 10px;
        width: calc(100% - 10px);
    }

    .timeline-content h4 {
        font-size: 1rem;
        line-height: 1.3;
    }

    .timeline-content p {
        font-size: 0.9rem;
    }

    .timeline-date {
        font-size: 0.8rem;
    }
}
