.cs-8573098f-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(var(--circle-radius, 200px) * 2 + 300px);
    padding: 60px;
    box-sizing: border-box;
    overflow: visible;
}

.cs-8573098f-container {
    position: relative;
    width: calc(var(--circle-radius, 200px) * 2);
    height: calc(var(--circle-radius, 200px) * 2);
}

/* Steps placement on the circle */
.cs-8573098f-item-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) 
               rotate(calc(360deg / var(--total-steps) * var(--step-index))) 
               translateY(calc(-1 * var(--circle-radius, 200px))) 
               rotate(calc(-360deg / var(--total-steps) * var(--step-index)));
    z-index: 10;
}

.cs-8573098f-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-radius: 50%;
    padding: 15px;
    box-sizing: border-box;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.cs-8573098f-item:hover {
    transform: scale(1.05);
}

.cs-8573098f-image {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 8px;
}

.cs-8573098f-title {
    margin: 0 0 4px 0;
    font-size: 14px;
    font-weight: bold;
}

.cs-8573098f-paragraph {
    margin: 0;
    font-size: 11px;
    line-height: 1.2;
}

/* Connection Arrows sitting perfectly in the background center */
.cs-8573098f-arrows-svg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: calc(var(--circle-radius, 200px) * 2 * (400 / 200)); /* Scaled exactly matching layout radius */
    height: calc(var(--circle-radius, 200px) * 2 * (400 / 200));
    transform: translate(-50%, -50%);
    pointer-events: none;
    overflow: visible;
    z-index: 1;
}

/* Adjust SVG arrows sizing to match the circular layout scale perfectly */
.cs-8573098f-arrows-svg {
    width: 100%;
    height: 100%;
}
