@charset "UTF-8";
:root { color-scheme: light; }
body { font-family: "Pretendard", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif; word-break: keep-all; }
.hover-transition { transition: all 0.2s ease-in-out; }

/* Dropdown: hover + focus-within (키보드 접근성) */
/**
.dropdown-content { display: none; animation: fadeIn 0.18s ease-out; }
.dropdown-group:hover .dropdown-content,
.dropdown-group:focus-within .dropdown-content { display: block; }
*/
@keyframes fadeIn { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: translateY(0); } }

/* Search focus */
.search-input:focus { border-color: #1866E1; box-shadow: 0 0 0 2px rgba(24,102,225,0.15); }

/* Material symbols baseline fix */
.material-symbols-outlined { line-height: 1; vertical-align: middle; }

/* Mobile menu animation */
.mobile-panel { display: none; }
.mobile-panel[data-open="true"] { display: block; }
