/* ============================================================
   1hour (원아워) — Base CSS component primitives
   Utility classes referenced by cards and quick markup. React
   components live in components/ — these mirror their look for
   plain-HTML use.
   ============================================================ */

/* ---------- Badges ---------- */
.badge-best {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--ink);
  color: #fff;
  font-family: var(--font-kr);
  font-size: 12px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: var(--r-pill);
  letter-spacing: 0.02em;
}
.badge-mint {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--primary);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: var(--r-pill);
}

/* ---------- Signature affordances ---------- */
.check-icon {
  width: 22px; height: 22px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  flex-shrink: 0;
}
.dash-muted { color: var(--text-3); font-weight: 500; }

.grad-bar {
  height: 4px;
  background: var(--grad-mint-cyan);
  border-radius: 2px 2px 0 0;
}

/* ---------- Cards ---------- */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
}
.card-dark {
  background: var(--ink);
  color: var(--text-on-dark);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
}

/* ---------- Buttons ---------- */
.btn {
  font-family: var(--font-kr);
  font-weight: 700;
  font-size: 15px;
  padding: 12px 22px;
  border-radius: var(--r-pill);
  border: 1px solid var(--border-strong);
  background: #fff;
  color: var(--text-1);
  cursor: pointer;
  transition: transform .12s ease, background .12s ease, border-color .12s ease, box-shadow .12s ease;
}
.btn:hover  { background: var(--gray-01); border-color: var(--text-3); }
.btn:active { transform: scale(0.98); }

.btn-primary {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  box-shadow: var(--shadow-mint);
}
.btn-primary:hover { background: var(--primary-hover); border-color: var(--primary-hover); }

.btn-dark {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.btn-dark:hover { background: var(--gray-09); }

/* ---------- Footnote / notes row ---------- */
.notes {
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
  font-size: 12px;
  color: var(--text-2);
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.notes b { color: var(--text-1); font-weight: 700; }

.row-divider { border-top: 1px solid var(--border); }
