.tl-c69d2531-container {
    position: relative;
    width: 100%;
    margin: 40px auto;
    overflow: hidden;
}

/* Common Card Style */
.tl-c69d2531-card {
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    position: relative;
}
.tl-c69d2531-title {
    margin: 0 0 8px 0;
    font-size: 1.25rem;
    font-weight: 600;
}
.tl-c69d2531-desc {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Icon / SVG Handling */
.tl-c69d2531-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}
.tl-c69d2531-icon i {
    font-size: 16px;
}
.tl-c69d2531-icon svg {
    width: 16px;
    height: 16px;
}

/* Layout - Vertical */
.tl-c69d2531-layout-vertical {
    padding: 20px 0;
}
.tl-c69d2531-layout-vertical .tl-c69d2531-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    transform: translateX(-50%);
    z-index: 1;
}
.tl-c69d2531-layout-vertical .tl-c69d2531-items {
    position: relative;
    z-index: 2;
}
.tl-c69d2531-layout-vertical .tl-c69d2531-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    width: 100%;
}
.tl-c69d2531-layout-vertical .tl-c69d2531-item:nth-child(even) {
    flex-direction: row-reverse;
}
.tl-c69d2531-layout-vertical .tl-c69d2531-card {
    width: 45%;
}
.tl-c69d2531-layout-vertical .tl-c69d2531-node {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
}

/* Layout - Horizontal */
.tl-c69d2531-layout-horizontal {
    padding: 40px 20px;
}
.tl-c69d2531-layout-horizontal .tl-c69d2531-line-horizontal {
    position: absolute;
    top: 50px;
    left: 0;
    right: 0;
    height: 4px;
    z-index: 1;
}
.tl-c69d2531-layout-horizontal .tl-c69d2531-items {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
    gap: 20px;
}
.tl-c69d2531-layout-horizontal .tl-c69d2531-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.tl-c69d2531-layout-horizontal .tl-c69d2531-node {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
}
.tl-c69d2531-layout-horizontal .tl-c69d2531-card {
    width: 100%;
}

/* GSAP Start Opacity */
.tl-c69d2531-item {
    opacity: 0;
}

/* Mobile Responsiveness */
@media (max-width: 767px) {
    .tl-c69d2531-layout-vertical .tl-c69d2531-line {
        left: 20px;
    }
    .tl-c69d2531-layout-vertical .tl-c69d2531-item {
        flex-direction: row !important;
        justify-content: flex-start;
    }
    .tl-c69d2531-layout-vertical .tl-c69d2531-node {
        left: 20px;
        transform: translateX(-50%);
    }
    .tl-c69d2531-layout-vertical .tl-c69d2531-card {
        width: calc(100% - 60px);
        margin-left: 50px;
    }
    .tl-c69d2531-layout-horizontal .tl-c69d2531-items {
        flex-direction: column;
        gap: 40px;
    }
    .tl-c69d2531-layout-horizontal .tl-c69d2531-line-horizontal {
        display: none;
    }
}
