/* Timeline Container */
.st-7736102d-container {
    display: flex;
    flex-direction: row;
    position: relative;
    width: 100%;
    z-index: 1;
}

/* Connecting Line - Desktop */
.st-7736102d-container::before {
    content: '';
    position: absolute;
    top: 20px; /* Aligns with the middle of the number badge (40px height) */
    left: calc(50% / var(--st-step-count, 3)); /* Start line center of first item */
    right: calc(50% / var(--st-step-count, 3)); /* End line center of last item */
    height: 0;
    border-top-width: 2px;
    border-top-style: dashed;
    border-top-color: #0046c0;
    z-index: -1;
}

/* Individual Step */
.st-7736102d-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 15px;
    position: relative; 
}

/* Number Badge */
.st-7736102d-number {
    width: 40px;
    height: 40px;
    background-color: #0046c0;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 20px;
    box-shadow: 0 0 0 10px #f8f8f8; /* default fallback */
    z-index: 2; 
}

/* Content Wrap */
.st-7736102d-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

/* Media Box */
.st-7736102d-media {
    margin-bottom: 15px;
    min-height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.st-7736102d-icon {
    font-size: 40px;
    color: #333;
}
.st-7736102d-icon svg {
    width: 40px;
    height: 40px;
    fill: #333;
}

.st-7736102d-img {
    max-width: 80px;
    height: auto;
}

/* Text */
.st-7736102d-title {
    margin: 0 0 10px 0;
    font-size: 18px;
    font-weight: bold;
}

.st-7736102d-desc {
    font-size: 14px;
    line-height: 1.5;
    color: #666;
}

/* Responsive - Layout Mixins */

/* All Viewports */
.st-layout-all .st-7736102d-container {
    flex-direction: column;
}

.st-layout-all .st-7736102d-container::before {
    top: 20px;
    bottom: 20px;
    left: 35px; 
    right: auto;
    width: 0;
    height: auto;
    border-top: none;
    border-left-width: inherit;
    border-left-style: inherit;
    border-left-color: inherit;
}

.st-layout-all .st-7736102d-step {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    margin-bottom: 30px;
    padding-left: 15px;
    padding-right: 15px;
}

.st-layout-all .st-7736102d-number {
    flex-shrink: 0;
    margin-right: 20px;
    margin-bottom: 0;
}

.st-layout-all .st-7736102d-content {
    align-items: flex-start;
}


/* Tablet & Mobile (<1025px) */
@media (max-width: 1024px) {
    .st-layout-tablet .st-7736102d-container {
        flex-direction: column;
    }
    
    .st-layout-tablet .st-7736102d-container::before {
        top: 20px;
        bottom: 20px;
        left: 35px; 
        right: auto;
        width: 0;
        height: auto;
        border-top: none;
        border-left-width: inherit;
        border-left-style: inherit;
        border-left-color: inherit;
    }

    .st-layout-tablet .st-7736102d-step {
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
        margin-bottom: 30px;
        padding-left: 15px;
        padding-right: 15px;
    }

    .st-layout-tablet .st-7736102d-number {
        flex-shrink: 0;
        margin-right: 20px;
        margin-bottom: 0;
    }

    .st-layout-tablet .st-7736102d-content {
        align-items: flex-start;
    }
}

/* Mobile Only (<768px) */
@media (max-width: 767px) {
    .st-layout-mobile .st-7736102d-container {
        flex-direction: column;
    }
    
    .st-layout-mobile .st-7736102d-container::before {
        top: 20px;
        bottom: 20px;
        left: 35px; 
        right: auto;
        width: 0;
        height: auto;
        border-top: none;
        border-left-width: inherit;
        border-left-style: inherit;
        border-left-color: inherit;
    }

    .st-layout-mobile .st-7736102d-step {
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
        margin-bottom: 30px;
        padding-left: 15px;
        padding-right: 15px;
    }

    .st-layout-mobile .st-7736102d-number {
        flex-shrink: 0;
        margin-right: 20px;
        margin-bottom: 0;
    }

    .st-layout-mobile .st-7736102d-content {
        align-items: flex-start;
    }
}
