.po-timeline-widget {
    display: flex;
    gap: 40px;
    align-items: stretch;
}

.po-timeline-container {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 78px;
    counter-reset: timeline-counter;
    flex: 1;
}

.po-timeline-item::before {
    content: '';
    position: absolute;
    left: 30px;
    width: 2px;
    background: #1A1A1A;
    top: 92px;
    bottom: -48px;
    z-index: 1;
}

.po-timeline-item:last-child::before {
    display: none;
}

.po-timeline-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    position: relative;
    z-index: 2;
}

.po-timeline-number {
    width: 62px;
    height: 62px;
    border-radius: 31px;
    background: #3D2F26;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: #FFFFFF;
    position: relative;
    z-index: 2;
}

.po-timeline-number::before {
    counter-increment: timeline-counter;
    content: counter(timeline-counter);
}

.po-timeline-content {
    padding-top: 0px;
	max-width: 487px;
}

.po-timeline-title {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: #1A1A1A;
    margin: 0 0 20px 0;
    line-height: 28px;
}

.po-timeline-text {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: #1A1A1A;
    margin: 0;
    line-height: 16px;
}

.po-timeline-image {
    flex: 0 0 660px;
    width: 660px;
    max-height: 540px;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.po-timeline-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.po-timeline-image img {
    object-position: 50% 50%;
}

.po-timeline-image[data-align="top"] img {
    object-position: 50% 0%;
}

.po-timeline-image[data-align="bottom"] img {
    object-position: 50% 100%;
}



@media (max-width: 991px) {
    .po-timeline-widget {
        flex-direction: column;
    }
    .po-timeline-image {
        order: 1;
    }
    .po-timeline-container {
        order: 2;
    }
    .po-timeline-image {
        flex: 1 1 auto;
        width: 100%;
        max-height: none;
        aspect-ratio: 373 / 241;
    }
    .po-timeline-container {
        max-width: 100%;
    }
}