/* AI Link — Network Hub (영업대표 네트워크 통합 hub)
   2026-05-01 v1 — P5 IA 통합 + 모든 phase UI surface */

.al2-net-trust-pill {
  display: inline-flex; align-items: center; gap: 6px;
  background: #ede9fe; color: #6d28d9; font-weight: 700; font-size: .76rem;
  padding: 6px 12px; border-radius: 999px;
}

/* KPI row */
.al2-net-kpi-row {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px;
  margin: 0 0 16px;
}
.al2-net-kpi {
  background: #fff; border: 1px solid var(--al2-g100);
  border-radius: var(--al2-radius-lg);
  padding: 14px 16px; display: flex; gap: 12px; align-items: center;
  cursor: pointer; transition: all .15s;
}
.al2-net-kpi:hover { border-color: var(--al2-brand); transform: translateY(-2px); box-shadow: 0 4px 12px rgba(108,58,224,.08); }
.al2-net-kpi .kpi-icon {
  width: 42px; height: 42px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center; font-size: 1.05rem; flex: 0 0 auto;
}
.al2-net-kpi .kpi-num {
  font-size: 1.4rem; font-weight: 800; color: var(--al2-g900);
  font-family: var(--al2-font-mono, 'JetBrains Mono', monospace);
  line-height: 1.1;
}
.al2-net-kpi .kpi-label { font-size: .72rem; color: var(--al2-g600); margin-top: 2px; }

@media (max-width: 1100px) {
  .al2-net-kpi-row { grid-template-columns: repeat(2, 1fr); }
}

/* Sidebar tab active state */
.al2-sidebar .al2-sb-tab.on {
  background: var(--al2-brand-dim);
  color: var(--al2-brand-dark);
  font-weight: 700;
}
.al2-sidebar .al2-sb-tab.on .icon { filter: brightness(.95); }

/* Pane */
.al2-net-pane { animation: al2-fadein .25s ease; }
@keyframes al2-fadein { from { opacity: 0; transform: translateY(4px); } to { opacity: 1; transform: none; } }

/* 2-column home grid */
.al2-net-grid-2 {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
}
@media (max-width: 1100px) { .al2-net-grid-2 { grid-template-columns: 1fr; } }

.al2-net-mini-link {
  background: transparent; border: 0; color: var(--al2-brand);
  font-size: .76rem; font-weight: 600; cursor: pointer; padding: 4px 8px;
  border-radius: 6px; transition: background .12s;
}
.al2-net-mini-link:hover { background: var(--al2-brand-dim); }

/* Skeleton */
.al2-net-skel {
  height: 56px; background: linear-gradient(90deg, #f1f5f9, #f8fafc, #f1f5f9);
  background-size: 200% 100%; animation: al2-net-skel 1.4s infinite;
  border-radius: 8px; margin-bottom: 8px;
}
@keyframes al2-net-skel { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }

/* Empty state */
.al2-empty {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  padding: 36px 20px; text-align: center; color: var(--al2-g600);
}
.al2-empty > div { font-size: .82rem; }

/* Recommendation pane */
.al2-net-rec-input { display: grid; grid-template-columns: 2fr 1.5fr auto; gap: 8px; }
@media (max-width: 800px) { .al2-net-rec-input { grid-template-columns: 1fr; } }

/* Rep card (recommend / follows / referrals) */
.al2-net-rep-card {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 12px 14px; background: #fff;
  border: 1px solid var(--al2-g200); border-radius: 10px;
  margin-bottom: 8px;
  transition: all .15s;
}
.al2-net-rep-card:hover { border-color: var(--al2-brand); }
.al2-net-rep-avatar {
  width: 42px; height: 42px; flex: 0 0 auto;
  border-radius: 50%; background: linear-gradient(135deg, #ede9fe, #dbeafe);
  color: var(--al2-brand-dark); font-weight: 800; font-size: .9rem;
  display: inline-flex; align-items: center; justify-content: center;
}
.al2-net-rep-body { flex: 1; min-width: 0; }
.al2-net-rep-name {
  font-size: .88rem; font-weight: 700; color: var(--al2-g900); margin-bottom: 2px;
  display: flex; gap: 6px; align-items: center;
}
.al2-net-rep-meta { font-size: .72rem; color: var(--al2-g600); margin-bottom: 4px; }
.al2-net-rep-tags { display: flex; flex-wrap: wrap; gap: 4px; margin-top: 4px; }
.al2-net-rep-tag {
  background: var(--al2-g100); color: var(--al2-g700);
  padding: 2px 7px; border-radius: 999px; font-size: .65rem; font-weight: 600;
}
.al2-net-rep-tag.match { background: var(--al2-brand-dim); color: var(--al2-brand-dark); }
/* 2026-05-02 — 액션 버튼 너비 일관화 (이메일 추가 같은 긴 라벨에도 동일 폭) */
.al2-net-rep-actions {
  display: flex; flex-direction: column; gap: 6px; flex: 0 0 auto;
  min-width: 120px;
}
.al2-net-rep-actions .al2-btn {
  width: 100%;
  justify-content: center;
  font-size: .76rem;
  padding: 7px 10px;
}
@media (max-width: 700px) {
  .al2-net-rep-actions { flex-direction: row; flex-wrap: wrap; min-width: 0; width: 100%; }
  .al2-net-rep-actions .al2-btn { flex: 1; min-width: 90px; }
}
.al2-net-score-pill {
  background: linear-gradient(135deg, #f59e0b, #ef4444);
  color: #fff; font-size: .68rem; font-weight: 700;
  padding: 2px 8px; border-radius: 999px;
  font-family: var(--al2-font-mono, monospace);
}
.al2-net-rep-card.selected { border-color: var(--al2-brand); background: #faf5ff; }

/* Follow button (Phase 3 — 모바일 44px touch target) */
.al2-net-follow-btn {
  background: var(--al2-brand); color: #fff;
  border: 0; padding: 8px 14px; border-radius: 6px;
  font-size: .76rem; font-weight: 700; cursor: pointer;
  display: inline-flex; align-items: center; gap: 4px;
  transition: all .12s;
  min-height: 32px;
}
@media (max-width: 900px) {
  .al2-net-follow-btn { min-height: 44px; padding: 12px 16px; font-size: .82rem; }
}
.al2-net-follow-btn:hover { background: var(--al2-brand-dark); transform: translateY(-1px); }
.al2-net-follow-btn.following {
  background: #fff; color: var(--al2-brand); border: 1px solid var(--al2-brand-dim);
}

/* Referral row — Phase 3 hover */
.al2-net-ref-row {
  border: 1px solid var(--al2-g200); border-radius: 10px; padding: 14px;
  margin-bottom: 10px; background: #fff;
  display: grid; grid-template-columns: 1fr auto; gap: 12px; align-items: center;
  transition: background .12s, border-color .12s, transform .1s;
}
.al2-net-ref-row:hover {
  background: var(--al2-g50);
  border-color: var(--al2-g300);
  transform: translateY(-1px);
}
.al2-net-ref-row.pending { border-left: 4px solid #f59e0b; }
.al2-net-ref-row.accepted { border-left: 4px solid #10b981; opacity: .85; }
.al2-net-ref-row.declined { border-left: 4px solid #94a3b8; opacity: .7; }
.al2-net-ref-from { font-size: .72rem; color: var(--al2-g600); margin-bottom: 4px; }
.al2-net-ref-title { font-size: .9rem; font-weight: 700; color: var(--al2-g900); margin-bottom: 4px; }
.al2-net-ref-msg { font-size: .76rem; color: var(--al2-g700); line-height: 1.5; }
.al2-net-ref-actions { display: flex; gap: 6px; }
.al2-net-ref-actions button { padding: 6px 12px; font-size: .74rem; }

/* Channel split */
.al2-net-channels-split {
  display: grid; grid-template-columns: 320px 1fr; gap: 0;
  border: 1px solid var(--al2-g200); border-radius: 12px; overflow: hidden;
  height: 65vh; min-height: 500px;
}
.al2-net-channels-split .ch-list-panel { border-radius: 0; border: 0; border-right: 1px solid var(--al2-g200); height: 100%; display: flex; flex-direction: column; }
.al2-net-channels-split .ch-msg-panel { border-radius: 0; border: 0; height: 100%; display: flex; flex-direction: column; }
.al2-net-channels-split .al2-section-body { flex: 1; overflow-y: auto; }

@media (max-width: 800px) { .al2-net-channels-split { grid-template-columns: 1fr; height: auto; } }

.al2-net-channel-row {
  padding: 12px 14px; border-bottom: 1px solid var(--al2-g100);
  cursor: pointer; transition: background .12s;
  display: flex; gap: 10px; align-items: center;
  min-height: 56px;   /* Phase 3 — 모바일 row 가독성 */
}
.al2-net-channel-row:hover { background: var(--al2-g50); }
.al2-net-channel-row.active { background: var(--al2-brand-dim); }
.al2-net-channel-row .name { font-size: .86rem; font-weight: 700; color: var(--al2-g900); }
.al2-net-channel-row .preview {
  font-size: .76rem; color: var(--al2-g600); margin-top: 2px;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.al2-net-channel-row .unread {
  background: var(--al2-brand); color: #fff;
  font-size: .7rem; font-weight: 800; padding: 3px 8px;     /* Phase 3 — 18px→24px */
  border-radius: 12px; min-width: 24px; text-align: center;
}

/* Channel msg pane */
.al2-net-msg-list {
  flex: 1; overflow-y: auto; padding: 14px;
  background: #f8fafc;
}
.al2-net-msg {
  max-width: 70%; padding: 9px 12px; border-radius: 12px;
  margin-bottom: 8px; font-size: .82rem; line-height: 1.5;
  word-break: break-word;
}
.al2-net-msg.mine {
  background: var(--al2-brand); color: #fff;
  border-bottom-right-radius: 4px;
  margin-left: auto;
}
.al2-net-msg.other {
  background: #fff; color: var(--al2-g900);
  border: 1px solid var(--al2-g200);
  border-bottom-left-radius: 4px;
}
.al2-net-msg .ts { font-size: .64rem; opacity: .7; margin-top: 2px; }
.al2-net-msg-input-row {
  display: flex; gap: 8px; padding: 12px;
  border-top: 1px solid var(--al2-g200); background: #fff;
}
.al2-net-msg-input-row textarea {
  flex: 1; resize: none; padding: 9px 12px;
  border: 1px solid var(--al2-g200); border-radius: 8px;
  font-family: inherit; font-size: .8rem; line-height: 1.4;
}
.al2-net-msg-input-row textarea:focus { border-color: var(--al2-brand); outline: none; }

/* Overlap card */
.al2-net-overlap-row {
  display: flex; gap: 14px; align-items: center;
  padding: 14px; margin-bottom: 10px;
  border: 1px solid var(--al2-g200); border-radius: 10px;
  background: #fff;
}
.al2-net-overlap-count {
  background: linear-gradient(135deg, #ec4899, #8b5cf6); color: #fff;
  width: 50px; height: 50px; border-radius: 12px;
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1.1rem;
  font-family: var(--al2-font-mono, monospace);
  flex: 0 0 auto;
}
.al2-net-overlap-body { flex: 1; min-width: 0; }
.al2-net-overlap-status {
  font-size: .68rem; padding: 2px 8px; border-radius: 999px;
  font-weight: 700; display: inline-block; margin-top: 4px;
}
.al2-net-overlap-status.both { background: #dcfce7; color: #15803d; }
.al2-net-overlap-status.one { background: #fef3c7; color: #b45309; }
.al2-net-overlap-status.none { background: var(--al2-g100); color: var(--al2-g600); }

/* Lounge */
.al2-net-lounge-filter { display: flex; gap: 8px; flex-wrap: wrap; }
.al2-chip {
  padding: 7px 14px; background: #fff; color: var(--al2-g700);
  border: 1px solid var(--al2-g200); border-radius: 999px;
  font-size: .78rem; font-weight: 600; cursor: pointer; transition: all .12s;
  min-height: 32px;          /* Phase 3 standard */
  display: inline-flex; align-items: center;
  white-space: nowrap;
}
.al2-chip:hover { border-color: var(--al2-brand); transform: translateY(-1px); }
.al2-chip.on { background: var(--al2-brand); color: #fff; border-color: var(--al2-brand); }
@media (max-width: 900px) {
  .al2-chip { min-height: 36px; padding: 8px 16px; font-size: .82rem; }
}

.al2-net-lounge-post {
  border: 1px solid var(--al2-g200); border-radius: 10px;
  padding: 14px 16px; background: #fff; margin-bottom: 10px;
}
.al2-net-lounge-post .head {
  display: flex; gap: 8px; align-items: center; margin-bottom: 8px;
}
.al2-net-lounge-post .author {
  font-size: .76rem; font-weight: 700; color: var(--al2-g800);
}
.al2-net-lounge-post .author.anon { color: var(--al2-g500); font-style: italic; }
.al2-net-lounge-post .cat-tag {
  background: #ede9fe; color: #6d28d9;
  padding: 2px 8px; border-radius: 999px; font-size: .65rem; font-weight: 700;
}
.al2-net-lounge-post .ts {
  margin-left: auto; font-size: .68rem; color: var(--al2-g500);
}
.al2-net-lounge-post .body {
  font-size: .82rem; color: var(--al2-g800); line-height: 1.6;
  margin-bottom: 8px; white-space: pre-wrap;
}
.al2-net-lounge-post .footer {
  display: flex; gap: 8px; align-items: center;
  font-size: .72rem; color: var(--al2-g600);
}
.al2-net-lounge-post .footer button {
  background: transparent; border: 0; color: var(--al2-brand);
  font-size: .72rem; font-weight: 600; cursor: pointer;
  padding: 4px 8px; border-radius: 6px;
}
.al2-net-lounge-post .footer button:hover { background: var(--al2-brand-dim); }

/* v1618 린 MVP — 요청자 책임성(선정률) 배지 + 익명 기회 메타 칩 + 결과보고 */
.al2-rq-badge { font-size: .64rem; font-weight: 700; padding: 2px 8px; border-radius: 999px; white-space: nowrap; }
.al2-rq-badge.new  { background: #eef2ff; color: #4f46e5; }
.al2-rq-badge.good { background: #dcfce7; color: #15803d; }
.al2-rq-badge.mid  { background: #fef9c3; color: #854d0e; }
.al2-rq-badge.low  { background: #fee2e2; color: #b91c1c; }
/* 요청자 유형 배지(끝수요 구분) + 회사 비공개 (2026-06-21) */
.al2-rq-rtype { font-size: .64rem; font-weight: 800; padding: 2px 8px; border-radius: 999px; white-space: nowrap; }
.al2-rq-rtype.buyer { background: #ecfdf5; color: #047857; }
.al2-rq-rtype.rep   { background: #eff6ff; color: #1d4ed8; }
.al2-rq-hidden { font-size: .62rem; font-weight: 700; padding: 2px 7px; border-radius: 999px; white-space: nowrap; background: #f1f5f9; color: #64748b; }
.al2-meta-row { display: flex; gap: 6px; flex-wrap: wrap; margin: 4px 0 2px; }
.al2-meta-chip { font-size: .68rem; color: #475569; background: #f1f5f9; border: 1px solid #e2e8f0; padding: 2px 8px; border-radius: 999px; }
.al2-rq-out { background: #fff; border: 1px solid #cbd5e1; color: #475569; font-size: .68rem; font-weight: 700; cursor: pointer; padding: 3px 9px; border-radius: 6px; }
.al2-rq-out[data-outcome="awarded"] { border-color: #86efac; color: #15803d; }
.al2-rq-out:hover { background: #f8fafc; }

/* v1620 — 5허브 통합: 견적 요청 CTA + 허브 서브탭 */
.al2-sb-rfq-cta { display:flex; align-items:center; justify-content:center; gap:6px; width:auto; margin:2px 12px 12px; padding:10px; background:#6c3ae0; color:#fff; border:0; border-radius:10px; font-size:.86rem; font-weight:700; cursor:pointer; }
.al2-sb-rfq-cta:hover { background:#5b2bd0; }
.net-subtabs { display:flex; gap:6px; overflow-x:auto; padding:2px 0 12px; -webkit-overflow-scrolling:touch; scrollbar-width:none; }
.net-subtabs::-webkit-scrollbar { display:none; }
.net-subtab { flex:0 0 auto; background:#fff; border:1px solid #e2e8f0; color:#475569; font-size:.8rem; font-weight:600; padding:7px 14px; border-radius:999px; cursor:pointer; white-space:nowrap; }
.net-subtab.on { background:#6c3ae0; border-color:#6c3ae0; color:#fff; }

/* v1633 — 내 견적 요청 성과(ROI) 카드 */
.rfq-my-stats { display:flex; gap:8px; flex-wrap:wrap; margin-bottom:12px; }
.rfq-my-stats .rfq-stat { flex:1 1 0; min-width:80px; background:#faf8ff; border:1px solid #ede9fe; border-radius:10px; padding:10px 12px; text-align:center; }
.rfq-my-stats .rfq-stat .n { font-size:1.2rem; font-weight:800; color:#6c3ae0; line-height:1.1; }
.rfq-my-stats .rfq-stat .l { font-size:.66rem; color:#64748b; margin-top:2px; }

/* v1623 — 견적 요청 실명 공개: 요청자 프로필 링크 */
.al2-rq-profile { display:inline-flex; align-items:center; gap:3px; font-size:.66rem; font-weight:700; color:#6c3ae0; background:#f5f3ff; border:1px solid #e9d5ff; padding:1px 8px; border-radius:999px; text-decoration:none; white-space:nowrap; cursor:pointer; font-family:inherit; }
.al2-rq-profile:hover { background:#ede9fe; }

/* v1627 — 견적 요청 구조화 요구사항(점진 공개) */
.rfq-details { border:1px solid #e5e7eb; border-radius:10px; padding:8px 12px; margin-bottom:8px; background:#fafbfc; }
.rfq-details > summary { cursor:pointer; font-size:.8rem; font-weight:700; color:#475569; list-style:none; }
.rfq-details > summary::-webkit-details-marker { display:none; }
.rfq-details[open] > summary { margin-bottom:8px; }
.rfq-detail-grid { display:grid; grid-template-columns:1fr 1fr; gap:8px; }
.rfq-detail-grid .rfq-col-full { grid-column:1 / -1; }
.rfq-detail-grid label { display:block; font-size:.72rem; color:#64748b; margin-bottom:3px; }
@media (max-width:520px){ .rfq-detail-grid { grid-template-columns:1fr; } }

/* v1628 — 도입 희망 시기: 빠른 칩 + 캘린더 */
.rfq-when-chips { display:flex; flex-wrap:wrap; gap:6px; }
.rfq-when { flex:0 0 auto; background:#fff; border:1px solid #e2e8f0; color:#475569; font-size:.78rem; font-weight:600; padding:7px 12px; border-radius:999px; cursor:pointer; white-space:nowrap; }
.rfq-when:hover { background:#f8fafc; }
.rfq-when.on { background:#6c3ae0; border-color:#6c3ae0; color:#fff; }

/* SharedIT 벤치마킹 (2026-06-20) — 모드 선택·스테퍼·가이드칩·연락방식·신뢰배지 */
/* P0-2 모드 선택 세그먼트 */
.rfq-mode-seg { display:flex; gap:8px; margin-bottom:14px; }
.rfq-mode { flex:1; display:flex; flex-direction:column; align-items:center; gap:2px; background:#fff; border:1.5px solid #e2e8f0; border-radius:12px; padding:11px 8px; cursor:pointer; font-size:.86rem; font-weight:700; color:#334155; transition:all .12s; }
.rfq-mode i { font-size:1rem; color:#94a3b8; }
.rfq-mode .rfq-mode-sub { font-size:.66rem; font-weight:500; color:#94a3b8; }
.rfq-mode:hover { border-color:#c7b6f0; background:#faf8ff; }
.rfq-mode.on { border-color:#6c3ae0; background:#f5f1fe; color:#5b2bc4; box-shadow:0 0 0 3px rgba(108,58,224,.08); }
.rfq-mode.on i, .rfq-mode.on .rfq-mode-sub { color:#6c3ae0; }
/* P0-1 프로세스 스테퍼 */
.rfq-stepper { display:flex; align-items:center; gap:5px; flex-wrap:wrap; background:#faf8ff; border:1px solid #ede7fb; border-radius:10px; padding:9px 11px; margin-bottom:12px; }
.rfq-stepper .rfq-step { display:inline-flex; align-items:center; gap:5px; font-size:.7rem; font-weight:600; color:#94a3b8; white-space:nowrap; }
.rfq-stepper .rfq-step b { display:inline-flex; align-items:center; justify-content:center; width:16px; height:16px; border-radius:50%; background:#e2e8f0; color:#fff; font-size:.6rem; font-weight:800; }
.rfq-stepper .rfq-step.on { color:#6c3ae0; }
.rfq-stepper .rfq-step.on b { background:#6c3ae0; }
.rfq-stepper > i { font-size:.5rem; color:#cbd5e1; }
@media (max-width:520px){ .rfq-stepper .rfq-step { font-size:.64rem; } .rfq-stepper > i { display:none; } }
/* P1-4 작성 가이드 칩 */
.rfq-guide-chips { display:flex; flex-wrap:wrap; align-items:center; gap:6px; margin-top:7px; }
.rfq-guide-label { font-size:.7rem; font-weight:700; color:#94a3b8; }
.rfq-guide-chip { background:#f1f5f9; border:1px dashed #cbd5e1; color:#475569; font-size:.72rem; font-weight:600; padding:3px 10px; border-radius:999px; cursor:pointer; }
.rfq-guide-chip:hover { background:#eef2ff; border-color:#a5b4fc; color:#4338ca; }
/* P1-3 연락 방식 */
.rfq-contact-row { display:flex; align-items:center; gap:10px; flex-wrap:wrap; }
.rfq-contact-fixed { font-size:.8rem; font-weight:600; color:#475569; }
/* P2-6 무료·실명 신뢰 배지 */
.rfq-trust-badge { display:flex; align-items:center; gap:7px; background:linear-gradient(135deg,#ecfdf5,#f0fdfa); border:1px solid #a7f3d0; color:#047857; font-size:.76rem; font-weight:600; padding:8px 12px; border-radius:10px; margin:10px 0 12px; }
.rfq-trust-badge i { color:#10b981; }

/* Modal */
.al2-net-modal { position: fixed; inset: 0; z-index: 9999; display: flex; align-items: center; justify-content: center; padding: 20px; }
.al2-net-modal-overlay { position: absolute; inset: 0; background: rgba(15,23,42,.6); }
.al2-net-modal-card {
  position: relative; background: #fff; max-width: min(600px, 92vw); width: 100%;
  max-height: 88vh; overflow: hidden; border-radius: 14px;
  box-shadow: 0 20px 50px rgba(0,0,0,.25);
  display: flex; flex-direction: column;
}
.al2-net-modal-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 22px; border-bottom: 1px solid var(--al2-g100);
}
.al2-net-modal-head h3 {
  margin: 0; font-size: 1.05rem; font-weight: 800; color: var(--al2-g900);
  display: flex; gap: 8px; align-items: center;
}
.al2-net-modal-close {
  background: var(--al2-g100); color: var(--al2-g500); border: 0;
  width: 32px; height: 32px; border-radius: 8px; cursor: pointer;
}
.al2-net-modal-close:hover { background: var(--al2-g200); color: var(--al2-g800); }
.al2-net-modal-body { padding: 18px 22px; overflow-y: auto; flex: 1; }

/* Form (Phase 1+2 — 16px spacing + 그룹핑 + 필수 필드 표시) */
.al2-form-row { margin-bottom: 16px; }
.al2-form-row label {
  display: block; font-size: .82rem; font-weight: 700;     /* .76→.82 mobile readability */
  color: var(--al2-g800); margin-bottom: 6px;
}
@media (max-width: 900px) {
  .al2-form-row label { font-size: .86rem; }
}
/* Phase 2 — 필수 필드 빨간 별표 (HubSpot/Salesforce 표준) */
.al2-form-row label.required::after {
  content: '*';
  color: #dc2626;
  margin-left: 4px;
  font-weight: 800;
}
/* Phase 2 — 폼 섹션 그룹핑 (LinkedIn/HubSpot 패턴) */
.al2-form-section {
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--al2-g100);
}
.al2-form-section:last-of-type {
  margin-bottom: 16px;
  padding-bottom: 0;
  border-bottom: 0;
}
.al2-form-section-title {
  font-size: .92rem;
  font-weight: 700;
  color: var(--al2-g900);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}
/* Phase 2 — 명함 카메라/업로드 버튼 그룹 */
.al2-net-card-buttons {
  display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 6px;
}
.al2-card-btn {
  cursor: pointer;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 14px;       /* 더 큰 touch target */
  border: 1px solid;
  border-radius: 8px;
  font-size: .8rem;
  font-weight: 600;
  transition: transform .12s, box-shadow .12s;
  min-height: 40px;
}
.al2-card-btn:hover { transform: translateY(-1px); box-shadow: 0 2px 6px rgba(0,0,0,.08); }
@media (max-width: 900px) {
  .al2-card-btn { min-height: 44px; padding: 12px 16px; }
}
.al2-card-btn--camera { background: #f0fdf4; border-color: #bbf7d0; color: #15803d; }
.al2-card-btn--upload { background: #eff6ff; border-color: #bfdbfe; color: #1d4ed8; }
.al2-card-btn--back   { background: #fef3c7; border-color: #fde68a; color: #92400e; }
.al2-input {
  width: 100%; padding: 9px 12px; border: 1px solid var(--al2-g200);
  border-radius: 8px; font-size: .82rem; font-family: inherit; outline: none;
  transition: border-color .12s;
  box-sizing: border-box;
}
.al2-input:focus { border-color: var(--al2-brand); }
.al2-input-sm { padding: 6px 10px; font-size: .76rem; }
.al2-form-actions {
  display: flex; gap: 8px; justify-content: flex-end;
  padding-top: 8px; border-top: 1px solid var(--al2-g100);
  margin-top: 14px;
}
.al2-btn {
  padding: 8px 16px; border: 1px solid var(--al2-g200); background: #fff;
  border-radius: 8px; font-size: .82rem; font-weight: 600; cursor: pointer;
  transition: all .12s; display: inline-flex; align-items: center; gap: 6px;
  white-space: nowrap;             /* 2026-05-02: 버튼 텍스트 줄바뀜 방지 */
  flex-shrink: 0;                  /* flex 컨테이너 안에서 압축되지 않도록 */
}
.al2-btn:hover { border-color: var(--al2-brand); color: var(--al2-brand); }
.al2-btn-primary {
  background: var(--al2-brand); color: #fff; border-color: var(--al2-brand);
}
.al2-btn-primary:hover { background: var(--al2-brand-dark); color: #fff; }

.al2-net-toggle { display: flex; gap: 8px; align-items: center; font-weight: 600; cursor: pointer; }

.al2-tab-strip { display: flex; gap: 4px; margin-bottom: 12px; padding: 4px; background: var(--al2-g100); border-radius: 10px; width: fit-content; }
.al2-tab {
  background: transparent; border: 0; padding: 8px 16px;
  font-size: .8rem; font-weight: 600; color: var(--al2-g600);
  border-radius: 6px; cursor: pointer; transition: all .12s;
  display: inline-flex; gap: 6px; align-items: center;
}
.al2-tab.on { background: #fff; color: var(--al2-brand); box-shadow: 0 1px 3px rgba(0,0,0,.08); }
.al2-tab .cnt { font-size: .65rem; background: var(--al2-g200); padding: 1px 6px; border-radius: 8px; }
.al2-tab.on .cnt { background: var(--al2-brand-dim); color: var(--al2-brand); }

.al2-help { font-size: .72rem; color: var(--al2-g500); }

/* 2026-05-02 — Smart Private Network (Tier 1+3 통합) */
.al2-net-pc-card {
  border-left: 3px solid #94a3b8;
}
.al2-net-pc-channels {
  display: flex; flex-wrap: wrap; gap: 6px; margin-top: 8px;
}
.al2-net-pc-ch {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 4px 10px;
  background: #f8fafc; color: #475569;
  border: 1px solid #e2e8f0; border-radius: 999px;
  font-size: .72rem; text-decoration: none;
  transition: all .12s;
}
.al2-net-pc-ch:hover {
  background: #6c3ae0; color: #fff; border-color: #6c3ae0;
}
.al2-net-pc-ch i { font-size: .65rem; }

.al2-net-form-grid-2 {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
  align-items: start;          /* 2026-05-02: 자식 요소 상단 정렬 (label 길이 다를 때 input 위치 일치) */
  margin-bottom: 16px;         /* 인접 grid 또는 다음 form-row와 spacing */
}
.al2-net-form-grid-2:last-child { margin-bottom: 0; }
@media (max-width: 700px) {
  .al2-net-form-grid-2 { grid-template-columns: 1fr; gap: 16px; }
}

/* Activity Feed (Phase 3 — hover state added) */
.al2-net-feed-item {
  display: flex; gap: 12px;
  padding: 14px 16px; margin-bottom: 8px;
  background: #fff; border: 1px solid var(--al2-g200);
  border-radius: 10px;
  transition: background .12s, border-color .12s, transform .1s;
}
.al2-net-feed-item:hover {
  background: var(--al2-g50);
  border-color: var(--al2-g300);
  transform: translateY(-1px);
}

/* Phase 3 — 표준 빈 상태 (LinkedIn/Notion 패턴: 일러스트+카피+CTA) */
.al2-net-empty {
  text-align: center;
  padding: 40px 20px;
  background: linear-gradient(135deg, #f8fafc, #f1f5f9);
  border: 1px dashed var(--al2-g300);
  border-radius: 12px;
  margin: 20px 0;
}
.al2-net-empty-icon {
  font-size: 3rem;
  margin-bottom: 14px;
  opacity: .6;
}
.al2-net-empty-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--al2-g900);
  margin-bottom: 6px;
}
.al2-net-empty-desc {
  font-size: .82rem;
  color: var(--al2-g600);
  line-height: 1.5;
  margin-bottom: 16px;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}
.al2-net-empty-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  background: var(--al2-brand);
  color: #fff;
  border: 0;
  border-radius: 8px;
  font-size: .86rem;
  font-weight: 600;
  cursor: pointer;
  transition: background .12s, transform .1s;
  min-height: 40px;
}
.al2-net-empty-cta:hover {
  background: var(--al2-brand-dark);
  transform: translateY(-1px);
}
@media (max-width: 900px) {
  .al2-net-empty-cta { min-height: 44px; padding: 12px 24px; }
}
.al2-net-feed-icon {
  width: 36px; height: 36px; flex: 0 0 auto;
  background: #f1f5f9;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1rem;
}
.al2-net-feed-body { flex: 1; min-width: 0; }
.al2-net-feed-head {
  display: flex; gap: 6px; align-items: center;
  font-size: .82rem; flex-wrap: wrap;
}
.al2-net-feed-title {
  font-size: .9rem; font-weight: 700; color: var(--al2-g900);
  margin-top: 4px;
}
.al2-net-feed-body-text {
  font-size: .8rem; color: var(--al2-g700);
  line-height: 1.5; margin-top: 4px;
  white-space: pre-wrap;
}
.al2-net-feed-actions {
  display: flex; gap: 6px; margin-top: 8px;
}

/* 2026-05-02 — 인맥 Rolodex (B2B 명함집) */
.al2-net-rolodex-filter {
  display: flex; flex-wrap: wrap; gap: 8px;
  padding: 14px 20px;
  background: linear-gradient(180deg, var(--al2-g50), #fff);   /* 헤더와 본문 구분 */
  border-bottom: 1px solid var(--al2-g100);
}
@media (max-width: 900px) {
  .al2-net-rolodex-filter { padding: 12px 16px; gap: 8px; overflow-x: auto; flex-wrap: nowrap; -webkit-overflow-scrolling: touch; }
  .al2-net-rolodex-filter::-webkit-scrollbar { display: none; }
}
.al2-net-conn-card {
  border-left: 3px solid #10b981;
}
.al2-net-conn-note {
  margin-top: 6px;
  font-size: .72rem; color: var(--al2-g600);
  background: #fefce8; border: 1px dashed #fde68a;
  padding: 5px 8px; border-radius: 6px;
  line-height: 1.4;
}

/* 영업대표 초대 */
.al2-net-invite-intro {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 14px 16px; margin-bottom: 18px;
  background: linear-gradient(135deg, #faf5ff, #ede9fe);
  border: 1px solid #c4b5fd; border-radius: 10px;
}
.al2-net-invite-intro i { font-size: 1.2rem; flex: 0 0 auto; margin-top: 2px; }
.al2-net-invite-intro div { font-size: .82rem; color: #4c1d95; line-height: 1.6; }
.al2-net-invite-intro strong { color: #6d28d9; }

/* 보낸 초대 */
.al2-net-inv-row {
  display: flex; gap: 12px; align-items: center;
  padding: 12px 14px; margin-bottom: 8px;
  border: 1px solid var(--al2-g200);
  border-radius: 10px; background: #fff;
}
.al2-net-inv-row.al2-net-inv-pending { border-left: 3px solid #f59e0b; }
.al2-net-inv-row.al2-net-inv-accepted { border-left: 3px solid #10b981; opacity: .85; }
.al2-net-inv-row.al2-net-inv-expired { border-left: 3px solid #94a3b8; opacity: .6; }

/* P2 — 빈 상태 onboarding 카드 */
.al2-net-onboard {
  position: relative;
  margin: 0 0 16px;
  padding: 22px 26px;
  background: linear-gradient(135deg, #faf5ff 0%, #ede9fe 50%, #ddd6fe 100%);
  border: 1px solid #c4b5fd;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(139, 92, 246, .08);
  animation: al2-fadein .35s ease;
}
.al2-net-onboard-close {
  position: absolute; top: 14px; right: 14px;
  width: 28px; height: 28px;
  background: rgba(255, 255, 255, .7); border: 0; border-radius: 50%;
  color: #6d28d9; cursor: pointer; font-size: .82rem;
  transition: background .12s;
}
.al2-net-onboard-close:hover { background: #fff; }
.al2-net-onboard-head {
  display: flex; gap: 14px; align-items: flex-start; margin-bottom: 16px;
}
.al2-net-onboard-title {
  font-size: 1.05rem; font-weight: 800; color: #4c1d95; margin-bottom: 4px;
}
.al2-net-onboard-desc {
  font-size: .82rem; color: #6d28d9; line-height: 1.5;
}
.al2-net-onboard-steps {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
}
@media (max-width: 1000px) { .al2-net-onboard-steps { grid-template-columns: 1fr; } }
.al2-net-onboard-step {
  display: flex; gap: 12px;
  background: rgba(255, 255, 255, .8);
  padding: 14px 16px; border-radius: 12px;
}
.al2-net-onboard-step .step-num {
  width: 28px; height: 28px; flex: 0 0 auto;
  background: #8b5cf6; color: #fff;
  border-radius: 50%; font-weight: 800; font-size: .82rem;
  display: inline-flex; align-items: center; justify-content: center;
}
.al2-net-onboard-step .step-body { flex: 1; min-width: 0; }
.al2-net-onboard-step .step-title { font-size: .82rem; font-weight: 800; color: #1e1b4b; margin-bottom: 4px; }
.al2-net-onboard-step .step-desc { font-size: .72rem; color: #6d28d9; line-height: 1.5; margin-bottom: 8px; }
.al2-net-onboard-step .step-cta {
  display: inline-block;
  font-size: .74rem; font-weight: 700; color: #6d28d9;
  text-decoration: none;
  padding: 5px 11px; background: #fff;
  border: 1px solid #c4b5fd; border-radius: 999px;
  transition: all .12s;
}
.al2-net-onboard-step .step-cta:hover { background: #8b5cf6; color: #fff; border-color: #8b5cf6; }

/* Forward modal — rep list */
.al2-fwd-rep {
  display: flex; gap: 10px; align-items: center; padding: 10px;
  border: 1px solid var(--al2-g200); border-radius: 8px;
  margin-bottom: 6px; cursor: pointer; transition: all .12s;
}
.al2-fwd-rep:hover { border-color: var(--al2-brand); }
.al2-fwd-rep.selected { border-color: var(--al2-brand); background: #faf5ff; }
.al2-fwd-rep input[type="checkbox"] { margin: 0; flex: 0 0 auto; }

/* ═══════════════════ Phase 4: 모바일 Bottom Tab Strip (LinkedIn 패턴) ═══════════════════ */
.al2-net-bottombar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(8px);
  border-top: 1px solid var(--al2-g200);
  z-index: 90;
  padding: 6px 4px calc(6px + env(safe-area-inset-bottom));   /* iOS notch 대응 */
  box-shadow: 0 -4px 16px rgba(0, 0, 0, .04);
}
.al2-net-bottombar-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 8px 4px;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: .68rem;
  font-weight: 600;
  color: var(--al2-g600);
  position: relative;
  min-height: 52px;        /* WCAG 44px+ */
  border-radius: 8px;
  transition: background .12s, color .12s;
}
.al2-net-bottombar-btn i {
  font-size: 1.15rem;
}
.al2-net-bottombar-btn span {
  font-size: .68rem;
}
.al2-net-bottombar-btn:hover {
  background: var(--al2-g50);
}
.al2-net-bottombar-btn.on {
  color: var(--al2-brand);
  background: var(--al2-brand-dim);
}
.al2-net-bottombar-btn.on::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 32px;
  height: 3px;
  background: var(--al2-brand);
  border-radius: 0 0 3px 3px;
}
.al2-net-bottombar-badge {
  position: absolute;
  top: 4px;
  right: calc(50% - 18px);
  background: #dc2626;
  color: #fff;
  font-size: .58rem;
  font-weight: 800;
  padding: 1px 5px;
  border-radius: 8px;
  min-width: 16px;
  text-align: center;
  line-height: 1.4;
}

/* 데스크톱 (≥900px): bottom bar 숨김, 사이드바 사용 */
@media (max-width: 900px) {
  .al2-net-bottombar {
    display: flex;
  }
  /* 메인 콘텐츠가 bottom bar에 가리지 않도록 padding-bottom */
  .al2-main {
    padding-bottom: 84px;
  }
}

/* ── /deals 전용 UI ── */

/* v1648 — 내 현황 비공개 이전 링크 */
.al2-deal-mystatus-link {
  display: flex; align-items: center; gap: 10px; text-decoration: none;
  background: #faf5ff; border: 1px solid #e9d5ff; border-radius: var(--al2-radius-lg);
  padding: 11px 16px; margin: 0 0 16px; font-size: .8rem; color: var(--al2-g700);
}
.al2-deal-mystatus-link:hover { border-color: var(--al2-brand); background: #f5f0ff; }
.al2-deal-mystatus-link b { color: var(--al2-brand-dark); }

/* v1641 — 누적/대기 건수 히어로 */
.al2-deal-hero {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  background: linear-gradient(100deg, #f5f3ff, #eff6ff);
  border: 1px solid #ddd6fe; border-radius: var(--al2-radius-lg);
  padding: 14px 18px; margin: 0 0 16px;
}
.al2-deal-hero .dh-ic {
  width: 40px; height: 40px; border-radius: 10px; flex: 0 0 auto;
  display: flex; align-items: center; justify-content: center;
  background: #7c3aed; color: #fff; font-size: 1.05rem;
}
.al2-deal-hero .dh-txt { flex: 1 1 280px; min-width: 0; }
.al2-deal-hero .dh-t { font-weight: 800; color: var(--al2-g900); font-size: .96rem; line-height: 1.4; }
.al2-deal-hero .dh-t b { color: #7c3aed; font-family: var(--al2-font-mono, monospace); }
.al2-deal-hero .dh-s { font-size: .78rem; color: #047857; margin-top: 3px; line-height: 1.5; }
.al2-deal-hero .dh-s b { color: #047857; }
.al2-deal-hero .dh-cta {
  background: #7c3aed; color: #fff; border: none; border-radius: 9px;
  padding: 9px 16px; font-size: .82rem; font-weight: 700; cursor: pointer; white-space: nowrap;
}
.al2-deal-hero .dh-cta:hover { background: #6d28d9; }

/* v1641 — 피드 키워드 검색 + 내 분야 토글 */
.al2-deal-searchbar { display: flex; align-items: center; gap: 8px; margin: 0 0 12px; position: relative; }
.al2-deal-searchbar > i { position: absolute; left: 12px; color: var(--al2-g400); font-size: .82rem; pointer-events: none; }
.al2-deal-searchbar input {
  flex: 1; min-width: 0; padding: 9px 12px 9px 34px; border: 1px solid var(--al2-g200);
  border-radius: 9px; font-size: .84rem; font-family: inherit; background: #fff;
}
.al2-deal-searchbar input:focus { outline: none; border-color: var(--al2-brand); }
.al2-deal-myfield {
  background: #fff; border: 1px solid var(--al2-g200); color: var(--al2-g700);
  font-weight: 700; font-size: .78rem; padding: 9px 13px; border-radius: 9px; cursor: pointer; white-space: nowrap;
}
.al2-deal-myfield:hover { border-color: #b45309; color: #b45309; }
.al2-deal-myfield.on { background: #fffbeb; border-color: #f59e0b; color: #b45309; }

/* v1641 — '내 분야' 매칭 배지 (카드) */
.al2-deal-mine-tag {
  display: inline-flex; align-items: center; gap: 3px;
  background: #fef3c7; color: #b45309; font-size: .66rem; font-weight: 800;
  padding: 2px 8px; border-radius: 999px;
}

/* 무료 명시 배너 */
.al2-deal-free-banner {
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
  background: linear-gradient(100deg, #ecfdf5, #f0fdfa);
  border: 1px solid #a7f3d0; border-radius: var(--al2-radius-lg);
  padding: 14px 18px; margin: 0 0 18px;
}
.al2-deal-free-banner .bf-ico {
  width: 38px; height: 38px; border-radius: 10px; flex: 0 0 auto;
  display: flex; align-items: center; justify-content: center;
  background: #10b981; color: #fff; font-size: 1.05rem;
}
.al2-deal-free-banner .bf-txt { flex: 1 1 240px; min-width: 0; }
.al2-deal-free-banner .bf-t { font-weight: 800; color: #065f46; font-size: .94rem; }
.al2-deal-free-banner .bf-s { font-size: .78rem; color: #047857; margin-top: 2px; line-height: 1.5; }
.al2-deal-free-banner .bf-link {
  background: transparent; border: 1px solid #10b981; color: #047857;
  font-weight: 700; font-size: .78rem; padding: 8px 14px; border-radius: 8px;
  cursor: pointer; white-space: nowrap;
}
.al2-deal-free-banner .bf-link:hover { background: #10b981; color: #fff; }

/* SLA 마감 배지 */
.al2-deal-dday {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 2px 8px; border-radius: 999px; font-size: .68rem; font-weight: 700;
}
.al2-deal-dday.soon { background: #fef3c7; color: #b45309; }
.al2-deal-dday.urgent { background: #fee2e2; color: #b91c1c; }
.al2-deal-dday.normal { background: #eef2ff; color: #4338ca; }
.al2-deal-dday.expired { background: var(--al2-g100); color: var(--al2-g500); }

.al2-deal-extend-btn {
  background: #fff; border: 1px solid var(--al2-g200); color: var(--al2-g700);
  font-weight: 700; font-size: .72rem; padding: 5px 10px; border-radius: 7px; cursor: pointer;
}
.al2-deal-extend-btn:hover { border-color: var(--al2-brand); color: var(--al2-brand); }

/* ── 좌측 필터 패널 ── */
/* v1647 — 전역 nav와 디자인 일관성: 16px 좌우 리듬 + 라벨 톤 통일(.63rem 대문자 라벨 family) */
.al2-deal-filter-head { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.al2-deal-filter-reset {
  background: transparent; border: none; color: var(--al2-g400); cursor: pointer;
  font-size: .66rem; font-weight: 700; padding: 0; display: inline-flex; align-items: center; gap: 4px;
  text-transform: none; letter-spacing: 0;
}
.al2-deal-filter-reset:hover { color: var(--al2-brand); }
.al2-deal-facet { margin: 0 0 6px; }
/* 서브 라벨(상태·분야·지역): 섹션 라벨과 같은 family, 한 단계 약하게 */
.al2-deal-facet-label {
  /* 표준 al2-sb-section-label과 동일 토큰(.63rem·.08em) — 한 단계 하위라 상단 패딩만 약간 타이트 */
  font-size: .63rem; font-weight: 700; color: var(--al2-g400);
  text-transform: uppercase; letter-spacing: .08em; margin: 0; padding: 8px 16px 4px;
}
.al2-deal-facet-empty { font-size: .74rem; color: var(--al2-g400); padding: 4px 16px; }
.al2-deal-facet-row {
  /* 표준 al2-sb-item과 동일 세로 간격(8px) */
  display: flex; align-items: center; justify-content: space-between;
  padding: 8px 16px; cursor: pointer; transition: background .12s;
  border-left: 3px solid transparent;
}
.al2-deal-facet-row:hover { background: var(--al2-g50, #f9fafb); }
.al2-deal-facet-row .lbl {
  display: flex; align-items: center; gap: 8px; font-size: .8rem; color: var(--al2-g600);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.al2-deal-facet-row input[type=checkbox] { accent-color: var(--al2-brand); width: 14px; height: 14px; flex: 0 0 auto; }
.al2-deal-facet-row .cnt {
  font-size: .62rem; font-weight: 700; color: var(--al2-g500);
  background: var(--al2-g100); border-radius: 999px; padding: 1px 7px; flex: 0 0 auto;
  font-family: var(--al2-font-mono, monospace);
}
.al2-deal-facet-row.sel { border-left-color: var(--al2-brand); background: var(--al2-brand-light); }
.al2-deal-facet-row.sel .lbl { color: var(--al2-brand); font-weight: 600; }
.al2-deal-facet-row.sel .cnt { background: var(--al2-brand-dim); color: var(--al2-brand-dark); }
.al2-deal-facet-row.zero { opacity: .45; }
.al2-deal-facet-more {
  background: transparent; border: none; color: var(--al2-brand); cursor: pointer;
  font-size: .74rem; font-weight: 700; padding: 4px 16px; margin-top: 2px;
}

/* ── 결과 헤더 (건수 + 정렬 + 활성칩) ── */
.al2-deal-results-head { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin: 0 0 12px; }
.al2-deal-results-count { font-size: .86rem; font-weight: 800; color: var(--al2-g900); }
.al2-deal-results-count b { color: var(--al2-brand); }
.al2-deal-active-chips { display: flex; gap: 6px; flex-wrap: wrap; flex: 1 1 auto; }
.al2-deal-active-chip {
  display: inline-flex; align-items: center; gap: 5px; background: var(--al2-brand-dim);
  color: var(--al2-brand-dark); font-size: .72rem; font-weight: 700; padding: 3px 8px; border-radius: 999px;
}
.al2-deal-active-chip button { background: none; border: none; color: inherit; cursor: pointer; font-size: .8rem; line-height: 1; padding: 0; opacity: .7; }
.al2-deal-active-chip button:hover { opacity: 1; }
.al2-deal-sort { max-width: 180px; flex: 0 0 auto; }

/* ── 카드 아바타 + 상태 배지 ── */
.al2-net-lounge-post .head { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.al2-deal-avatar {
  width: 34px; height: 34px; border-radius: 50%; flex: 0 0 auto;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: .82rem; color: #fff; overflow: hidden;
}
.al2-deal-avatar img { width: 100%; height: 100%; object-fit: cover; }
.al2-deal-status {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 2px 9px; border-radius: 999px; font-size: .68rem; font-weight: 700;
}
.al2-deal-status.open { background: #eef2ff; color: #4338ca; }
.al2-deal-status.soon { background: #fef3c7; color: #b45309; }
.al2-deal-status.answered { background: #ecfdf5; color: #047857; }
.al2-deal-status.expired { background: var(--al2-g100); color: var(--al2-g500); }

/* 이용안내 모달 */
.al2-guide-tabs { display: flex; gap: 6px; margin: 0 0 16px; border-bottom: 1px solid var(--al2-g100); }
.al2-guide-tab {
  background: transparent; border: none; border-bottom: 2px solid transparent;
  padding: 9px 14px; font-weight: 700; font-size: .86rem; color: var(--al2-g500); cursor: pointer;
}
.al2-guide-tab.on { color: var(--al2-brand); border-bottom-color: var(--al2-brand); }
.al2-guide-pane { display: none; }
.al2-guide-pane.on { display: block; }
.al2-guide-steps { display: grid; gap: 14px; }
.al2-guide-col-h { font-weight: 800; color: var(--al2-g900); font-size: .9rem; margin: 4px 0 8px; display: flex; align-items: center; gap: 7px; }
.al2-guide-step { display: flex; gap: 12px; align-items: flex-start; }
.al2-guide-step .n {
  width: 26px; height: 26px; border-radius: 50%; flex: 0 0 auto;
  background: var(--al2-brand-dim); color: var(--al2-brand-dark);
  display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: .8rem;
}
.al2-guide-step .st-t { font-weight: 700; color: var(--al2-g900); font-size: .85rem; }
.al2-guide-step .st-d { font-size: .78rem; color: var(--al2-g600); margin-top: 2px; line-height: 1.55; }
.al2-faq-item { border: 1px solid var(--al2-g100); border-radius: 10px; margin-bottom: 8px; overflow: hidden; }
.al2-faq-q {
  width: 100%; text-align: left; background: #fff; border: none; cursor: pointer;
  padding: 13px 16px; font-weight: 700; font-size: .85rem; color: var(--al2-g900);
  display: flex; justify-content: space-between; align-items: center; gap: 10px;
}
.al2-faq-q:hover { background: var(--al2-g50, #f9fafb); }
.al2-faq-q .chev { transition: transform .2s; color: var(--al2-g400); }
.al2-faq-item.open .al2-faq-q .chev { transform: rotate(180deg); }
.al2-faq-a { display: none; padding: 0 16px 14px; font-size: .8rem; color: var(--al2-g600); line-height: 1.65; }
.al2-faq-item.open .al2-faq-a { display: block; }
