.outplacement-model-1710-wrapper {
    --text-color-center: #333333;
    --text-color-heading: #333333;
    --text-color-desc: #666666;
    --step-gap-mobile: 20px;
    
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
    container-type: inline-size;
}

.outplacement-model-1710-container {
    position: relative;
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: min(600px, 80cqw);
    box-sizing: border-box;
}

/* --- Center Donut --- */
.outplacement-model-1710-donut-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: min(300px, 35cqw);
    height: min(300px, 35cqw);
    display: flex;
    justify-content: center;
    align-items: center;
    aspect-ratio: 1;
    z-index: 2;
}

.outplacement-model-1710-donut {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
}

.outplacement-model-1710-center {
    position: absolute;
    width: 80%;
    height: 80%;
    background: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 5%; 
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    color: var(--text-color-center);
    font-weight: bold;
    z-index: 3;
    box-sizing: border-box;
    font-size: clamp(0.6rem, 1.8cqw, 1rem);
    word-break: break-word;
    hyphens: auto;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* --- Dynamic Steps Layout --- */
.outplacement-model-1710-steps {
    width: 100%;
    height: 100%;
    position: relative;
    display: grid;
    /* Forces exactly 2 columns, unlimited rows */
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 1fr;
    /* The large gap creates the "hole" for the center donut */
    gap: clamp(20px, 35cqw, 200px) clamp(20px, 35cqw, 250px);
    align-items: stretch;
    z-index: 1;
}

.outplacement-model-1710-step {
    width: 100%;
    max-width: 100%;
    min-height: 100%;
    padding: clamp(15px, 3cqw, 25px);
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    box-sizing: border-box;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Left Column Styling (Items 1, 3, 5, 7...) */
.outplacement-model-1710-step:nth-child(odd) {
    text-align: right;
    justify-self: end;
    align-items: flex-end;
}

/* Right Column Styling (Items 2, 4, 6, 8...) */
.outplacement-model-1710-step:nth-child(even) {
    text-align: left;
    justify-self: start;
    align-items: flex-start;
}

.outplacement-model-1710-step h4 {
    margin-top: 0;
    margin-bottom: clamp(5px, 2cqw, 10px);
    color: var(--text-color-heading);
    font-size: clamp(0.9rem, 2.5cqw, 1.2rem);
    width: 100%;
}

.outplacement-model-1710-step p {
    margin: 0;
    color: var(--text-color-desc);
    line-height: 1.5;
    font-size: clamp(0.8rem, 1.8cqw, 1rem);
    flex-grow: 1;
    width: 100%;
}

/* --- Container Queries for Responsiveness (Mobile View) --- */
@container (max-width: 825px) {
    .outplacement-model-1710-container {
        display: flex;
        flex-direction: column;
        min-height: auto;
    }

    .outplacement-model-1710-donut-wrapper {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        margin-bottom: 30px;
        width: 100%;
        height: 100%;
        max-width: 300px;
        max-height: 300px;
    }
    
    .outplacement-model-1710-center {
        font-size: 1rem;
    }

    .outplacement-model-1710-steps {
        display: flex;
        flex-direction: column;
        gap: var(--step-gap-mobile);
        width: 100%;
    }

    /* Reset all dynamic odd/even alignments for Mobile */
    .outplacement-model-1710-step,
    .outplacement-model-1710-step:nth-child(odd),
    .outplacement-model-1710-step:nth-child(even) {
        width: 100% !important;
        text-align: center !important;
        justify-self: stretch !important;
        align-items: center !important;
        min-height: auto;
    }
    
    .outplacement-model-1710-step h4 {
        font-size: 1.1rem;
    }
    
    .outplacement-model-1710-step p {
        font-size: 0.9rem;
    }
}