.symc-choice-picker {
    margin: 24px 0 28px;
    padding: 18px;
    border: 1px solid #dfe5ee;
    border-radius: 14px;
    background: #fff;
    color: #202636;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    contain: layout paint style;
}

.symc-choice-picker,
.symc-choice-picker * {
    box-sizing: border-box;
}

.symc-choice-picker__header {
    max-width: 760px;
    margin-bottom: 18px;
}

.symc-choice-picker__eyebrow {
    margin: 0 0 5px;
    color: #53698f;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.symc-choice-picker h2,
.symc-choice-picker h3,
.symc-choice-picker p {
    font-family: inherit;
}

.symc-choice-picker h2 {
    margin: 0 0 6px;
    font-size: clamp(22px, 2.5vw, 28px);
    line-height: 1.2;
}

.symc-choice-picker__header > p:last-child,
.symc-choice-group__heading p {
    margin: 0;
    color: #5f6879;
    font-size: 14px;
    line-height: 1.5;
}

.symc-choice-group + .symc-choice-group {
    margin-top: 20px;
    padding-top: 18px;
    border-top: 1px solid #e5e9f0;
}

.symc-choice-group__heading {
    margin-bottom: 10px;
}

.symc-choice-group__heading h3 {
    margin: 0 0 3px;
    font-size: 17px;
    line-height: 1.35;
}

.symc-choice-group--warning .symc-choice-group__heading {
    padding: 10px 12px;
    border-left: 3px solid #d89614;
    border-radius: 8px;
    background: #fff9eb;
}

.symc-choice-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 10px;
    align-items: stretch;
}

button.symc-choice-card {
    appearance: none;
    position: relative;
    display: flex;
    width: 100%;
    min-width: 0;
    min-height: 118px;
    height: 100%;
    padding: 12px;
    flex-direction: column;
    align-items: stretch;
    text-align: left;
    border: 1px solid #dce3ed;
    border-radius: 11px;
    background: #fff;
    color: #202636;
    box-shadow: 0 1px 2px rgba(31, 45, 74, .04);
    cursor: pointer;
    touch-action: manipulation;
    transition: border-color .14s ease, box-shadow .14s ease, transform .14s ease, background-color .14s ease;
}

button.symc-choice-card--has-note {
    min-height: 128px;
}

button.symc-choice-card--simple {
    min-height: 104px;
}

button.symc-choice-card:hover,
button.symc-choice-card:focus-visible {
    border-color: #718bd0;
    background: #fbfcff;
    color: #202636;
    box-shadow: 0 6px 18px rgba(48, 73, 138, .10);
    transform: translateY(-1px);
    outline: none;
}

button.symc-choice-card:focus-visible {
    box-shadow: 0 0 0 3px rgba(73, 104, 197, .18), 0 6px 18px rgba(48, 73, 138, .10);
}

button.symc-choice-card.is-copied {
    border-color: #2b8a62;
    background: #f1fbf6;
}

.symc-choice-card__top {
    display: flex;
    min-width: 0;
    min-height: 34px;
    margin-bottom: 7px;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 7px;
}

.symc-choice-card__glyph {
    flex: 1 1 44px;
    min-width: 0;
    max-width: 100%;
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: normal;
    font-family: system-ui, "Segoe UI Symbol", "Apple Color Emoji", "Segoe UI Emoji", sans-serif;
    font-size: clamp(25px, 2.25vw, 31px);
    font-weight: 650;
    line-height: 1.05;
}

.symc-choice-card__badge {
    flex: 0 1 auto;
    max-width: 100%;
    padding: 3px 8px;
    border-radius: 999px;
    background: #edf2ff;
    color: #3856a5;
    font-size: 10px;
    font-weight: 800;
    line-height: 1.22;
    text-align: center;
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: normal;
}

.symc-choice-group--warning .symc-choice-card__badge {
    background: #fff0c7;
    color: #805700;
}

.symc-choice-card__name,
.symc-choice-card__note {
    min-width: 0;
    max-width: 100%;
    overflow: visible;
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: normal;
}

.symc-choice-card__name {
    font-size: 13px;
    font-weight: 760;
    line-height: 1.3;
}

.symc-choice-card__note {
    margin-top: 4px;
    color: #697386;
    font-size: 11px;
    line-height: 1.38;
}

.symc-choice-card__action {
    display: inline-flex;
    width: max-content;
    margin-top: auto;
    padding-top: 9px;
    color: #3158bf;
    font-size: 11.5px;
    font-weight: 800;
    line-height: 1.2;
}

.symc-choice-card.is-copied .symc-choice-card__action {
    color: #18764f;
}

.symc-choice-picker__status {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
}

.symc-choice-group--collapsible {
    border-top: 1px solid #e5e9f0;
}

.symc-choice-group--collapsible + .symc-choice-group--collapsible {
    margin-top: 0;
}

.symc-choice-group__summary {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 4px 9px;
    padding: 13px 2px;
    cursor: pointer;
    list-style: none;
}

.symc-choice-group__summary::-webkit-details-marker {
    display: none;
}

.symc-choice-group__summary::after {
    content: "+";
    grid-column: 3;
    grid-row: 1;
    align-self: center;
    color: #3158bf;
    font-size: 20px;
    font-weight: 500;
    line-height: 1;
}

.symc-choice-group--collapsible[open] > .symc-choice-group__summary::after {
    content: "−";
}

.symc-choice-group__summary-title {
    grid-column: 1;
    min-width: 0;
    font-size: 16px;
    font-weight: 760;
    line-height: 1.35;
    overflow-wrap: anywhere;
}

.symc-choice-group__summary-count {
    grid-column: 2;
    align-self: start;
    padding: 3px 7px;
    border-radius: 999px;
    background: #edf2ff;
    color: #3856a5;
    font-size: 9.5px;
    font-weight: 800;
    line-height: 1.3;
    white-space: nowrap;
}

.symc-choice-group__summary-intro {
    grid-column: 1 / -1;
    min-width: 0;
    padding-right: 30px;
    color: #667085;
    font-size: 13px;
    line-height: 1.42;
    white-space: normal;
    overflow-wrap: anywhere;
}

.symc-choice-grid--details {
    padding: 0 0 16px;
}

.symc-choice-group--warning.symc-choice-group--collapsible > .symc-choice-group__summary {
    margin: 10px 0;
    padding: 10px;
    border-left: 3px solid #d89614;
    border-radius: 8px;
    background: #fff9eb;
}

@media (max-width: 760px) {
    .symc-choice-picker {
        margin: 20px -2px 24px;
        padding: 14px 10px;
        border-radius: 12px;
    }

    .symc-choice-picker__header {
        margin-bottom: 15px;
    }

    .symc-choice-picker h2 {
        font-size: 22px;
    }

    .symc-choice-picker__header > p:last-child,
    .symc-choice-group__heading p {
        font-size: 13px;
        line-height: 1.45;
    }

    .symc-choice-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }

    button.symc-choice-card {
        min-height: 112px;
        padding: 10px;
    }

    button.symc-choice-card--has-note {
        min-height: 124px;
    }

    button.symc-choice-card--simple {
        min-height: 96px;
    }

    .symc-choice-card__top {
        min-height: 32px;
        gap: 6px;
    }

    .symc-choice-card__glyph {
        font-size: clamp(24px, 8vw, 29px);
    }

    .symc-choice-card__badge {
        padding: 3px 7px;
        font-size: 9.5px;
    }

    .symc-choice-card__name {
        font-size: 12.5px;
    }

    .symc-choice-card__note {
        font-size: 10.5px;
    }

    .symc-choice-group__summary {
        padding: 12px 0;
    }

    .symc-choice-group__summary-intro {
        padding-right: 18px;
        font-size: 12.5px;
    }
}

@media (max-width: 420px) {
    .symc-choice-card__top {
        display: grid;
        grid-template-columns: minmax(0, 1fr);
        align-content: start;
    }

    .symc-choice-card__badge {
        justify-self: start;
    }
}

@media (max-width: 380px) {
    .symc-choice-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .symc-choice-picker {
        margin-left: -4px;
        margin-right: -4px;
        padding-left: 8px;
        padding-right: 8px;
    }

    .symc-choice-grid {
        gap: 7px;
    }

    button.symc-choice-card {
        padding: 9px;
    }
}

@media (prefers-reduced-motion: reduce) {
    button.symc-choice-card {
        transition: none;
    }
}

@media (min-width: 761px) {
    .symc-choice-picker--degree .symc-choice-grid,
    .symc-choice-picker--heart > .symc-choice-group:not(.symc-choice-group--collapsible) .symc-choice-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

/* Relationship colors remain subtle and use full, wrapping labels. */
button.symc-choice-card--kind-exact {
    border-color: #b8c8ef;
    background: #fbfcff;
}

.symc-choice-card__badge--exact {
    background: #e8efff;
    color: #294d9b;
}

.symc-choice-card__badge--example {
    background: #eaf8f1;
    color: #216846;
}

.symc-choice-card__badge--related {
    background: #f0f2f5;
    color: #4d596b;
}

.symc-choice-card__badge--lookalike {
    background: #fff0c7;
    color: #805700;
}

.symc-choice-card__badge--variant {
    background: #edf2ff;
    color: #3856a5;
}

.symc-choice-picker__header,
.symc-choice-group__heading,
.symc-choice-group__summary,
.symc-choice-card__top,
.symc-choice-card__name,
.symc-choice-card__note {
    min-width: 0;
}

.symc-choice-picker h2,
.symc-choice-picker h3,
.symc-choice-group__summary-title {
    overflow-wrap: anywhere;
}

.symc-choice-group--examples .symc-choice-grid {
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
}

button.symc-choice-card--kind-example {
    min-height: 104px;
}

button.symc-choice-card--kind-example .symc-choice-card__glyph {
    font-size: clamp(16px, 1.75vw, 20px);
    font-weight: 720;
    line-height: 1.22;
}

@media (max-width: 520px) {
    .symc-choice-group--examples .symc-choice-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    button.symc-choice-card--kind-example {
        min-height: 94px;
    }
}
