.soh-sca-wrap {
    max-width: 1180px;
    margin: 0 auto;
    padding: 20px 0 40px;
}

.soh-sca-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 24px;
}

.soh-sca-eyebrow {
    margin: 0 0 5px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .09em;
    text-transform: uppercase;
    opacity: .65;
}

.soh-sca-header h1 {
    margin: 0;
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.05;
}

.soh-sca-subtitle {
    margin: 8px 0 0;
    opacity: .72;
}

.soh-sca-profile-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 8px 15px;
    border: 1px solid currentColor;
    border-radius: 7px;
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
}

.soh-sca-stat-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 18px;
}

.soh-sca-stat-card,
.soh-sca-panel {
    border: 1px solid rgba(128,128,128,.25);
    border-radius: 10px;
    background: rgba(128,128,128,.045);
}

.soh-sca-stat-card {
    padding: 18px;
}

.soh-sca-stat-label {
    display: block;
    margin-bottom: 7px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    opacity: .65;
}

.soh-sca-stat-value {
    display: block;
    font-size: clamp(20px, 2.4vw, 29px);
    line-height: 1.15;
}

.soh-sca-main-grid {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    gap: 18px;
}

.soh-sca-panel {
    padding: 22px;
}

.soh-sca-panel h2 {
    margin: 0 0 6px;
    font-size: 22px;
}

.soh-sca-panel-intro {
    margin: 0 0 16px;
    opacity: .7;
}

.soh-sca-ticker-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.soh-sca-ticker-list li {
    display: grid;
    grid-template-columns: 30px minmax(60px, .7fr) minmax(100px, 1fr) minmax(110px, 1fr);
    align-items: center;
    gap: 10px;
    padding: 12px 0;
    border-top: 1px solid rgba(128,128,128,.18);
}

.soh-sca-ticker-list li:first-child {
    border-top: 0;
}

.soh-sca-ticker-rank {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(128,128,128,.15);
    font-size: 12px;
    font-weight: 700;
}

.soh-sca-ticker-symbol {
    font-size: 18px;
    font-weight: 800;
    letter-spacing: .02em;
}

.soh-sca-ticker-count,
.soh-sca-ticker-comments {
    font-size: 13px;
    opacity: .72;
}

.soh-sca-characterization p {
    margin: 12px 0 0;
    font-size: 17px;
    line-height: 1.7;
}

.soh-sca-method-note {
    margin: 14px 2px 0;
    font-size: 12px;
    opacity: .55;
}

.soh-sca-empty,
.soh-sca-error {
    padding: 14px;
    border: 1px solid rgba(128,128,128,.3);
    border-radius: 8px;
}

@media (max-width: 850px) {
    .soh-sca-stat-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .soh-sca-main-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .soh-sca-header {
        align-items: flex-start;
        flex-direction: column;
    }
    .soh-sca-stat-grid {
        grid-template-columns: 1fr;
    }
    .soh-sca-ticker-list li {
        grid-template-columns: 30px 70px 1fr;
    }
    .soh-sca-ticker-comments {
        grid-column: 3;
    }
}

.soh-sca-shell {
    max-width: 1180px;
    margin: 0 auto;
}

.soh-sca-user-picker {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 4px 0 14px;
    position: relative;
    z-index: 20;
}

.soh-sca-user-picker label {
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
}

.soh-sca-user-search-wrap {
    position: relative;
    width: min(260px, 46vw);
}

.soh-sca-user-search {
    box-sizing: border-box;
    width: 100%;
    height: 34px;
    padding: 5px 9px;
    border: 1px solid rgba(128,128,128,.45);
    border-radius: 6px;
    background: inherit;
    color: inherit;
    font: inherit;
}

.soh-sca-user-search:focus {
    outline: 2px solid currentColor;
    outline-offset: 1px;
}

.soh-sca-user-results {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    max-height: 320px;
    overflow-y: auto;
    border: 1px solid rgba(128,128,128,.38);
    border-radius: 7px;
    background: Canvas;
    color: CanvasText;
    box-shadow: 0 8px 24px rgba(0,0,0,.18);
}

.soh-sca-user-result {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    padding: 8px 10px;
    border: 0;
    border-bottom: 1px solid rgba(128,128,128,.17);
    background: transparent;
    color: inherit;
    text-align: left;
    cursor: pointer;
}

.soh-sca-user-result:last-child {
    border-bottom: 0;
}

.soh-sca-user-result:hover,
.soh-sca-user-result.is-active {
    background: rgba(128,128,128,.16);
}

.soh-sca-user-result strong {
    font-size: 14px;
}

.soh-sca-user-result span {
    margin-top: 1px;
    font-size: 12px;
    opacity: .65;
}

.soh-sca-user-result-empty {
    padding: 9px 10px;
    font-size: 13px;
    opacity: .7;
}

.soh-sca-loading {
    padding: 24px 14px;
    opacity: .68;
}

@media (max-width: 560px) {
    .soh-sca-user-picker {
        align-items: flex-start;
        flex-direction: column;
        gap: 6px;
    }
    .soh-sca-user-search-wrap {
        width: min(100%, 300px);
    }
}
