/* ============================================
   OCS Album Schedule — 임관 사진 일정
   ============================================ */

.ocs-album-page {
    max-width: var(--content-max, 1100px);
    margin: 0 auto;
    padding: 40px 20px 80px;
    color: var(--ink, #222);
}

/* 헤더 */
.ocs-album-head {
    text-align: center;
    margin-bottom: 24px;
}
.ocs-album-kicker {
    display: inline-block;
    font-size: 11px;
    letter-spacing: 0.18em;
    color: var(--brass, #b08a4a);
    font-weight: 600;
}
.ocs-album-title {
    font-size: 28px;
    font-weight: 700;
    margin: 6px 0 6px;
    letter-spacing: -0.01em;
}
.ocs-album-lead {
    color: var(--muted, #888);
    font-size: 13px;
    margin: 0;
}

/* 요약 */
.ocs-album-summary {
    margin-bottom: 24px;
}
.ocs-album-progress {
    margin-top: 12px;
    position: relative;
    background: #f0eae0;
    border-radius: 999px;
    height: 22px;
    overflow: hidden;
    border: 1px solid var(--line, #e3e3e3);
}
.ocs-album-progress__bar {
    height: 100%;
    background: linear-gradient(90deg, #b08a4a, #d4b271);
    transition: width .35s ease;
    border-radius: 999px 0 0 999px;
}
.ocs-album-progress__label {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    color: #5a4520;
    font-weight: 600;
    letter-spacing: 0.02em;
    font-variant-numeric: tabular-nums;
}
.ocs-album-summary__inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}
.ocs-album-summary__item {
    background: var(--surface, #fff);
    border: 1px solid var(--line, #e3e3e3);
    border-radius: var(--radius-sm, 4px);
    padding: 14px 12px;
    text-align: center;
    border-left-width: 3px;
    border-left-style: solid;
    border-left-color: #ccc;
}
.ocs-album-summary__item.is-pending { border-left-color: #b08a4a; }
.ocs-album-summary__item.is-current { border-left-color: #2a73c2; background: #f4f8fc; }
.ocs-album-summary__item.is-done    { border-left-color: #2a7;    background: #f4faf6; }

.ocs-album-summary__label {
    display: block;
    font-size: 12px;
    color: var(--muted, #888);
    margin-bottom: 4px;
}
.ocs-album-summary__num {
    font-size: 22px;
    font-weight: 700;
    color: var(--ink, #222);
    font-variant-numeric: tabular-nums;
}

/* 테이블 */
.ocs-album-table-wrap {
    overflow-x: auto;
    background: var(--surface, #fff);
    border: 1px solid var(--line, #e3e3e3);
    border-radius: var(--radius-sm, 4px);
    box-shadow: var(--shadow-card, 0 1px 2px rgba(0,0,0,.04));
}
.ocs-album-table {
    width: 100%;
    min-width: 880px;
    border-collapse: collapse;
    font-size: 13px;
}
.ocs-album-table thead th {
    background: rgba(176,138,74,0.04);
    color: #5a4520;
    font-weight: 600;
    padding: 10px 12px;
    border-bottom: 1px solid var(--line, #e3e3e3);
    text-align: left;
    font-size: 12px;
    letter-spacing: 0.02em;
}
.ocs-album-table td {
    padding: 12px;
    border-top: 1px solid #f0eae0;
    vertical-align: top;
    line-height: 1.5;
}
.ocs-album-table tbody tr.is-current { background: #f4f8fc; }
.ocs-album-table tbody tr.is-done    { background: #fafafa; color: #888; }
.ocs-album-table tbody tr.is-done .ocs-album-group,
.ocs-album-table tbody tr.is-done .ocs-album-order { text-decoration: line-through; }

/* 층 그룹 헤더 행 */
.ocs-album-floor-row td {
    background: linear-gradient(180deg, #5a4520 0%, #6c5328 100%);
    color: #fff;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.04em;
    padding: 8px 14px;
    border-top: 2px solid var(--brass, #b08a4a);
}

.col-status     { width: 80px; }
.col-floor      { width: 44px; text-align: center; }
.col-time       { width: 108px; font-variant-numeric: tabular-nums; }
.col-group      { width: 168px; }
.col-staff      { width: 124px; }
.col-count      { width: 60px;  text-align: center; }
.col-progress   { width: 140px; min-width: 140px; }

.ocs-album-time-dur {
    font-size: 11px;
    color: var(--muted, #888);
    margin-top: 2px;
    font-variant-numeric: tabular-nums;
    letter-spacing: 0.02em;
}

.ocs-album-order {
    font-size: 11px;
    color: var(--muted, #888);
    margin-bottom: 2px;
}
.ocs-album-group {
    font-weight: 600;
    color: var(--ink, #222);
}
.ocs-album-content {
    font-size: 12px;
    color: var(--muted, #888);
    margin-top: 2px;
}
.ocs-album-support {
    font-size: 12px;
    color: var(--muted, #888);
    margin-top: 2px;
}
.ocs-album-dress34 {
    font-size: 11px;
    color: #5a4520;
    margin-top: 2px;
}
.ocs-album-muted { color: #bbb; }

/* 상태 pill */
.ocs-album-status-pill {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    border: 1px solid #ddd;
    color: #555;
    background: #fff;
}
.is-pending .ocs-album-status-pill { color: #8a5a00; border-color: #e0c98a; background: #fff7e6; }
.is-current .ocs-album-status-pill { color: #1f4f87; border-color: #c7d9ed; background: #e8f1fa; }
.is-done    .ocs-album-status-pill { color: #226b3a; border-color: #c2dfca; background: #e9f3ec; }

/* 임원 컨트롤 */
.ocs-album-status-select {
    width: 72px;
    padding: 5px 6px;
    border: 1px solid #ccc;
    border-radius: 2px;
    background: #fff;
    font-size: 12px;
    font-weight: 600;
}
.is-pending .ocs-album-status-select { color: #8a5a00; }
.is-current .ocs-album-status-select { color: #1f4f87; }
.is-done    .ocs-album-status-select { color: #226b3a; }

/* 목록 페이지 — 진행도/관리 셀 */
.ocs-album-progress-cell {
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 0;
}
.ocs-album-progress-cell__head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    font-size: 12px;
    color: var(--muted, #666);
}
.ocs-album-progress-cell__head strong {
    color: var(--ink, #222);
    font-size: 13px;
    font-variant-numeric: tabular-nums;
}
.ocs-album-progress-cell__pct {
    color: #5a4520;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
}
.ocs-album-progress-cell__bar {
    height: 6px;
    background: #f0eae0;
    border-radius: 3px;
    overflow: hidden;
}
.ocs-album-progress-cell__bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #b08a4a, #d4b271);
    transition: width .25s ease;
}

/* 페이스 — 시간 분석 + 피드백 */
.ocs-album-pace {
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px dashed rgba(15, 20, 30, 0.08);
    font-size: 11px;
    line-height: 1.55;
    font-variant-numeric: tabular-nums;
}
.ocs-album-pace__main {
    color: var(--muted, #666);
    margin-bottom: 3px;
}
.ocs-album-pace__feedback {
    display: inline-block;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 999px;
    font-size: 11px;
    letter-spacing: 0.02em;
}
.ocs-album-pace__feedback.is-good {
    color: #226b3a;
    background: rgba(34, 107, 58, 0.08);
}
.ocs-album-pace__feedback.is-bad {
    color: #a02b2b;
    background: rgba(160, 43, 43, 0.07);
}
.ocs-album-pace__feedback.is-pending {
    color: #5a4520;
    background: rgba(176, 138, 74, 0.10);
}
.ocs-album-manage-btn {
    align-self: flex-start;
    margin-top: 2px;
    font-size: 12px;
    padding: 5px 10px;
}

.ocs-album-btn--primary {
    background: var(--brass, #b08a4a);
    border-color: var(--brass, #b08a4a);
    color: #fff;
}
.ocs-album-btn--primary:hover {
    background: #946f33;
    border-color: #946f33;
    color: #fff;
}

/* 진행 관리 버튼 — 호버에도 흰 배경 유지 (다른 .ocs-album-btn:hover 규칙 무력화) */
.ocs-album-manage-btn,
.ocs-album-manage-btn:hover,
.ocs-album-manage-btn:focus,
.ocs-album-btn--primary.ocs-album-manage-btn,
.ocs-album-btn--primary.ocs-album-manage-btn:hover,
.ocs-album-btn--primary.ocs-album-manage-btn:focus {
    background: #fff;
    border-color: var(--brass, #b08a4a);
    color: var(--brass, #b08a4a);
}

/* Manage 페이지 */
.ocs-album-manage__back {
    margin-bottom: 14px;
}
.ocs-album-manage__head {
    background: var(--surface, #fff);
    border: 1px solid var(--line, #e3e3e3);
    border-radius: var(--radius-sm, 4px);
    box-shadow: var(--shadow-card, 0 1px 2px rgba(0,0,0,.04));
    padding: 20px 24px;
    margin-bottom: 18px;
}
.ocs-album-manage__title {
    font-size: 22px;
    font-weight: 700;
    margin: 6px 0 8px;
    letter-spacing: -0.01em;
    display: flex;
    align-items: baseline;
    gap: 10px;
    flex-wrap: wrap;
}
.ocs-album-manage__order {
    font-size: 13px;
    color: var(--brass, #b08a4a);
    font-weight: 600;
    padding: 3px 8px;
    background: rgba(176,138,74,0.12);
    border-radius: 2px;
}
.ocs-album-manage__meta {
    color: var(--muted, #888);
    font-size: 13px;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 14px;
}
.ocs-album-manage__meta strong { color: var(--ink, #222); }
.ocs-album-manage__meta .date { font-variant-numeric: tabular-nums; }
.ocs-album-manage__status-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-top: 12px;
    border-top: 1px solid var(--line, #f0eae0);
}
.ocs-album-manage__label {
    font-size: 12px;
    color: #5a4520;
    font-weight: 600;
}
.ocs-album-readonly-notice {
    padding: 10px 14px;
    background: rgba(176,138,74,0.06);
    border-left: 2px solid var(--brass, #b08a4a);
    color: #5a4520;
    font-size: 12px;
    margin-bottom: 14px;
    border-radius: 2px;
}
.ocs-album-manage__list {
    background: var(--surface, #fff);
    border: 1px solid var(--line, #e3e3e3);
    border-radius: var(--radius-sm, 4px);
    padding: 20px 24px;
    box-shadow: var(--shadow-card, 0 1px 2px rgba(0,0,0,.04));
}

/* 체크리스트 — manage 페이지의 확장형 */
.ocs-album-checklist.is-expand {
    min-width: 0;
}
.ocs-album-checklist.is-expand .ocs-album-checklist__items {
    max-height: none;
    overflow: visible;
    gap: 8px;
}
.ocs-album-checklist.is-expand .ocs-album-chip {
    padding: 8px 12px;
    font-size: 13px;
}
.ocs-album-checklist.is-expand .ocs-album-chip__no { font-size: 11px; }

/* 체크리스트 — 기본 */
.ocs-album-checklist {
    min-width: 280px;
}
.ocs-album-checklist__head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 6px;
    font-size: 12px;
    color: var(--muted, #666);
}
.ocs-album-checklist__count strong {
    color: var(--ink, #222);
    font-size: 13px;
    font-variant-numeric: tabular-nums;
}
.ocs-album-checklist__pct {
    color: #5a4520;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
}
.ocs-album-checklist__bar {
    height: 4px;
    background: #f0eae0;
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 8px;
}
.ocs-album-checklist__bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #b08a4a, #d4b271);
    transition: width .25s ease;
}
.ocs-album-checklist__items {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    max-height: 180px;
    overflow-y: auto;
    padding: 2px;
}
.ocs-album-checklist__empty {
    padding: 8px 0;
    font-size: 12px;
}

.ocs-album-chip {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 3px 8px;
    border: 1px solid var(--line, #e3e3e3);
    background: #fff;
    border-radius: 999px;
    font-size: 11px;
    cursor: pointer;
    transition: background .12s, border-color .12s, color .12s;
    user-select: none;
}
.ocs-album-chip:hover { border-color: var(--brass, #b08a4a); }
.ocs-album-chip input { display: none; }
.ocs-album-chip__no {
    color: #5a4520;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
    font-size: 10px;
}
.ocs-album-chip__name { color: var(--ink, #222); }
.ocs-album-chip.is-checked {
    background: #226b3a;
    border-color: #226b3a;
    color: #fff;
}
.ocs-album-chip.is-checked .ocs-album-chip__no,
.ocs-album-chip.is-checked .ocs-album-chip__name { color: #fff; }
.ocs-album-chip.is-readonly { cursor: default; pointer-events: none; opacity: 0.85; }

/* 빈 상태 */
.ocs-album-empty {
    padding: 50px 20px;
    text-align: center;
    color: var(--muted, #888);
    font-size: 14px;
    background: var(--surface, #fff);
    border: 1px solid var(--line, #e3e3e3);
    border-radius: var(--radius-sm, 4px);
}
.ocs-album-empty a { color: var(--brass, #b08a4a); margin-left: 6px; }

/* 관리 링크 */
.ocs-album-admin-link {
    margin-top: 18px;
    text-align: right;
}
.ocs-album-btn {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    border: 1px solid var(--line, #e3e3e3);
    background: #fff;
    color: var(--ink, #222);
    font-size: 13px;
    text-decoration: none;
    border-radius: 2px;
    transition: border-color .15s, color .15s;
}
.ocs-album-btn:hover {
    border-color: var(--brass, #b08a4a);
    color: var(--brass, #b08a4a);
}

/* ============================================
   관리 대상 편집 패널 (manage 페이지)
   ============================================ */
.ocs-album-editor {
    margin-top: 24px;
    background: var(--surface, #fff);
    border: 1px solid var(--line, #e3e3e3);
    border-radius: var(--radius-sm, 4px);
}
.ocs-album-editor__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 16px;
}
.ocs-album-editor__title {
    margin: 0 0 4px;
    font-size: 14px;
    font-weight: 700;
    color: var(--ink, #222);
}
.ocs-album-editor__desc {
    margin: 0;
    color: var(--muted, #888);
    font-size: 12px;
}
.ocs-album-editor__toggle { flex-shrink: 0; }
.ocs-album-editor__body {
    border-top: 1px solid var(--line, #e3e3e3);
    padding: 14px 16px 16px;
}
.ocs-album-editor__toolbar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}
.ocs-album-editor__search {
    flex: 1 1 200px;
    min-width: 0;
    padding: 8px 12px;
    border: 1px solid var(--line, #e3e3e3);
    border-radius: 2px;
    font-size: 13px;
    color: var(--ink, #222);
}
.ocs-album-editor__search:focus {
    outline: none;
    border-color: var(--brass, #b08a4a);
}
.ocs-album-editor__count {
    font-size: 12px;
    color: var(--muted, #888);
    font-variant-numeric: tabular-nums;
}
.ocs-album-editor__count strong { color: var(--ink, #222); }
.ocs-album-editor__actions {
    display: flex;
    gap: 6px;
    margin-left: auto;
}
.ocs-album-editor__groups {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-height: 520px;
    overflow-y: auto;
    padding-right: 4px;
}
.ocs-album-editor__group {
    border: 1px solid var(--line, #e3e3e3);
    border-radius: 4px;
    padding: 10px 12px;
    background: #fafaf7;
}
.ocs-album-editor__group-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 8px;
    padding-bottom: 6px;
    border-bottom: 1px dashed var(--line, #e3e3e3);
}
.ocs-album-editor__group-head strong {
    font-size: 12px;
    color: #5a4520;
    letter-spacing: 0.02em;
}
.ocs-album-editor__group-all {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    color: var(--muted, #888);
    cursor: pointer;
    user-select: none;
}
.ocs-album-editor__subgroup {
    margin-top: 8px;
    padding: 6px 8px;
    background: #fff;
    border: 1px solid var(--line, #e3e3e3);
    border-radius: 3px;
}
.ocs-album-editor__sub-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 5px;
}
.ocs-album-editor__sub-label {
    font-size: 11px;
    color: #5a4520;
    font-weight: 600;
    letter-spacing: 0.04em;
}
.ocs-album-editor__sub-all {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 10px;
    color: var(--muted, #888);
    cursor: pointer;
    user-select: none;
}
.ocs-album-editor__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}
.ocs-album-editor__chip { cursor: pointer; }
.ocs-album-chip__squad {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 14px;
    padding: 0 4px;
    margin-left: 2px;
    font-size: 9px;
    font-weight: 700;
    color: var(--muted, #888);
    background: #f0eae0;
    border-radius: 999px;
    font-variant-numeric: tabular-nums;
}
.ocs-album-chip.is-checked .ocs-album-chip__squad {
    color: #fff;
    background: rgba(255, 255, 255, 0.22);
}

/* ============================================
   모바일 — 카드 레이아웃 (≤ 760px)
   ============================================ */
@media (max-width: 760px) {
    .ocs-album-page { padding: 22px 16px 60px; }
    .ocs-album-title { font-size: 21px; }
    .ocs-album-lead { font-size: 12px; line-height: 1.6; }

    /* 요약 */
    .ocs-album-summary { margin-bottom: 20px; }
    .ocs-album-summary__inner { grid-template-columns: repeat(4, 1fr); gap: 6px; }
    .ocs-album-summary__item { padding: 10px 4px; }
    .ocs-album-summary__label { font-size: 10px; margin-bottom: 2px; }
    .ocs-album-summary__num { font-size: 17px; }

    .ocs-album-progress { height: 18px; }
    .ocs-album-progress__label { font-size: 10px; }

    /* 테이블 → 블록 변환 */
    .ocs-album-table-wrap {
        overflow-x: visible;
        background: transparent;
        border: none;
        box-shadow: none;
        border-radius: 0;
    }
    .ocs-album-table,
    .ocs-album-table thead,
    .ocs-album-table tbody,
    .ocs-album-table tr,
    .ocs-album-table td,
    .ocs-album-table th {
        display: block;
        min-width: 0;
        width: auto;
    }
    .ocs-album-table { min-width: 0; }
    .ocs-album-table thead { display: none; }

    /* 층 섹션 헤더 — 미니멀 letterspaced 라벨 + 가는 액센트 라인 */
    .ocs-album-floor-row {
        background: transparent !important;
        margin: 26px 0 10px;
    }
    .ocs-album-floor-row:first-child { margin-top: 8px; }
    .ocs-album-floor-row td {
        background: transparent;
        color: var(--brass, #b08a4a);
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 0.22em;
        text-transform: uppercase;
        text-align: left;
        padding: 0 2px 7px;
        border: none;
        border-bottom: 1px solid rgba(176, 138, 74, 0.22);
    }
    .ocs-album-floor-row td::before { display: none; }

    /* 카드 */
    .ocs-album-table tbody tr.ocs-album-row {
        background: #fff;
        border: 1px solid rgba(15, 20, 30, 0.07);
        border-radius: 10px;
        margin: 0 0 10px;
        padding: 16px 16px 18px;
        box-shadow: 0 1px 2px rgba(15, 20, 30, 0.03);
        position: relative;
        display: flex;
        flex-direction: column;
    }
    /* 카드 내부 td 순서 재정렬: 대상(타이틀) → 시간 → 담당 → 인원 → 진행 */
    .ocs-album-table tbody tr.ocs-album-row > td.col-group    { order: 1; }
    .ocs-album-table tbody tr.ocs-album-row > td.col-time     { order: 2; }
    .ocs-album-table tbody tr.ocs-album-row > td.col-staff    { order: 3; }
    .ocs-album-table tbody tr.ocs-album-row > td.col-count    { order: 4; }
    .ocs-album-table tbody tr.ocs-album-row > td.col-progress { order: 5; }
    .ocs-album-table tbody tr.ocs-album-row.is-current {
        background: #fbfcfe;
        border-color: rgba(42, 115, 194, 0.22);
    }
    .ocs-album-table tbody tr.ocs-album-row.is-done {
        background: #fafbfa;
    }
    .ocs-album-table tbody tr.ocs-album-row.is-done .ocs-album-group,
    .ocs-album-table tbody tr.ocs-album-row.is-done .ocs-album-order {
        text-decoration: line-through;
        opacity: 0.65;
    }

    /* 상태를 카드 우상단으로 (절대 위치) */
    .ocs-album-table tbody tr.ocs-album-row > td.col-status {
        position: absolute;
        top: 14px;
        right: 14px;
        padding: 0;
        margin: 0;
        background: transparent;
        z-index: 1;
        display: block;
    }
    .ocs-album-table tbody tr.ocs-album-row > td.col-status::before { display: none; }
    .ocs-album-status-pill {
        font-size: 11px;
        padding: 3px 9px;
    }
    .ocs-album-status-select {
        font-size: 11px;
        padding: 3px 6px;
        min-width: 86px;
        border-radius: 4px;
    }

    /* "층" 셀은 카드에서 숨김 (섹션 헤더에 이미 있음) */
    .ocs-album-table tbody tr.ocs-album-row > td.col-floor { display: none; }

    /* 대상(group) — 카드의 메인 타이틀 */
    .ocs-album-table tbody tr.ocs-album-row > td.col-group {
        display: block;
        padding: 0 0 14px;
        margin: 0 0 12px;
        border-bottom: 1px solid rgba(15, 20, 30, 0.06);
        padding-right: 80px; /* 우상단 상태 pill 자리 확보 */
    }
    .ocs-album-table tbody tr.ocs-album-row > td.col-group::before { display: none; }
    .ocs-album-table tbody tr.ocs-album-row > td.col-group > * { text-align: left; }
    .ocs-album-order {
        font-size: 10px;
        color: var(--brass, #b08a4a);
        font-weight: 700;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        margin: 0 0 4px;
    }
    .ocs-album-table tbody .ocs-album-group {
        font-size: 17px;
        font-weight: 700;
        color: var(--ink, #222);
        letter-spacing: -0.01em;
        line-height: 1.35;
    }
    .ocs-album-content {
        font-size: 11px;
        color: var(--muted, #999);
        margin-top: 3px;
        letter-spacing: 0.02em;
    }

    /* 일반 정보 행 (시간/담당/인원) — 라벨 좌측 고정, 값은 바로 옆 */
    .ocs-album-table tbody td {
        padding: 6px 0;
        border: none;
        display: flex;
        justify-content: flex-start;
        align-items: baseline;
        gap: 14px;
        font-size: 13px;
        line-height: 1.55;
        text-align: left; /* 데스크탑 .col-count center 정렬 무력화 */
    }
    .ocs-album-table tbody td::before {
        content: attr(data-label);
        flex: 0 0 44px;
        font-size: 10px;
        font-weight: 600;
        color: var(--muted, #999);
        letter-spacing: 0.08em;
        text-transform: uppercase;
        padding-top: 2px;
    }
    .ocs-album-table tbody td > * {
        flex: 0 1 auto;
        text-align: left;
        min-width: 0;
    }
    /* 담당·인원 셀의 보조 정보는 줄바꿈 (들여쓰기 없이) */
    .ocs-album-table tbody td.col-staff,
    .ocs-album-table tbody td.col-count {
        flex-wrap: wrap;
    }
    .ocs-album-table tbody td.col-staff > div + div,
    .ocs-album-table tbody td.col-count > div + div {
        flex-basis: 100%;
        margin-left: 58px; /* 라벨(44px) + gap(14px) 만큼 들여쓰기 */
    }

    /* 시간 강조 */
    .ocs-album-table tbody td.col-time {
        font-size: 14px;
        font-weight: 600;
        color: #5a4520;
    }

    /* 담당 — 줄바꿈 */
    .ocs-album-table tbody td.col-staff > div { display: block; }
    .ocs-album-support {
        font-size: 11px;
        color: var(--muted, #999);
        margin-top: 2px;
    }
    .ocs-album-dress34 {
        font-size: 11px;
        color: #5a4520;
        margin-top: 2px;
    }

    /* 진행률 + 버튼 */
    .ocs-album-table tbody td.col-progress {
        flex-direction: column;
        align-items: stretch;
        padding: 14px 0 0;
        margin-top: 12px;
        border-top: 1px solid rgba(15, 20, 30, 0.06);
    }
    .ocs-album-table tbody td.col-progress::before {
        flex-basis: auto;
        margin-bottom: 8px;
    }
    .ocs-album-table tbody td.col-progress > * { text-align: left; }
    .ocs-album-progress-cell { min-width: 0; gap: 8px; }
    .ocs-album-progress-cell__head { font-size: 13px; }
    .ocs-album-progress-cell__bar { height: 5px; border-radius: 3px; }
    .ocs-album-manage-btn {
        align-self: stretch;
        text-align: center;
        margin-top: 4px;
        padding: 11px 14px;
        font-size: 13px;
        font-weight: 600;
        border-radius: 6px;
    }

    /* Manage 페이지 */
    .ocs-album-manage__back { margin-bottom: 12px; }
    .ocs-album-manage__head {
        padding: 18px 16px;
        border-radius: 10px;
        border-color: rgba(15, 20, 30, 0.07);
    }
    .ocs-album-manage__title { font-size: 19px; line-height: 1.4; }
    .ocs-album-manage__meta {
        flex-direction: column;
        gap: 5px;
        font-size: 12px;
    }
    .ocs-album-manage__list {
        padding: 16px;
        border-radius: 10px;
        border-color: rgba(15, 20, 30, 0.07);
    }
    .ocs-album-checklist.is-expand .ocs-album-chip {
        padding: 7px 12px;
        font-size: 12px;
    }
}

/* 초소형 (≤ 380px) */
@media (max-width: 380px) {
    .ocs-album-page { padding: 18px 12px 50px; }
    .ocs-album-table tbody tr.ocs-album-row { padding: 14px 14px 16px; }
    .ocs-album-table tbody td::before { flex-basis: 40px; }
    .ocs-album-table tbody .ocs-album-group { font-size: 16px; }
    .ocs-album-summary__inner { grid-template-columns: repeat(2, 1fr); gap: 6px; }
}
