/* =========================================================================
 * 마이페이지 대시보드 — proposal.html 탭 레이아웃 + Beamers Cobalt 토큰
 *
 * 모든 규칙은 .bs-acc 로 스코프(테마 전역 element 셀렉터와 충돌 방지).
 * 색·타이포는 테마 style.css :root 토큰 사용(코발트 #1C4DFF, Pretendard, Sora).
 * 호버 인터랙션 변형 금지 — 활성/선택은 aria-current·.is-on 정적 스타일, 버튼은
 * :focus-visible outline 만. 통화 표기는 항상 '원'(.00 없음).
 * ========================================================================= */

.bs-acc {
    --bsa-radius: 8px;
    --bsa-bar-deep:    #1740D6;
    --bsa-bar-accent:  #1C4DFF;
    --bsa-bar-dark:    #0A1B5C;
    --bsa-bar-1:       #3E63E8;
    --bsa-bar-2:       #5577EE;
    --bsa-bar-3:       #6E8BF5;
    --bsa-bar-4:       #8AA1F7;
    --bsa-bar-5:       #A9B9FA;
    --bsa-bar-6:       #C2CEFC;

    max-width: none;             /* 컨테이너 없이 전체 폭(full-bleed) */
    margin: 0;
    padding: 0;                  /* 패딩은 각 영역(.bs-side 등)이 자체 관리 */
    font-family: var(--f-body);
    color: var(--ink-soft);
    word-break: keep-all;
}

.bs-acc *,
.bs-acc *::before,
.bs-acc *::after { box-sizing: border-box; }

/* ---------- 콘텐츠 영역 ---------- */
.bs-acc-main { min-width: 0; padding: var(--pad-page, 28px); }   /* 본문 자체 패딩(.bs-acc 패딩 제거분 흡수) */
/* 본문 내부 폭 제한(가독성). 좌측 정렬 — 사이드바에 anchored. is-full 이면 전체 너비. */
.bs-acc-main-inside { max-width: 1080px; }
.bs-acc-main-inside.is-full { max-width: none; }
.bs-acc-main-inside > h1 {
    margin: 0 0 6px;
    font-family: var(--f-display);
    font-weight: 800;
    letter-spacing: -0.02em;
    font-size: clamp(22px, 2.2vw, 27px);
    line-height: 1.2;
    color: var(--ink);
}
.bs-acc-lead { margin: 0 0 26px; color: var(--ink-mute); font-size: 14.5px; max-width: 720px; text-wrap: pretty; }
/* 섹션 제목(구독·청구 등 뷰 내부 h2) — 인라인 margin 난립 대체 */
.bs-acc h2.bs-sec { margin: 26px 0 10px; font-family: var(--f-display); font-weight: 700; font-size: clamp(15px, 1.2vw, 16.5px); line-height: 1.3; color: var(--ink); }
.bs-acc h2.bs-sec:first-child { margin-top: 0; }

/* ---------- 알림 배너 ---------- */
.bs-acc-alert {
    border: 1px solid var(--accent);
    border-radius: var(--bsa-radius);
    background: var(--accent-soft);
    padding: 14px 18px;
    margin: 0 0 18px;
    font-size: 14px;
}
.bs-acc-alert.warn  { border-color: var(--warning, #C98A00); background: #FFFAF0; }
.bs-acc-alert.error { border-color: var(--error, #D64545);   background: #FEF6F6; }
.bs-acc-alert.ok    { border-color: var(--success, #1A8A45); background: #F1FAF4; }
.bs-acc-alert .row  { display: flex; justify-content: space-between; align-items: center; gap: 14px; flex-wrap: wrap; }

/* =========================================================================
 *  재사용 카드/표 (orders·subscription·order_detail 뷰 — 기존 .bs-* 이관)
 * ========================================================================= */
.bs-card { border: 1px solid var(--rule); border-radius: var(--bsa-radius); background: var(--surface); overflow: hidden; }
.bs-card-h {
    padding: 11px 16px;
    background: var(--paper-2);
    border-bottom: 1px solid var(--rule);
    font-weight: 800;
    color: var(--ink);
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}
.bs-card-body { padding: 15px 16px; }
.bs-empty { padding: 32px 24px; text-align: center; color: var(--ink-faint); font-size: 14px; }
/* 구독 현재 플랜 카드 — 전체폭이면 휑하게 큼. 폭 제한해 밀도 회복. */
.bs-subcard { max-width: 520px; margin-bottom: 22px; }

.bs-status-pill {
    display: inline-block;
    padding: 2px 10px;
    border-radius: 999px;
    font-size: 11.5px;
    font-weight: 800;
    color: #fff;
    white-space: nowrap;
}
.bs-row-link {
    display: block;
    padding: 16px 18px;
    border-bottom: 1px solid var(--rule);
    color: inherit;
    text-decoration: none;
}
.bs-row-link:last-child { border-bottom: 0; }
.bs-meta-table { width: 100%; border-collapse: collapse; font-size: 13.5px; }
.bs-meta-table td { padding: 5px 0; vertical-align: top; }
.bs-meta-table td:first-child { color: var(--ink-mute); width: 108px; }

/* 구독 플랜 카드 */
.bs-plan-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 300px)); gap: 14px; align-items: start; justify-content: start; }
.bs-plan-grid .bs-card { display: flex; flex-direction: column; }
.bs-plan-grid .bs-card-body { flex: 1; display: flex; flex-direction: column; }
.bs-plan-grid .bs-card-body form { margin-top: auto !important; }
.bs-plan-pricerow { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.bs-plan-trial { margin-left: auto; white-space: nowrap; background: var(--accent-soft); color: var(--accent); padding: 3px 11px; border-radius: 999px; font-size: 12.5px; font-weight: 700; }
.bs-plan-price { font-family: var(--f-en); font-size: 1.15rem; font-weight: 800; color: var(--ink); letter-spacing: -0.01em; line-height: 1.1; white-space: nowrap; }
.bs-plan-price .per { font-size: 12.5px; color: var(--ink-mute); font-weight: 400; font-family: var(--f-body); }
.bs-plan-grid .bs-card-recommended .bs-card-h { background: var(--accent-soft); }
.bs-plan-badge { margin-left: auto; background: var(--accent); color: #fff; font-size: 11.5px; font-weight: 700; padding: 2px 9px; border-radius: 999px; white-space: nowrap; }

/* =========================================================================
 *  프로젝트 구축 — 6개 문서 해시 탭 (proposal 레이아웃)
 * ========================================================================= */
.bs-proj-tabs {
    display: flex;
    gap: 2px;
    overflow-x: auto;
    scrollbar-width: none;
    border-bottom: 1px solid var(--rule);
    margin: 0 0 28px;
}
.bs-proj-tabs::-webkit-scrollbar { display: none; }
.bs-proj-tab {
    flex: none;
    border: 0;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    padding: 11px 14px;
    background: none;
    color: var(--ink-mute);
    font: inherit;
    font-size: 14.5px;
    font-weight: 700;
    white-space: nowrap;
    cursor: pointer;
}
.bs-proj-tab[aria-current="true"] { border-bottom-color: var(--accent); color: var(--accent); }
.bs-proj-tab:focus-visible { outline: 2px solid var(--accent); outline-offset: -4px; border-radius: var(--r-xs, 8px); }

.bs-proj-panel[hidden] { display: none; }
.bs-proj-panel h2 {
    margin: 0 0 8px;
    font-family: var(--f-display);
    font-weight: 800;
    font-size: clamp(20px, 2.2vw, 25px);
    line-height: 1.25;
    color: var(--ink);
    text-wrap: balance;
}
.bs-proj-panel > p.desc { max-width: 720px; margin: 0 0 24px; color: var(--ink-mute); font-size: 14.5px; text-wrap: pretty; }
.bs-proj-block { margin-top: 34px; }
.bs-proj-block > h3 {
    margin: 0 0 14px;
    font-family: var(--f-display);
    font-size: 16px;
    font-weight: 700;
    color: var(--ink);
}

/* ---------- 요약/타임라인: keydates ---------- */
.bs-acc .keydates {
    display: grid;
    gap: 1px;
    overflow: hidden;
    border: 1px solid var(--rule);
    border-radius: var(--bsa-radius);
    background: var(--rule);
}
.bs-acc .keydates > div {
    display: grid;
    grid-template-columns: 130px 1fr auto;
    gap: 20px;
    align-items: center;
    padding: 14px 20px;
    background: var(--surface);
    font-size: 14px;
}
.bs-acc .keydates b { color: var(--accent); font-variant-numeric: tabular-nums; font-family: var(--f-en); font-weight: 700; }
.bs-acc .keydates .who {
    justify-self: end;
    border: 1px solid var(--rule);
    border-radius: var(--bsa-radius);
    padding: 2px 10px;
    color: var(--ink-mute);
    font-style: normal;
    font-size: 12px;
    font-weight: 800;
    white-space: nowrap;
}
.bs-acc .keydates .who.client { border-color: var(--accent); background: var(--accent-soft); color: var(--accent-ink); }

/* ---------- 수급 요청: checklist (읽기 전용) ---------- */
.bs-acc .checklist {
    display: grid;
    gap: 1px;
    overflow: hidden;
    border: 1px solid var(--rule);
    border-radius: var(--bsa-radius);
    background: var(--rule);
}
.bs-acc .check-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 80px 160px;
    gap: 16px;
    align-items: center;
    padding: 18px 22px;
    background: var(--surface);
}
.bs-acc .check-item { display: flex; align-items: flex-start; gap: 16px; }
.bs-acc .check-box {
    flex: none;
    width: 22px; height: 22px;
    margin-top: 1px;
    border: 1.5px solid var(--rule-strong);
    border-radius: 6px;
    display: flex; align-items: center; justify-content: center;
    color: #fff;
    font-size: 13px;
    font-weight: 800;
}
.bs-acc .check-box.done { background: var(--accent); border-color: var(--accent); }
.bs-acc .check-item strong { display: block; font-size: 15px; line-height: 1.5; color: var(--ink); font-weight: 700; }
.bs-acc .check-item.done strong { color: var(--ink-faint); text-decoration: line-through; }
.bs-acc .check-item span { display: block; margin-top: 2px; color: var(--ink-mute); font-size: 13.5px; }
.bs-acc .check-row .pri { font-style: normal; font-size: 13px; font-weight: 800; }
.bs-acc .check-row .pri.high { color: var(--accent); }
.bs-acc .check-row .pri.mid, .bs-acc .check-row .pri.low { color: var(--ink-mute); }
.bs-acc .check-row .ref { color: var(--ink-mute); font-size: 13.5px; }
.bs-acc .check-row .ref a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }

/* ---------- 사이트맵 (요구조건 섹션 구조) ---------- */
.bs-acc .sitemap {
    display: grid;
    gap: 1px;
    overflow: hidden;
    border: 1px solid var(--rule);
    border-radius: var(--bsa-radius);
    background: var(--rule);
}
.bs-acc .sitemap > div { display: grid; grid-template-columns: 200px 1fr; gap: 28px; padding: 16px 22px; background: var(--surface); }
.bs-acc .sitemap strong { font-size: 15px; color: var(--ink); }
.bs-acc .sitemap span { color: var(--ink-mute); font-size: 14px; }

/* ---------- 표 공통 (table-wrap) ---------- */
.bs-acc .table-wrap { overflow-x: auto; border: 1px solid var(--rule); border-radius: var(--bsa-radius); background: var(--surface); }
.bs-acc .table-wrap table { width: 100%; min-width: 640px; border-collapse: collapse; }
.bs-acc .table-wrap th, .bs-acc .table-wrap td { border-bottom: 1px solid var(--rule); padding: 14px 18px; text-align: left; vertical-align: top; font-size: 14px; }
.bs-acc .table-wrap th { background: var(--paper-2); color: var(--ink-mute); font-size: 13px; font-weight: 800; }
.bs-acc .table-wrap tr:last-child td { border-bottom: 0; }
.bs-acc .table-wrap tr.total td { background: var(--paper-2); font-weight: 800; color: var(--ink); }

.bs-acc .estimate-table td:nth-child(3),
.bs-acc .payment-table td:nth-child(2) { white-space: nowrap; font-weight: 800; color: var(--ink); }
.bs-acc .feature-table td:first-child { white-space: nowrap; font-weight: 700; color: var(--ink); }
.bs-acc .feature-table tr.cat td {
    padding: 11px 18px;
    background: var(--accent-soft);
    color: var(--accent-ink);
    font-size: 13px;
    font-weight: 900;
    white-space: normal;
}
.bs-acc .notes { display: grid; gap: 8px; margin-top: 16px; color: var(--ink-mute); font-size: 13.5px; }
.bs-acc .notes ul { margin: 0; padding-left: 18px; }
.bs-acc .notes p { margin: 0; }

/* ---------- 타임라인: 간트 ---------- */
.bs-acc .gantt-wrap { overflow-x: auto; border: 1px solid var(--rule); border-radius: var(--bsa-radius); background: var(--surface); }
.bs-acc .gantt {
    --weekend-shade: rgba(28, 77, 255, 0.04);
    display: grid;
    grid-template-columns: 240px minmax(900px, 1fr);
    min-width: 1140px;
}
.bs-acc .gantt-head { background: var(--paper-2); color: var(--ink-mute); font-size: 13px; font-weight: 800; border-bottom: 1px solid var(--rule); }
.bs-acc .gantt-head.label {
    position: sticky; left: 0; z-index: 5;
    display: flex; align-items: center;
    padding: 14px 18px;
    border-right: 1px solid var(--rule);
    box-shadow: 1px 0 0 var(--rule);
}
.bs-acc .gantt-head.dates {
    display: grid;
    grid-template-columns: repeat(var(--days), minmax(0, 1fr));
    align-items: center;
    min-height: 40px;
}
.bs-acc .gantt-head.dates span {
    grid-column: var(--col) / span 2;
    padding-left: 6px;
    white-space: nowrap;
    color: var(--accent);
    font-family: var(--f-en);
    font-size: 11.5px;
    font-weight: 700;
}
.bs-acc .task-label {
    position: sticky; left: 0; z-index: 3;
    display: flex; align-items: center;
    min-height: 52px;
    padding: 12px 18px;
    background: var(--surface);
    border-right: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
    box-shadow: 1px 0 0 var(--rule);
    font-size: 13.5px;
    font-weight: 700;
    color: var(--ink);
}
.bs-acc .task-row {
    display: grid;
    grid-template-columns: repeat(var(--days), minmax(0, 1fr));
    align-items: center;
    min-height: 52px;
    border-bottom: 1px solid var(--rule);
    background-image: repeating-linear-gradient(
        90deg, transparent 0,
        transparent calc((100% / var(--days)) - 1px),
        rgba(11, 18, 32, 0.06) calc((100% / var(--days)) - 1px),
        rgba(11, 18, 32, 0.06) calc(100% / var(--days))
    );
}
.bs-acc .bar {
    grid-column: var(--start) / span var(--span);
    display: flex; align-items: center; justify-content: center;
    min-height: 30px;
    border-radius: 6px;
    margin-inline: 6px;
    padding: 0 10px;
    color: #fff;
    font-family: var(--f-en);
    font-size: 11.5px;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
    font-variant-numeric: tabular-nums;
}
.bs-acc .bar.is-milestone {
    justify-content: flex-start;
    background: transparent !important;
    color: var(--accent);
    padding: 0;
    margin-inline: 0;
}
.bs-acc .bar.is-milestone::before {
    content: "";
    width: 12px; height: 12px;
    margin: 0 6px;
    border-radius: 3px;
    background: var(--bsa-bar-dark);
    transform: rotate(45deg);
    flex: none;
}
.bs-acc .bar.contract { background: var(--bsa-bar-deep); }
.bs-acc .bar.build    { background: var(--bsa-bar-accent); }
.bs-acc .bar.design   { background: var(--bsa-bar-1); }
.bs-acc .bar.document { background: var(--bsa-bar-2); }
.bs-acc .bar.planning { background: var(--bsa-bar-3); }
.bs-acc .bar.content  { background: var(--bsa-bar-4); }
.bs-acc .bar.review   { background: var(--bsa-bar-5); }
.bs-acc .bar.support  { background: var(--bsa-bar-6); }
.bs-acc .bar.launch   { background: var(--bsa-bar-dark); }

/* ---------- 견적서·계약서 = 여러 건 리스트 카드 (동일 형식) ---------- */
.bs-acc .bs-doc-list { display: flex; flex-direction: column; gap: 10px; }
.bs-acc .bs-doc-item {
    display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap;
    border: 1px solid var(--rule); border-radius: var(--bsa-radius);
    background: var(--surface); padding: 14px 18px;
}
.bs-acc .bs-doc-item-main { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; min-width: 0; }
.bs-acc .bs-doc-item-title { font-weight: 800; color: var(--ink); font-size: 14.5px; }
.bs-acc .bs-doc-item-amt { font-family: var(--f-en); font-weight: 700; color: var(--ink-soft); }
.bs-acc .bs-doc-item-date { color: var(--ink-faint); font-size: 12.5px; }
.bs-acc .bs-doc-item-actions { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.bs-acc .bs-doc-link { color: var(--accent); font-weight: 700; text-decoration: none; font-size: 13.5px; white-space: nowrap; }
.bs-acc .bs-doc-link:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; border-radius: 4px; }

/* 기본 견적 산출 내역 — 접기(details), 전체 보더 */
.bs-acc .bs-doc-breakdown {
    border: 1px solid var(--rule); border-radius: var(--bsa-radius);
    background: var(--surface); padding: 0 18px;
}
.bs-acc .bs-doc-breakdown > summary {
    list-style: none; cursor: pointer; padding: 14px 0;
    display: flex; align-items: center; justify-content: space-between; gap: 12px;
    font-weight: 700; color: var(--ink); font-size: 14.5px;
}
.bs-acc .bs-doc-breakdown > summary::-webkit-details-marker { display: none; }
.bs-acc .bs-doc-breakdown > summary:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; border-radius: 4px; }
.bs-acc .bs-doc-breakdown[open] > summary { border-bottom: 1px solid var(--rule); }
.bs-acc .bs-doc-breakdown-sum { font-family: var(--f-en); font-weight: 800; color: var(--accent); }
.bs-acc .bs-doc-breakdown .notes { padding-bottom: 18px; }

/* =========================================================================
 *  웹사이트 구축 대화 스레드 (채팅형) — 최초 견적문의·운영팀 답변·고객 답글
 *  버블 전체 보더(좌측 보더 아님), 호버 변형 없음.
 * ========================================================================= */
.bs-th-block { margin-top: 40px; padding-top: 28px; border-top: 1px solid var(--rule); }
.bs-th-block-h { margin: 0 0 4px; font-family: var(--f-display); font-weight: 800; font-size: clamp(18px, 2vw, 22px); color: var(--ink); }
.bs-th-block-desc { margin: 0 0 18px; font-size: 14px; color: var(--ink-mute); text-wrap: pretty; }

.bs-th-list { display: flex; flex-direction: column; gap: 12px; }
.bs-th-item { border: 1px solid var(--rule); border-radius: 10px; background: var(--surface); padding: 16px 18px; }
.bs-th-item.admin    { background: var(--accent-soft); border-color: #C7D4FF; margin-left: 8%; }
.bs-th-item.customer { margin-right: 8%; }
.bs-th-item.system   { border-style: dashed; background: #FAFBFF; padding: 12px 16px; font-size: 13.5px; }
.bs-th-item.upload_request { border-color: var(--accent); background: var(--accent-soft); margin-right: 8%; }
.bs-th-head { display: flex; justify-content: space-between; gap: 12px; font-size: 12.5px; color: var(--ink-faint); margin-bottom: 6px; flex-wrap: wrap; }
.bs-th-head strong { color: var(--ink); }
.bs-th-body { font-size: 14.5px; line-height: 1.75; white-space: pre-wrap; word-break: break-word; color: var(--ink-soft); }
.bs-th-files { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 12px; }
.bs-th-file-img { display: block; border: 1px solid var(--rule); border-radius: 8px; overflow: hidden; line-height: 0; }
.bs-th-file-img img { display: block; height: 88px; width: auto; max-width: 180px; object-fit: cover; }
.bs-th-file-link {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 8px 12px; border: 1px solid var(--rule); border-radius: var(--r-xs, 8px);
    background: var(--paper-2); color: var(--ink-soft);
    font-size: 13px; font-weight: 600; text-decoration: none; max-width: 280px;
    overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.bs-th-file-img:focus-visible, .bs-th-file-link:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

/* 답글 폼 */
.bs-th-reply { margin-top: 18px; display: flex; flex-direction: column; gap: 12px; }
.bs-th-reply-foot { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.bs-th-reply-foot .btn-primary { margin-left: auto; }
.bs-th-actions { margin-top: 10px; display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.bs-th-actions a { color: var(--accent); font-weight: 700; text-decoration: none; font-size: 13.5px; }

/* 버튼 (공용) — 호버 변형 없음 */
.bs-acc .btn-primary {
    display: inline-block;
    padding: 11px 22px;
    background: var(--accent);
    color: #fff;
    border: 0;
    border-radius: var(--bsa-radius);
    font: inherit;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
}
.bs-acc .btn-primary:active { background: var(--accent-deep); }
.bs-acc .btn-ghost {
    display: inline-block;
    padding: 11px 22px;
    background: var(--surface);
    color: var(--accent);
    border: 1.5px solid var(--accent);
    border-radius: var(--bsa-radius);
    font: inherit;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
}
.bs-acc .btn-primary:focus-visible,
.bs-acc .btn-ghost:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

/* 전역: 모든 액션 버튼 텍스트 가운데 정렬 (내비/좌측정렬 컨트롤은 제외 — 명시 클래스만) */
.bs-acc .btn-primary,
.bs-acc .btn-ghost,
.bs-acc .bs-sum-cta,
.bs-acc .bs-btn-cancel,
.bs-acc .bs-th-file-btn { text-align: center; }
/* 전체폭 플랜 버튼(폼 안 버튼) — 폭 유지 + 위 규칙이 가운데 정렬 */
.bs-acc .bs-plan-grid form button { width: 100%; }

/* 추가 기능 청구 취소 — 결제 진행 카드 내 우측, 빨간 전체 보더(좌측 보더 아님), 호버 없음 */
.bs-acc .bs-btn-cancel {
    padding: 9px 18px; border: 1.5px solid var(--error, #D64545); border-radius: var(--bsa-radius);
    background: var(--surface); color: var(--error, #D64545);
    font: inherit; font-size: 13.5px; font-weight: 700; cursor: pointer;
}
.bs-acc .bs-btn-cancel:active { background: #FEF6F6; }
.bs-acc .bs-btn-cancel:focus-visible { outline: 2px solid var(--error, #D64545); outline-offset: 2px; }

.bs-acc textarea, .bs-acc input[type="text"], .bs-acc input[type="url"] {
    width: 100%;
    font: inherit;
    font-size: 14px;
    padding: 11px 12px;
    border: 1px solid var(--rule-strong);
    border-radius: var(--bsa-radius);
    background: var(--surface);
    color: var(--ink);
}
.bs-acc textarea:focus, .bs-acc input:focus { outline: 2px solid var(--accent); outline-offset: 1px; border-color: var(--accent); }

/* =========================================================================
 *  반응형
 * ========================================================================= */
@media (max-width: 860px) {
    .bs-acc .sitemap > div { grid-template-columns: 1fr; gap: 6px; }
    .bs-acc .keydates > div { grid-template-columns: 92px 1fr auto; gap: 12px; }
    .bs-acc .check-row { grid-template-columns: 1fr; gap: 8px; }
    .bs-acc .check-row .pri { padding-left: 38px; }
    .bs-acc .check-row .ref { padding-left: 38px; }
    .bs-th-item.admin, .bs-th-item.customer, .bs-th-item.upload_request { margin-left: 0; margin-right: 0; }
}

/* =========================================================================
 *  온보딩 모드 — 세로 여정 스파인 + 단일 CTA
 * ========================================================================= */
/* 온보딩/lost = 세로 여정 스파인은 좁은 중앙 컬럼. 단, 프로필(정보변경) 폼은 phase 무관 동일 정렬(좌측). */
.bs-phase-onboarding .bs-acc-main:not(.page-account-profile),
.bs-phase-lost .bs-acc-main:not(.page-account-profile) { max-width: 640px; margin-inline: auto; }
.bs-onb-head { margin: 6px 0 30px; }
.bs-onb-head h1 {
    margin: 0 0 8px; font-family: var(--f-display); font-weight: 800;
    letter-spacing: -0.02em; font-size: clamp(22px, 3vw, 30px); line-height: 1.2; color: var(--ink);
}
.bs-onb-spine { list-style: none; margin: 0; padding: 0; }
.bs-onb-step {
    position: relative; display: grid; grid-template-columns: 40px 1fr; gap: 14px; padding: 0 0 22px;
}
.bs-onb-step:not(:last-child)::before {
    content: ""; position: absolute; left: 19px; top: 34px; bottom: -2px; width: 2px; background: var(--rule);
}
.bs-onb-step.is-done:not(:last-child)::before { background: var(--accent); }
.bs-onb-dot {
    width: 40px; height: 40px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center; z-index: 1;
    font-family: var(--f-en); font-weight: 700; font-size: 14px;
    border: 2px solid var(--rule-strong); background: var(--surface); color: var(--ink-faint);
}
.bs-onb-step.is-done .bs-onb-dot { background: var(--accent); border-color: var(--accent); color: #fff; }
.bs-onb-step.is-current .bs-onb-dot { border-color: var(--accent); color: var(--accent); }
.bs-onb-step-body { padding-top: 8px; min-width: 0; }
.bs-onb-step-body > strong { display: block; font-size: 16px; color: var(--ink); }
.bs-onb-step.is-todo .bs-onb-step-body > strong { color: var(--ink-faint); }
.bs-onb-note { margin: 8px 0 0; font-size: 14px; line-height: 1.65; color: var(--ink-soft); text-wrap: pretty; }
.bs-onb-cta { margin-top: 14px; display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }

/* =========================================================================
 *  콘솔 레이아웃 = 좌측 사이드바(우측 보더 구분선) + 본문 2열 그리드
 *  .bs-has-sidebar 는 모든 phase(온보딩·콘솔·프로필)에서 부여 — 사이드바 구성 동일.
 *  모바일에서는 grid 해제 → 사이드바(.bs-side)가 본문 위로 가로 배치(스택).
 * ========================================================================= */
.bs-acc.bs-has-sidebar {
    display: grid;
    grid-template-columns: 264px minmax(0, 1fr);   /* 사이드바 좌측(패딩 28px 포함), 본문 우측 */
    gap: 0;                                          /* 거터는 각 영역 패딩 + 사이드바 우측 보더가 담당 */
    align-items: start;
}

@media (max-width: 860px) {
    .bs-acc.bs-has-sidebar { display: block; }
}

/* =========================================================================
 *  대시보드 = 전체 요약 카드 그리드 (각 카드 → 상세 페이지)
 *  라이프사이클: 구축 중엔 프로젝트가 주인공(.bs-sum-lead), 런칭 후엔 구독.
 *  호버 변형 없음 · 좌측 보더 없음(전체 보더만) · 통화 '원'.
 * ========================================================================= */
.bs-acc-sumgrid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 16px; margin: 4px 0 0; }
.bs-sum-card {
    display: flex; flex-direction: column; gap: 6px;
    border: 1px solid var(--rule); border-radius: var(--bsa-radius);
    background: var(--surface); padding: 18px 20px;
}
.bs-sum-card.bs-sum-lead    { border-color: var(--accent); background: var(--accent-soft); }  /* 주인공 카드 */
.bs-sum-h { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin: 0 0 2px; font-family: var(--f-display); font-size: 15px; font-weight: 800; color: var(--ink); }
.bs-sum-tag { font-size: 11.5px; font-weight: 700; color: var(--accent-ink); background: var(--accent-soft); border-radius: 999px; padding: 2px 9px; white-space: nowrap; }
.bs-sum-lead .bs-sum-tag { background: var(--surface); }
.bs-sum-tag-warn { color: var(--warning, #946800); background: color-mix(in srgb, var(--warning, #C98A00) 14%, #fff); }
.bs-sum-big { margin: 2px 0; font-size: 16px; font-weight: 700; color: var(--ink); }
.bs-sum-note { margin: 0; font-size: 13px; line-height: 1.55; color: var(--ink-mute); text-wrap: pretty; }
.bs-sum-prog { height: 8px; border-radius: 999px; background: var(--paper-2); overflow: hidden; margin: 4px 0 6px; }
.bs-sum-lead .bs-sum-prog { background: var(--surface); }
.bs-sum-prog-bar { display: block; height: 100%; width: var(--pct, 0%); background: var(--accent); border-radius: 999px; }
.bs-sum-prog-txt { margin: 0; font-family: var(--f-en); font-size: 12.5px; font-weight: 700; color: var(--ink-soft); }
.bs-sum-cta {
    align-self: flex-start; margin-top: 8px;
    padding: 9px 16px; border-radius: var(--bsa-radius);
    background: var(--accent); color: #fff; font-size: 13.5px; font-weight: 700; text-decoration: none;
}
.bs-sum-cta:active { background: var(--accent-deep); }
.bs-sum-cta:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
.bs-sum-link { margin-top: auto; padding-top: 8px; color: var(--accent); font-size: 13.5px; font-weight: 700; text-decoration: none; }
.bs-sum-link:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; border-radius: 4px; }
/* CTA+링크가 함께 있는 카드(청구) — 둘을 한 묶음으로 하단 정렬 */
.bs-sum-foot { margin-top: auto; display: flex; flex-direction: column; align-items: flex-start; gap: 8px; }
.bs-sum-foot .bs-sum-cta { margin-top: 0; }
.bs-sum-foot .bs-sum-link { margin-top: 0; padding-top: 0; }

/* =========================================================================
 *  추가 기능(addons) — 기본 제공 + 추가 가능 카드 + '추가됨' 뱃지
 * ========================================================================= */
.bs-addon-base { margin-bottom: 36px; }
.bs-addon-base-list {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 8px 18px;
    margin: 0; padding: 0; list-style: none;
}
.bs-addon-base-list li { position: relative; padding-left: 22px; font-size: 14px; color: var(--ink-soft); line-height: 1.5; }
.bs-addon-base-list li::before { content: "✓"; position: absolute; left: 0; color: var(--success, #1A8A45); font-weight: 800; }

.bs-addon-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; }
.bs-addon-grid .bs-card { display: flex; flex-direction: column; }
.bs-addon-grid .bs-card-body { display: flex; flex-direction: column; flex: 1; }
.bs-addon-card.is-added { border-color: var(--success, #1A8A45); }
.bs-addon-head { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.bs-addon-title { font-size: 15px; font-weight: 800; color: var(--ink); }
.bs-addon-badge { background: var(--success, #1A8A45); color: #fff; font-size: 11.5px; font-weight: 800; padding: 2px 9px; border-radius: 999px; white-space: nowrap; }
.bs-addon-desc { margin: .5rem 0 .7rem; font-size: 13.5px; color: var(--ink-mute); line-height: 1.55; }
.bs-addon-benefits { margin: 0 0 .9rem; padding: 0; list-style: none; font-size: 13px; color: var(--ink-soft); }
.bs-addon-benefits li { position: relative; padding: 2px 0 2px 18px; }
.bs-addon-benefits li::before { content: "✓"; position: absolute; left: 0; color: var(--accent); }
.bs-addon-foot { margin-top: auto; }
.bs-addon-price { font-weight: 800; font-size: 16px; margin-bottom: 10px; color: var(--ink); font-family: var(--f-en); }
.bs-addon-price span { font-weight: 400; font-size: 12px; color: var(--ink-faint); font-family: var(--f-body); }
.bs-addon-added-note { display: block; color: var(--success, #1A8A45); font-size: 13.5px; font-weight: 700; }

/* =========================================================================
 *  문의 게시판 (board) + 작성 폼 (카테고리·첨부)
 * ========================================================================= */
/* 작성 폼 */
.bs-th-form-label { font-size: 16px; font-weight: 800; color: var(--ink); margin-bottom: 14px; }
/* 문의 작성 폼(컨테이너 없이 bare) — textarea 내용따라 자동높이 + 푸터 가로(첨부 좌·등록 우) */
.bs-th-compose textarea, .bs-th-reply textarea { field-sizing: content; min-height: 160px; max-height: 400px; }
.bs-th-compose .bs-th-file { margin-top: 14px; }
.bs-th-compose .bs-th-file .btn-primary { margin-left: auto; }
.bs-th-file { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-top: 12px; }
/* 파일 첨부 — 네이티브 input(찾아보기…) 숨기고 클립 아이콘 칩으로 (직관·단순) */
.bs-acc .bs-th-file-btn { display: inline-flex; flex-direction: row; align-items: center; gap: 7px; padding: 9px 16px; font-size: 13.5px; cursor: pointer; }
.bs-th-file-btn svg { flex: none; }
.bs-th-file-btn input[type="file"] { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; white-space: nowrap; }
.bs-th-file-names { font-size: 13px; color: var(--accent); font-weight: 600; }
.bs-th-file-names:empty { display: none; }
.bs-th-file-hint { font-size: 12px; color: var(--ink-faint); }

/* 게시판 — 본문·첨부(상세 펼침 영역에서 사용) */
.bs-board-cat {
    padding: 2px 9px; border-radius: 999px;
    background: var(--paper-2); color: var(--ink-mute);
    font-size: 11.5px; font-weight: 700; white-space: nowrap;
}
.bs-board-cat.is-portfolio { background: var(--accent-soft); color: var(--accent-ink); }
.bs-board-body { font-size: 14.5px; line-height: 1.75; white-space: pre-wrap; word-break: break-word; color: var(--ink-soft); }
.bs-board-files { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 12px; }
.bs-board-img { display: block; border: 1px solid var(--rule); border-radius: 8px; overflow: hidden; line-height: 0; }
.bs-board-img img { display: block; height: 96px; width: auto; max-width: 200px; object-fit: cover; }
.bs-board-file {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 8px 12px; border: 1px solid var(--rule); border-radius: var(--r-xs, 8px);
    background: var(--paper-2); color: var(--ink-soft);
    font-size: 13px; font-weight: 600; text-decoration: none; max-width: 280px;
    overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.bs-board-file:focus-visible, .bs-board-img:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

/* 페이지네이션 */
.bs-board-pager { display: flex; justify-content: center; gap: 6px; flex-wrap: wrap; margin-top: 24px; }
.bs-board-page {
    min-width: 36px; height: 36px; padding: 0 10px;
    display: inline-flex; align-items: center; justify-content: center;
    border: 1px solid var(--rule); border-radius: var(--r-xs, 8px);
    background: var(--surface); color: var(--ink-soft);
    font-family: var(--f-en); font-size: 13.5px; font-weight: 700; text-decoration: none;
}
.bs-board-page.is-cur { background: var(--accent); border-color: var(--accent); color: #fff; }
.bs-board-page:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

/* =========================================================================
 *  좌측 사이드바 (= 헤더 역할) — 로고·스테이지·내비·프로필·로그아웃 통합
 *  상단 헤더바 폐지. .bs-acc.bs-has-sidebar 그리드의 1열.
 *  호버 변형 없음 — aria-current 정적 + :focus-visible.
 * ========================================================================= */
.bs-login-top { display: flex; justify-content: center; padding: 28px 0 6px; }
.bs-login-top img { height: 28px; width: auto; }

.bs-side {
    position: sticky;
    top: 0;
    align-self: start;
    min-height: calc(100vh - 0.4rem);   /* border-box — 자체 패딩 포함 뷰포트 높이 채움(무스크롤) */
    padding: var(--pad-page, 28px);     /* 사이드바 자체 패딩(.bs-acc 패딩 제거분 흡수) */
    border-right: 1px solid var(--rule);   /* 본문과 구분하는 세로 구분선 */
    display: flex;
    flex-direction: column;
    gap: 4px;
}
/* 사이드바 맨 하단 푸터 (기존 .bs-appfoot 이관) — margin-top:auto 로 바닥에 바짝 */
.bs-side-foot {
    margin-top: auto;
    padding: 18px 14px 2px;
    border-top: 1px solid var(--rule);
    display: flex; flex-direction: column; gap: 7px;
    font-size: 11.5px; line-height: 1.5; color: var(--ink-faint);
}
.bs-side-foot a { color: var(--ink-mute); text-decoration: none; }
.bs-side-foot a:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; border-radius: 4px; }
.bs-side-foot-tel { margin: 0; font-weight: 600; color: var(--ink-mute); }
.bs-side-foot-legal { display: flex; gap: 12px; flex-wrap: wrap; }
.bs-side-brand { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; text-decoration: none; padding: 2px 6px 16px; }
.bs-side-brand img { display: block; height: 25px; width: auto; }
.bs-side-stage {
    padding: 3px 10px; border-radius: 999px;
    background: var(--accent-soft); color: var(--accent-ink);
    font-family: var(--f-en); font-size: 11.5px; font-weight: 700; white-space: nowrap;
}

/* 결과물 앵커 — 내 스튜디오 바로가기(상단) + 웹사이트 구축 상태(아래). 전체 보더 박스, 내부 구분선=상단 보더. */
.bs-side-studio { border: 1px solid var(--rule); border-radius: var(--bsa-radius); overflow: hidden; margin-bottom: 14px; }
.bs-side-studio-live, .bs-side-studio-build {
    display: flex; align-items: center; justify-content: space-between; gap: 8px;
    padding: 11px 14px; text-decoration: none; font-size: 14px; font-weight: 700;
}
.bs-side-studio-live { color: var(--accent); background: var(--accent-soft); }
.bs-side-studio-build { color: var(--ink-soft); border-top: 1px solid var(--rule); }
.bs-side-studio-build[aria-current="page"] { background: var(--accent-soft); color: var(--accent); }
.bs-side-studio-live.is-locked { color: var(--ink-faint); font-weight: 600; cursor: default; background: var(--paper-2); }
.bs-side-studio-build.is-locked { color: var(--ink-faint); font-weight: 600; cursor: default; }
.bs-side-studio-go { display: inline-flex; align-items: center; color: var(--accent); flex: none; }
.bs-side-studio-go svg { display: block; }
.bs-side-studio-status { font-size: 11px; font-weight: 600; color: var(--ink-faint); background: var(--paper-2); border-radius: 999px; padding: 1px 8px; white-space: nowrap; }
.bs-side-studio-build[aria-current="page"] .bs-side-studio-status { background: var(--surface); }
.bs-side-studio-live:focus-visible, .bs-side-studio-build:focus-visible { outline: 2px solid var(--accent); outline-offset: -2px; }

.bs-side-nav { display: flex; flex-direction: column; gap: 2px; }
.bs-side-global {
    display: flex; flex-direction: column; gap: 2px;
    margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--rule);
}
.bs-side-item {
    display: flex; align-items: center; justify-content: space-between; gap: 8px;
    padding: 10px 14px; border-radius: var(--r-xs, 8px);
    color: var(--ink-soft); font-size: 14.5px; font-weight: 700; text-decoration: none;
}
.bs-side-item[aria-current="page"] { background: var(--accent-soft); color: var(--accent); }
.bs-side-item.bs-side-out { color: var(--ink-faint); font-weight: 600; }
.bs-side-item:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
/* 아직 사용 불가(계약 전 등) — 같은 구성, 비활성 표시만 다름 */
.bs-side-item.is-locked { color: var(--ink-faint); font-weight: 600; cursor: default; }
.bs-side-item.is-locked .bs-side-lock { font-size: 11px; font-weight: 600; color: var(--ink-faint); background: var(--paper-2); border-radius: 999px; padding: 1px 8px; white-space: nowrap; }
.bs-side-badge { background: var(--error, #D64545); color: #fff; font-size: 11px; font-weight: 700; padding: 1px 7px; border-radius: 999px; }

@media (max-width: 860px) {
    .bs-side {
        position: static; min-height: 0; flex-direction: row; flex-wrap: wrap; align-items: center;
        gap: 4px; margin-bottom: 20px; padding-bottom: 12px;
        border-right: 0; border-bottom: 1px solid var(--rule);   /* 모바일 = 가로 바, 세로선 대신 하단선 */
    }
    .bs-side-brand { width: 100%; padding: 2px 6px 8px; }
    .bs-side-studio { width: 100%; margin-bottom: 10px; }
    .bs-side-nav { flex-direction: row; flex-wrap: wrap; gap: 2px; }
    .bs-side-global { flex-direction: row; flex-wrap: wrap; gap: 2px; margin: 0 0 0 auto; padding: 0; border: 0; }
    .bs-side-item { padding: 8px 12px; }
    /* 푸터: 모바일은 가로폭 가득, 상단 margin-auto 해제 */
    .bs-side-foot { width: 100%; margin-top: 8px; flex-direction: row; flex-wrap: wrap; align-items: center; gap: 6px 16px; padding: 12px 6px 0; }
    .bs-side-foot-tel br { display: none; }
}

/* =========================================================================
 *  문의 게시판 — 한국식 테이블(번호·분류·제목·작성자·날짜 + 제목 클릭 펼침)
 * ========================================================================= */
.bs-board-wrap { border: 1px solid var(--rule); border-radius: var(--bsa-radius); overflow: hidden; }
.bs-board-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.bs-board-table thead th {
    background: var(--paper-2); color: var(--ink-mute);
    font-size: 12.5px; font-weight: 800; text-align: center;
    padding: 11px 12px; border-bottom: 1px solid var(--rule); white-space: nowrap;
}
.bs-board-table thead th.c-title { text-align: left; }
.bs-board-table td { padding: 12px 12px; border-bottom: 1px solid var(--rule); vertical-align: middle; }
.bs-board-table tbody tr:last-child td { border-bottom: 0; }
.bs-board-row td { background: var(--surface); }
.bs-board-row.admin td  { background: var(--accent-soft); }
.bs-board-row.system td { background: #FAFBFF; }
.c-no     { width: 56px;  text-align: center; color: var(--ink-faint); font-family: var(--f-en); font-size: 12.5px; }
.c-cat    { width: 112px; text-align: center; }
.c-author { width: 130px; text-align: center; color: var(--ink-mute); font-size: 13px; }
.c-date   { width: 92px;  text-align: center; color: var(--ink-faint); font-family: var(--f-en); font-size: 12.5px; white-space: nowrap; }
.bs-board-table td.c-title { text-align: left; }
.bs-board-title {
    border: 0; background: none; padding: 0; cursor: pointer; text-align: left;
    font: inherit; font-size: 14.5px; font-weight: 700; color: var(--ink);
    display: inline-flex; align-items: center; gap: 8px;
}
.bs-board-title:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; border-radius: 4px; }
.bs-board-clip { font-size: 12px; color: var(--accent); font-weight: 700; white-space: nowrap; }
.bs-board-rowmeta { display: none; }
.bs-board-cat.is-reply  { background: var(--accent); color: #fff; }
.bs-board-cat.is-system { background: var(--paper-2); color: var(--ink-faint); }
.bs-board-detail-row td { background: var(--paper); padding: 0; }
.bs-board-content { padding: 16px 18px 18px; border-top: 2px solid var(--accent-soft); }
.bs-board-content .bs-board-files { margin-top: 12px; }

@media (max-width: 760px) {
    .bs-board-table thead { display: none; }
    .bs-board-table, .bs-board-table tbody, .bs-board-table tr, .bs-board-table td { display: block; }
    .bs-board-table tbody tr:last-child td { border-bottom: 0; }
    .bs-board-row { padding: 12px 14px; border-bottom: 1px solid var(--rule); }
    .bs-board-row td { padding: 0; border: 0; background: none !important; }
    .bs-board-row.admin  { background: var(--accent-soft); }
    .bs-board-row.system { background: #FAFBFF; }
    .bs-board-row td.c-no, .bs-board-row td.c-author, .bs-board-row td.c-date { display: none; }
    .bs-board-row td.c-cat { display: inline-block; margin: 0 0 6px; text-align: left; width: auto; }
    .bs-board-row td.c-title { display: block; }
    .bs-board-rowmeta { display: block; margin-top: 4px; font-size: 12px; color: var(--ink-faint); }
    .bs-board-detail-row { padding: 0; }
    .bs-board-detail-row td { padding: 0; }
}

/* 방향(관계) 칩 — 안내·답변=비머스→고객 / 고객 글=고객→비머스 */
.bs-board-dir {
    display: inline-block; margin-right: 8px; padding: 2px 9px; border-radius: 999px;
    font-family: var(--f-en); font-size: 10.5px; font-weight: 800; white-space: nowrap; vertical-align: 2px;
}
.bs-board-dir.in  { background: var(--accent); color: #fff; }                                  /* 비머스 → 고객 */
.bs-board-dir.out { background: var(--surface); color: var(--ink-mute); border: 1px solid var(--rule-strong); }  /* 고객 → 비머스 */

/* 사이드바 그룹 라벨 + 글로벌 그룹 간격 (한글 라벨 — 자간 없음) */
.bs-side-group {
    display: block; padding: 6px 14px 7px;
    font-size: 11.5px; font-weight: 700; color: var(--ink-faint);
}
.bs-side-global { margin-top: 16px; }

/* 문의 작성 — 큼지막한 설명형 라디오 카드 (네이티브 라디오 숨김) */
.bs-th-cats { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 10px; margin: 0 0 16px; }
@media (max-width: 960px) { .bs-th-cats { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.bs-th-cat { display: flex; cursor: pointer; position: relative; margin: 0; }
.bs-th-cat input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.bs-th-cat-box {
    flex: 1;
    border: 1.5px solid var(--rule-strong); border-radius: var(--bsa-radius);
    background: var(--surface); padding: 14px 16px;
}
.bs-th-cat input:checked + .bs-th-cat-box { border-color: var(--accent); background: var(--accent-soft); box-shadow: inset 0 0 0 1px var(--accent); }
.bs-th-cat input:focus-visible + .bs-th-cat-box { outline: 2px solid var(--accent); outline-offset: 2px; }
.bs-th-cat-title { display: flex; align-items: center; gap: 8px; font-size: 15px; font-weight: 800; color: var(--ink); }
.bs-th-cat input:checked + .bs-th-cat-box .bs-th-cat-title { color: var(--accent-ink); }
.bs-th-cat-desc { display: block; margin-top: 6px; font-size: 13px; line-height: 1.55; color: var(--ink-mute); }
.bs-th-cat-quota { padding: 1px 8px; border-radius: 999px; background: var(--accent); color: #fff; font-family: var(--f-en); font-size: 11px; font-weight: 700; }
