.cn-137da92e-container {
    width: 100%;
    max-width: var(--e-global-container-width, 1140px);
    margin: 0 auto;
    font-family: inherit;
    color: var(--wp-primary-color, #1A202C);
}

.cn-137da92e-grid {
    display: grid;
    grid-template-columns: 38% 62%;
    gap: 3rem;
    align-items: center;
}

/* Info Card Styling (Inherits site shadows and radii) */
.cn-137da92e-card {
    background: #ffffff;
    border-radius: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 85, 0.08);
    padding: 2.5rem;
    min-height: 420px;
    position: relative;
    border: 1px solid var(--wp-border-color, #EDF2F7);
    transition: all 0.3s ease;
}

.cn-137da92e-card-content {
    display: none;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.cn-137da92e-card-content.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.cn-137da92e-level-badge {
    background: #EDF2F7;
    color: #000055;
    font-weight: 700;
    font-size: 0.85rem;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.cn-137da92e-level-title {
    font-size: 2.2rem;
    color: #000055;
    margin: 0 0 1rem 0;
    font-weight: 700;
}

.cn-137da92e-level-intro {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #4A5568;
    margin-bottom: 1.5rem;
}

.cn-137da92e-features {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.cn-137da92e-feat-item {
    background: #F7FAFC;
    padding: 0.6rem 1rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    border: 1px solid #EDF2F7;
}

.cn-137da92e-links-wrapper {
    border-top: 1px solid #EDF2F7;
    padding-top: 1.5rem;
}

.cn-137da92e-links-title {
    font-size: 1rem;
    color: #1A202C;
    margin: 0 0 0.75rem 0;
    font-weight: 700;
}

.cn-137da92e-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.cn-137da92e-links-list a {
    color: #d9356b;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.cn-137da92e-links-list a:hover {
    color: #000055;
}

/* Circular Wheel Styling */
.cn-137da92e-nav-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cn-137da92e-wheel {
    position: relative;
    width: 480px;
    height: 480px;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0 15px 40px rgba(0, 0, 85, 0.05);
    display: flex;
    justify-content: center;
    align-items: center;
    border: 8px solid #EDF2F7;
    overflow: hidden;
}

.cn-137da92e-inner-circle {
    position: absolute;
    width: 160px;
    height: 160px;
    background: #ffffff;
    border-radius: 50%;
    z-index: 10;
    box-shadow: 0 8px 25px rgba(0, 0, 85, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    border: 6px solid #EDF2F7;
}

.cn-137da92e-center-text {
    font-weight: 800;
    color: #000055;
    letter-spacing: 0.1em;
    font-size: 1.1rem;
}

.cn-137da92e-segment {
    position: absolute;
    width: 50%;
    height: 50%;
    transform-origin: bottom right;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid #EDF2F7;
}

/* Position 4 quadrants */
.cn-137da92e-seg-1 {
    top: 0;
    left: 0;
    border-top-left-radius: 100%;
    background: #EDF2F7;
}

.cn-137da92e-seg-2 {
    top: 0;
    right: 0;
    transform-origin: bottom left;
    border-top-right-radius: 100%;
    background: #EDF2F7;
}

.cn-137da92e-seg-3 {
    bottom: 0;
    right: 0;
    transform-origin: top left;
    border-bottom-right-radius: 100%;
    background: #EDF2F7;
}

.cn-137da92e-seg-4 {
    bottom: 0;
    left: 0;
    transform-origin: top right;
    border-bottom-left-radius: 100%;
    background: #EDF2F7;
}

/* Inner positioning of segment text */
.cn-137da92e-seg-inner {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    pointer-events: none;
    width: 110px;
}

.cn-137da92e-seg-1 .cn-137da92e-seg-inner { top: 40px; left: 40px; }
.cn-137da92e-seg-2 .cn-137da92e-seg-inner { top: 40px; right: 40px; }
.cn-137da92e-seg-3 .cn-137da92e-seg-inner { bottom: 40px; right: 40px; }
.cn-137da92e-seg-4 .cn-137da92e-seg-inner { bottom: 40px; left: 40px; }

.cn-137da92e-seg-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: #000055;
    background: #ffffff;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    margin: 0 auto 0.5rem auto;
    line-height: 1;
    transition: all 0.3s ease;
}

.cn-137da92e-seg-title {
    font-weight: 700;
    font-size: 1rem;
    color: #2D3748;
}

/* Active Segment Styles */
.cn-137da92e-segment.active {
    background: #000055 !important;
}

.cn-137da92e-segment.active .cn-137da92e-seg-number {
    background: #d9356b;
    color: #ffffff;
}

.cn-137da92e-segment.active .cn-137da92e-seg-title {
    color: #ffffff;
}

/* Mobile Accordion Hidden by Default */
.cn-137da92e-accordion {
    display: none;
    width: 100%;
}

/* Responsive States */
@media (max-width: 1024px) {
    .cn-137da92e-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .cn-137da92e-card {
        order: 2;
        min-height: auto;
    }
    .cn-137da92e-nav-wrapper {
        order: 1;
    }
}

@media (max-width: 767px) {
    .cn-137da92e-wheel {
        display: none;
    }
    .cn-137da92e-card {
        display: none; /* Rely entirely on Mobile Accordion */
    }
    .cn-137da92e-accordion {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }
    .cn-137da92e-accordion-item {
        background: #ffffff;
        border-radius: 1rem;
        box-shadow: 0 4px 15px rgba(0, 0, 85, 0.05);
        border: 1px solid #EDF2F7;
        overflow: hidden;
        transition: all 0.3s ease;
    }
    .cn-137da92e-accordion-header {
        width: 100%;
        display: flex;
        align-items: center;
        gap: 1rem;
        padding: 1.25rem;
        background: none;
        border: none;
        text-align: left;
        cursor: pointer;
    }
    .cn-137da92e-acc-num {
        background: #EDF2F7;
        color: #000055;
        width: 35px;
        height: 35px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 800;
        font-size: 1.1rem;
    }
    .cn-137da92e-acc-title {
        font-weight: 700;
        font-size: 1.15rem;
        color: #000055;
    }
    .cn-137da92e-accordion-content {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        padding: 0 1.25rem;
        color: #4A5568;
        font-size: 0.95rem;
        line-height: 1.6;
    }
    .cn-137da92e-accordion-item.active .cn-137da92e-accordion-content {
        max-height: 250px;
        padding-bottom: 1.25rem;
    }
    .cn-137da92e-accordion-item.active {
        border-color: #000055;
    }
    .cn-137da92e-accordion-item.active .cn-137da92e-acc-num {
        background: #d9356b;
        color: #ffffff;
    }
}
