/* ══════════════════════════════════════════════════════════════
   boot.soritune.com — Common (Aggregator)
   모든 페이지에서 이 파일 하나만 불러오면 전체 디자인 시스템 적용
   ══════════════════════════════════════════════════════════════ */
@import url('design-tokens.css');
@import url('base.css');
@import url('layout.css');
@import url('components.css');
@import url('utilities.css');

/* ══════════════════ Cohort Chip ══════════════════ */
.cohort-chip {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 999px;
    color: inherit;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.15s;
}
.cohort-chip:hover { background: rgba(255, 255, 255, 0.2); }
.cohort-chip-arrow { font-size: 10px; opacity: 0.7; }
.cohort-chip-dropdown {
    position: absolute;
    top: calc(100% + 4px);
    right: 0;
    min-width: 120px;
    background: #fff;
    color: #111;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 1000;
    overflow: hidden;
}
.cohort-chip-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 12px;
    font-size: 14px;
    cursor: pointer;
}
.cohort-chip-item:hover { background: #f3f4f6; }
.cohort-chip-item .check { color: #16a34a; font-weight: 700; }

/* member-cohort 가 chip-host 일 때 기존 정적 라벨 스타일 무시 */
button.member-cohort.cohort-chip-host { background: rgba(255, 255, 255, 0.12); }
