/* Timeline Styles */
.cew-timeline-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Vertical Timeline Line - centered */
.cew-timeline-line {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background-color: #6E6F71;
    z-index: 1;
}

/* Timeline Item */
.cew-timeline-item {
    position: relative;
    width: 100%;
    margin-bottom: 60px;
    z-index: 2;
}

.cew-timeline-item:last-child {
    margin-bottom: 0;
}

/* Timeline Marker (Orange Circle) */
.cew-timeline-marker {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 24px;
    background-color: #fff;
    border-radius: 50%;
    border: 4px solid #FBB042;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    z-index: 3;
}

/* Timeline Content */
.cew-timeline-content {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    width: calc(50% - 50px);
    position: relative;
    border-radius: 10px;
    padding: 15px;
}

/* Left Positioned Items */
.cew-timeline-item-left .cew-timeline-content {
    flex-direction: row;
    margin-right: auto;
    margin-left: 0;
}

/* Right Positioned Items */
.cew-timeline-item-right .cew-timeline-content {
    flex-direction: row-reverse;
    margin-left: auto;
    margin-right: 0;
}

/* Timeline Image */
/* .cew-timeline-image {
    flex-shrink: 0;
    width: 200px;
    height: 200px;
    overflow: hidden;
    border-radius: 8px;
} */

.cew-timeline-image img {
    width: 100%;
    max-height: 160px;
    object-fit: cover;
}

/* Timeline Text Content */
.cew-timeline-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Year Styling */
.cew-timeline-year {
    font-size: 48px;
    font-weight: 700;
    color: #FF6B35;
    line-height: 1.2;
    margin-bottom: 8px;
}

/* Title Styling */
.cew-timeline-title {
    font-size: 24px;
    font-weight: 700;
    color: #000000;
    margin: 0;
    line-height: 1.3;
}

/* Description Styling */
.cew-timeline-description {
    font-size: 16px;
    line-height: 1.6;
    color: #333333;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .cew-timeline-line {
        left: 30px;
        right: auto;
        transform: none;
    }

    .cew-timeline-marker {
        left: 17px;
        transform: translateX(-50%);
    }

    .cew-timeline-content {
        width: calc(100% - 70px);
        margin-left: 70px !important;
        margin-right: 0 !important;
        flex-direction: column !important;
    }

    .cew-timeline-item-left .cew-timeline-content,
    .cew-timeline-item-right .cew-timeline-content {
        flex-direction: column;
    }

    .cew-timeline-image {
        width: 100%;
        height: 180px;
    }

    .cew-timeline-year {
        font-size: 36px;
    }

    .cew-timeline-title {
        font-size: 20px;
    }

    .cew-timeline-description {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .cew-timeline-container {
        padding: 30px 15px;
    }

    .cew-timeline-item {
        margin-bottom: 40px;
    }

    .cew-timeline-content {
        gap: 15px;
    }

    .cew-timeline-image {
        height: 150px;
    }

    .cew-timeline-year {
        font-size: 32px;
    }

    .cew-timeline-title {
        font-size: 18px;
    }
}

