/* JBCHUSA CMS custom styles */
* { -webkit-tap-highlight-color: transparent; }
body { font-family: 'Pretendard', system-ui, -apple-system, 'Apple SD Gothic Neo', 'Malgun Gothic', sans-serif; }

.fade-in { animation: fadeIn .25s ease; }
@keyframes fadeIn { from { opacity:0; transform: translateY(6px);} to {opacity:1; transform:none;} }

.spin { animation: spin 1s linear infinite; }
@keyframes spin { to { transform: rotate(360deg);} }

/* scrollbar */
::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 4px; }
::-webkit-scrollbar-track { background: transparent; }

.nav-link.active { background: rgba(255,255,255,.15); color:#fff; }
.nav-link.active i { color:#fff; }

.card { background:#fff; border:1px solid #e2e8f0; border-radius:14px; }

.badge { display:inline-flex; align-items:center; padding:2px 8px; border-radius:999px; font-size:11px; font-weight:600; }

/* line clamp */
.clamp-1 { display:-webkit-box; -webkit-line-clamp:1; -webkit-box-orient:vertical; overflow:hidden; }

input:focus, select:focus, textarea:focus { outline: none; }

/* avatar gradient placeholder */
.avatar-ph { background: linear-gradient(135deg,#1e6fd9,#0a2c5c); color:#fff; }
