.hc-workspace-section {
    min-width: 0;
}

.hc-workspace-section__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 24px;
    padding-bottom: 20px;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--color-border-soft);
}

.hc-workspace-section__heading {
    min-width: 0;
}

.hc-workspace-section__kicker {
    margin-bottom: 8px;
    color: var(--color-muted);
    font-size: var(--text-xxs);
    letter-spacing: var(--space-4);
}

.hc-workspace-section__title {
    margin: 0;
    color: var(--color-text-title);
}

.hc-workspace-section__description {
    max-width: 760px;
    margin-top: 10px;
    color: var(--color-muted);
    font-size: var(--text-xs);
    line-height: 1.55;
}

.hc-workspace-section__count {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: 30px;
    padding: 6px 10px;
    border: 1px solid var(--color-border-soft);
    border-radius: 999px;
    background: var(--color-back-00);
    color: var(--color-muted);
    line-height: 1;
    white-space: nowrap;
}

.hc-workspace-section__count-value {
    color: var(--color-focus);
    font-size: var(--text-xs);
    font-weight: var(--weight-md);
}

.hc-workspace-section__count-label {
    font-size: var(--text-xxs);
}

.hc-workspace-section__body {
    min-width: 0;
}

@media (max-width: 760px) {
    .hc-workspace-section__header {
        display: block;
    }

    .hc-workspace-section__count {
        margin-top: 12px;
    }
}