/* Container */
.pro-vertical-timeline-wrapper-cea45a0b {
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
}

.pvt-list-cea45a0b {
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative;
    display: flex;
    flex-direction: column;
}

/* Vertical Line Base */
.pvt-list-cea45a0b::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 32px; /* Default left alignment */
    width: 1px;
    background-color: #DDE3EA;
    z-index: 0;
    transform: translateX(-50%);
    transition: all 0.3s ease;
}

/* Layout Alignments */
.pvt-layout-left .pvt-list-cea45a0b::before {
    left: 32px; /* Controlled by badge size in PHP */
    right: auto;
}

.pvt-layout-right .pvt-list-cea45a0b::before {
    right: 32px; /* Controlled by badge size in PHP */
    left: auto;
    transform: translateX(50%);
}
.pvt-layout-right .pvt-item-cea45a0b {
    flex-direction: row-reverse;
}

.pvt-layout-center .pvt-list-cea45a0b::before {
    left: 50%;
    right: auto;
}
.pvt-layout-center .pvt-item-cea45a0b {
    width: 50%;
}
.pvt-layout-center .pvt-item-cea45a0b:nth-child(odd) {
    align-self: flex-start;
    padding-right: calc(32px + 20px); /* half badge + gap approx */
    flex-direction: row-reverse;
}
.pvt-layout-center .pvt-item-cea45a0b:nth-child(even) {
    align-self: flex-end;
    padding-left: calc(32px + 20px);
}
.pvt-layout-center .pvt-badge-cea45a0b {
    position: absolute;
    top: 0;
}
.pvt-layout-center .pvt-item-cea45a0b:nth-child(odd) .pvt-badge-cea45a0b {
    right: 0;
    transform: translateX(50%);
}
.pvt-layout-center .pvt-item-cea45a0b:nth-child(even) .pvt-badge-cea45a0b {
    left: 0;
    transform: translateX(-50%);
}

/* Timeline Item */
.pvt-item-cea45a0b {
    display: flex;
    align-items: flex-start;
    gap: 32px;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}
.pvt-item-cea45a0b:last-child {
    margin-bottom: 0 !important;
}

/* Badge */
.pvt-badge-cea45a0b {
    width: 64px;
    height: 64px;
    flex: 0 0 64px;
    background-color: #2F6FF6;
    color: #FFFFFF;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    z-index: 2;
    overflow: hidden;
}
.pvt-badge-cea45a0b svg {
    width: 1.2em;
    height: 1.2em;
    fill: currentColor;
}
.pvt-badge-image-cea45a0b {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Card */
.pvt-card-cea45a0b {
    flex: 1;
    background-color: #FFFFFF;
    border: 1px solid #DDE3EA;
    border-radius: 20px;
    padding: 26px 28px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    width: 100%;
    text-decoration: none;
    color: inherit;
}
a.pvt-card-link-cea45a0b {
    display: block;
    cursor: pointer;
}
a.pvt-card-link-cea45a0b:hover {
    text-decoration: none;
}

/* Typography */
.pvt-title-cea45a0b {
    margin: 0 0 8px 0;
    color: #020617;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
}
.pvt-title-link-cea45a0b {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}
.pvt-title-link-cea45a0b:hover {
    color: inherit; /* overridden by controls if needed */
    text-decoration: underline;
}

.pvt-desc-cea45a0b {
    margin: 0;
    color: #334155;
    font-size: 14px;
    line-height: 1.6;
}
.pvt-desc-cea45a0b p:last-child {
    margin-bottom: 0;
}

/* Hover Animations */
.pvt-hover-anim-lift .pvt-card-cea45a0b {
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background-color 0.3s ease;
}
.pvt-hover-anim-lift .pvt-item-cea45a0b:hover .pvt-card-cea45a0b {
    transform: translateY(-5px);
}

.pvt-hover-anim-scale .pvt-card-cea45a0b {
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background-color 0.3s ease;
}
.pvt-hover-anim-scale .pvt-item-cea45a0b:hover .pvt-card-cea45a0b {
    transform: scale(1.02);
}

/* Tablet */
@media (max-width: 1024px) {
    .pvt-layout-center .pvt-item-cea45a0b:nth-child(odd) {
        padding-right: calc(28px + 15px);
    }
    .pvt-layout-center .pvt-item-cea45a0b:nth-child(even) {
        padding-left: calc(28px + 15px);
    }
}

/* Mobile */
@media (max-width: 767px) {
    .pvt-hide-line-mobile-yes .pvt-list-cea45a0b::before {
        display: none;
    }
    
    .pvt-force-left-mobile-yes.pvt-layout-center .pvt-list-cea45a0b::before {
        left: 24px; /* default mobile badge/2 */
        transform: translateX(-50%);
    }
    .pvt-force-left-mobile-yes.pvt-layout-center .pvt-item-cea45a0b {
        width: 100%;
        flex-direction: row;
        align-self: stretch;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    .pvt-force-left-mobile-yes.pvt-layout-center .pvt-badge-cea45a0b {
        position: relative;
        left: auto !important;
        right: auto !important;
        transform: none !important;
    }
    .pvt-force-left-mobile-yes.pvt-layout-center .pvt-item-cea45a0b:nth-child(odd),
    .pvt-force-left-mobile-yes.pvt-layout-center .pvt-item-cea45a0b:nth-child(even) {
        align-self: stretch;
        flex-direction: row;
    }
}
