/* 메인홈 허브 (home.html) */
.home-hub { margin-top: 0; }
.home-kpi-wrap { margin-bottom: 6px; }
.home-kpi-cards.cards {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}
@media (max-width: 1400px) {
  .home-kpi-cards.cards { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
  .home-kpi-cards.cards { grid-template-columns: repeat(2, 1fr); }
}
.home-kpi-card {
  text-decoration: none; color: inherit;
  transition: border-color .12s, box-shadow .12s;
}
.home-kpi-card:hover {
  border-color: #93c5fd;
  box-shadow: 0 2px 8px rgba(37, 99, 235, .08);
}
.home-kpi-card.home-kpi--danger b { color: #b91c1c; }
.home-kpi-sub {
  margin: 8px 0 0; font-size: 11px; font-weight: 700; color: #94a3b8;
}
.home-q-title {
  max-width: 420px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
  font-weight: 700;
}
.home-queue-row:hover { background: #f8fafc; }
.home-list {
  margin: 0; padding-left: 18px; font-size: 13px; line-height: 1.55; color: #334155;
}
.home-list a { color: #1d4ed8; font-weight: 700; text-decoration: none; }
.home-list a:hover { text-decoration: underline; }
.home-list li.is-unconfirmed {
  background: #fffbeb;
  margin-left: -8px;
  padding: 4px 8px;
  border-radius: 6px;
}
.home-time {
  display: inline-block; min-width: 72px; font-weight: 800; color: #64748b; font-size: 12px;
}
.home-muted { font-size: 12px; color: #94a3b8; font-weight: 700; }
.home-notice-counts { display:flex; gap:6px; flex-wrap:wrap; margin-bottom:6px; }
.home-n-badge { font-size:11px; font-weight:800; border-radius:99px; padding:2px 8px; }
.home-n-badge.unread { background:#fef3c7; color:#92400e; }
.home-n-badge.must { background:#fee2e2; color:#b91c1c; }
.home-n-tag { font-size:10px; font-weight:800; margin-left:4px; color:#64748b; }
.home-n-tag.must, .home-n-tag.unconf { color:#b91c1c; }
.home-n-tag.unread { color:#b45309; }
.home-n-tag.pin { color:#1d4ed8; }
.home-notice-pop {
  position:fixed; inset:0; z-index:80; background:rgba(15,23,42,.45);
  display:flex; align-items:center; justify-content:center; padding:16px;
}
.home-notice-pop-card {
  width:min(560px, 100%); max-height:80vh; overflow:auto; background:#fff;
  border-radius:12px; box-shadow:0 12px 40px rgba(15,23,42,.2);
}
.home-notice-pop-head {
  display:flex; justify-content:space-between; align-items:center;
  padding:12px 16px; border-bottom:1px solid #e2e8f0; font-weight:900;
}
.home-notice-pop-body { padding:14px 16px; }
.home-notice-pop-body h3 { margin:0 0 8px; font-size:16px; }
.home-notice-pop-html { font-size:13px; line-height:1.65; color:#334155; }
.home-notice-pop-foot {
  display:flex; justify-content:flex-end; gap:8px; padding:12px 16px;
  border-top:1px solid #e2e8f0;
}
.home-shortcuts {
  display: flex; flex-wrap: wrap; gap: 6px; margin-top: 10px;
}
.home-meta {
  margin-top: 12px; font-size: 11px; font-weight: 700; color: #94a3b8;
}
.btn-sm { font-size: 11px; padding: 4px 10px; }
