.evt-timeline {
    position: relative;
    max-width: 1000px;
    margin: auto;
    padding: 40px 0;
}

.evt-timeline::before {
    content: '';
    position: absolute;
    width: 2px;
    background: #e53935;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.evt-item {
    position: relative;
    width: 50%;
    padding: 20px 40px;
}

.evt-item.left {
    left: 0;
    text-align: right;
}

.evt-item.right {
    left: 50%;
}

.evt-content {
    background: #fff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}
.evt-content:hover {
    transform: translateY(-5px);
}

.evt-content h3 {
    color: #e53935;
    margin-bottom: 5px;
}

.evt-dot {
    position: absolute;
    width: 14px;
    height: 14px;
    background: #e53935;
    border-radius: 50%;
    top: 30px;
    left: 100%;
    transform: translateX(-50%);
}

.evt-item.right .evt-dot {
    left: 0;
}

/* Mobile */
/* @media (max-width: 768px) {
    .evt-item {
        width: 100%;
        left: 0 !important;
        text-align: left;
    }

    .evt-timeline::before {
        left: 20px;
    }

    .evt-dot {
        left: 20px !important;
    }
} */

@media (max-width: 768px) {

    .evt-timeline::before {
        left: 20px; /* move line to left */
        transform: none;
    }

    .evt-item {
        width: 100%;
        left: 0 !important;
        padding-left: 50px; /* space for line + dot */
        padding-right: 15px;
        text-align: left !important;
    }

    .evt-item.left,
    .evt-item.right {
        left: 0 !important;
    }

    .evt-dot {
        left: 20px !important;
        transform: translateX(-50%);
    }

    .evt-content {
        margin-left: 10px;
    }
}