@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Noto+Sans+SC:wght@400;500;600;700&display=swap');

.school-list-scope {
  
  --color-primary: #0D9488;
  --color-primary-hover: #0F766E;
  --color-primary-active: #115E59;
  --color-primary-light: #CCFBF1;
  --color-primary-lighter: #F0FDFA;
  --color-primary-dark: #134E4A;

  
  --color-accent: #F97316;
  --color-accent-hover: #EA580C;
  --color-accent-light: #FFEDD5;

  
  --color-bg: #FFFFFF;
  --color-surface: #FAFAF9;
  --color-surface-alt: #F5F5F4;
  --color-surface-hover: #F5F5F4;
  --color-surface-selected: #F0FDFA;
  --color-border: #E7E5E4;
  --color-border-strong: #D6D3D1;
  --color-text-primary: #1C1917;
  --color-text-secondary: #57534E;
  --color-text-tertiary: #78716C;
  --color-text-disabled: #A8A29E;
  --color-text-inverse: #FFFFFF;

  
  --color-success: #10B981;
  --color-success-light: #D1FAE5;
  --color-success-dark: #065F46;
  --color-warning: #F59E0B;
  --color-warning-light: #FEF3C7;
  --color-warning-dark: #92400E;
  --color-danger: #EF4444;
  --color-danger-light: #FEE2E2;
  --color-danger-dark: #991B1B;
  --color-info: #3B82F6;
  --color-info-light: #DBEAFE;
  --color-info-dark: #1E40AF;

  
  --color-sidebar-bg: #1C1917;
  --color-sidebar-surface: #292524;
  --color-sidebar-border: #44403C;
  --color-sidebar-text: #E7E5E4;
  --color-sidebar-text-muted: #A8A29E;
  --color-sidebar-text-disabled: #78716C;
  --color-sidebar-active-bg: #0D9488;
  --color-sidebar-active-text: #FFFFFF;
  --color-sidebar-hover-bg: rgba(255,255,255,0.06);
  --color-sidebar-group-label: #78716C;

  
  --color-topbar-bg: #FFFFFF;
  --color-topbar-border: #E7E5E4;

  
  --font-body: 'Noto Sans SC', -apple-system, BlinkMacSystemFont, 'Segoe UI',
               'PingFang SC', 'Microsoft YaHei', sans-serif;
  --font-heading: 'Noto Sans SC', -apple-system, BlinkMacSystemFont, 'Segoe UI',
                  'PingFang SC', 'Microsoft YaHei', sans-serif;
  --font-numeric: 'Inter', 'Noto Sans SC', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', 'SF Mono', Consolas, monospace;

  
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-full: 9999px;

  
  --space-3xs: 2px;
  --space-2xs: 4px;
  --space-xs: 8px;
  --space-sm: 12px;
  --space-md: 16px;
  --space-lg: 20px;
  --space-xl: 24px;
  --space-2xl: 32px;
  --space-3xl: 48px;

  
  --shadow-none: none;
  --shadow-xs: 0 1px 2px rgba(28, 25, 23, 0.04);
  --shadow-sm: 0 1px 3px rgba(28, 25, 23, 0.06), 0 1px 2px rgba(28, 25, 23, 0.04);
  --shadow-md: 0 4px 8px rgba(28, 25, 23, 0.06), 0 2px 4px rgba(28, 25, 23, 0.04);
  --shadow-lg: 0 8px 24px rgba(28, 25, 23, 0.08), 0 4px 8px rgba(28, 25, 23, 0.04);
  --shadow-xl: 0 16px 48px rgba(28, 25, 23, 0.10), 0 8px 16px rgba(28, 25, 23, 0.06);
  --shadow-2xl: 0 24px 64px rgba(28, 25, 23, 0.14);

  
  --sidebar-width: 240px;
  --sidebar-width-collapsed: 64px;
  --topbar-height: 56px;
  --content-max-width: 1440px;
  --content-padding: 24px;
  --drawer-width: 480px;

  
  --z-base: 0;
  --z-sticky-table: 1;
  --z-topbar: 150;
  --z-sidebar: 200;
  --z-dropdown: 300;
  --z-drawer: 310;
  --z-modal: 400;
  --z-command: 500;
  --z-toast: 600;
  --topbar-height: 64px;
}.school-list-scope * { margin: 0; padding: 0; box-sizing: border-box; }.school-list-scope {
  height: 100%;
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.5;
  color: var(--color-text-primary);
  background: var(--color-surface);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}.school-list-scope a { text-decoration: none; color: inherit; }.school-list-scope button { font-family: var(--font-body); }.school-list-scope img, .school-list-scope svg { display: block; }.school-list-scope .numeric {
  font-family: var(--font-numeric);
  font-variant-numeric: tabular-nums;
  font-feature-settings: 'tnum' 1, 'lnum' 1;
}.school-list-scope .btn-primary { display: inline-flex; align-items: center; gap: 6px; background: var(--color-primary); color: var(--color-text-inverse); border: none; border-radius: var(--radius-md); padding: 7px 16px; font-size: 13px; font-weight: 600; line-height: 1.4; cursor: pointer; transition: all 0.12s ease; white-space: nowrap; font-family: var(--font-body); }.school-list-scope .btn-primary:hover { background: var(--color-primary-hover); box-shadow: 0 2px 8px rgba(13, 148, 136, 0.2); }.school-list-scope .btn-primary:active { background: var(--color-primary-active); transform: translateY(1px); }.school-list-scope .btn-secondary { display: inline-flex; align-items: center; gap: 6px; background: var(--color-bg); color: var(--color-text-primary); border: 1px solid var(--color-border-strong); border-radius: var(--radius-md); padding: 7px 16px; font-size: 13px; font-weight: 500; line-height: 1.4; cursor: pointer; transition: all 0.12s ease; white-space: nowrap; font-family: var(--font-body); }.school-list-scope .btn-secondary:hover { border-color: var(--color-primary); color: var(--color-primary); background: var(--color-primary-lighter); }.school-list-scope .btn-ghost { display: inline-flex; align-items: center; gap: 6px; background: transparent; color: var(--color-text-secondary); border: none; border-radius: var(--radius-md); padding: 7px 12px; font-size: 13px; font-weight: 500; cursor: pointer; transition: all 0.12s ease; font-family: var(--font-body); }.school-list-scope .btn-ghost:hover { background: var(--color-surface); color: var(--color-text-primary); }.school-list-scope .btn-danger { display: inline-flex; align-items: center; gap: 6px; background: var(--color-danger); color: var(--color-text-inverse); border: none; border-radius: var(--radius-md); padding: 7px 16px; font-size: 13px; font-weight: 600; cursor: pointer; transition: all 0.12s ease; font-family: var(--font-body); }.school-list-scope .btn-danger:hover { background: #DC2626; box-shadow: 0 2px 8px rgba(239, 68, 68, 0.2); }.school-list-scope .btn-accent { display: inline-flex; align-items: center; gap: 6px; background: var(--color-accent); color: var(--color-text-inverse); border: none; border-radius: var(--radius-md); padding: 7px 16px; font-size: 13px; font-weight: 600; cursor: pointer; transition: all 0.12s ease; font-family: var(--font-body); }.school-list-scope .btn-accent:hover { background: var(--color-accent-hover); box-shadow: 0 2px 8px rgba(249, 115, 22, 0.25); }.school-list-scope .btn-icon { width: 32px; height: 32px; display: inline-flex; align-items: center; justify-content: center; background: transparent; color: var(--color-text-tertiary); border: none; border-radius: var(--radius-md); cursor: pointer; transition: all 0.12s ease; }.school-list-scope .btn-icon:hover { background: var(--color-surface); color: var(--color-text-primary); }.school-list-scope .btn-icon.danger:hover { color: var(--color-danger); background: var(--color-danger-light); }.school-list-scope .btn-icon.active { color: var(--color-accent); background: var(--color-accent-light); }.school-list-scope .btn-xs { padding: 4px 10px; font-size: 12px; }.school-list-scope .btn-sm { padding: 5px 12px; font-size: 12px; }.school-list-scope .btn-group { display: inline-flex; gap: 8px; align-items: center; }.school-list-scope .btn-block { width: 100%; justify-content: center; }.school-list-scope .dashboard-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 24px; }.school-list-scope .stat-card { background: var(--color-bg); border: 1px solid var(--color-border); border-radius: var(--radius-lg); padding: 20px; transition: border-color 0.12s ease; }.school-list-scope .stat-card:hover { border-color: var(--color-border-strong); }.school-list-scope .stat-card-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }.school-list-scope .stat-card-label { font-size: 13px; color: var(--color-text-secondary); font-weight: 500; }.school-list-scope .stat-card-icon { width: 36px; height: 36px; border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; background: var(--color-primary-lighter); color: var(--color-primary); }.school-list-scope .stat-card-icon.accent { background: var(--color-accent-light); color: var(--color-accent); }.school-list-scope .stat-card-icon.info { background: var(--color-info-light); color: var(--color-info); }.school-list-scope .stat-card-icon.success { background: var(--color-success-light); color: var(--color-success-dark); }.school-list-scope .stat-card-value { font-family: var(--font-numeric); font-size: 28px; font-weight: 700; font-variant-numeric: tabular-nums; color: var(--color-text-primary); line-height: 1.1; margin-bottom: 4px; letter-spacing: -0.02em; }.school-list-scope .stat-card-trend { display: flex; align-items: center; gap: 4px; font-size: 12px; }.school-list-scope .stat-card-trend.up { color: var(--color-success); }.school-list-scope .stat-card-trend.down { color: var(--color-danger); }.school-list-scope .stat-card-trend.neutral { color: var(--color-text-tertiary); }.school-list-scope .stat-card-trend .trend-label { color: var(--color-text-tertiary); margin-left: 2px; }.school-list-scope .panel { background: var(--color-bg); border: 1px solid var(--color-border); border-radius: var(--radius-lg); overflow: hidden; }.school-list-scope .panel-header { display: flex; align-items: center; justify-content: space-between; padding: 16px 20px; border-bottom: 1px solid var(--color-border); }.school-list-scope .panel-title { font-size: 15px; font-weight: 600; color: var(--color-text-primary); }.school-list-scope .panel-subtitle { font-size: 12px; color: var(--color-text-tertiary); margin-top: 2px; }.school-list-scope .panel-actions { display: flex; gap: 8px; }.school-list-scope .panel-body { padding: 0; }.school-list-scope .panel-body.padded { padding: 20px; }.school-list-scope .panel-footer { padding: 12px 20px; border-top: 1px solid var(--color-border); background: var(--color-surface); }.school-list-scope .pagination-info { color: var(--color-text-tertiary); }.school-list-scope .pagination-info .numeric { color: var(--color-text-secondary); font-weight: 500; }.school-list-scope .pagination-controls { display: flex; align-items: center; gap: 4px; }.school-list-scope .pagination-btn { min-width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; border: 1px solid var(--color-border); border-radius: var(--radius-md); font-size: 13px; color: var(--color-text-secondary); cursor: pointer; transition: all 0.12s ease; padding: 0 8px; background: var(--color-bg); font-family: var(--font-body); }.school-list-scope .pagination-btn:hover:not(:disabled) { border-color: var(--color-primary); color: var(--color-primary); }.school-list-scope .pagination-btn.active { background: var(--color-primary); border-color: var(--color-primary); color: var(--color-text-inverse); font-weight: 600; }.school-list-scope .pagination-btn:disabled { opacity: 0.4; cursor: not-allowed; }.school-list-scope .status-badge { display: inline-flex; align-items: center; gap: 6px; padding: 2px 10px; border-radius: var(--radius-full); font-size: 12px; font-weight: 500; line-height: 1.4; white-space: nowrap; }.school-list-scope .status-badge::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: currentColor; flex-shrink: 0; }.school-list-scope .status-success { background: #D1FAE5; color: #065F46; }.school-list-scope .status-warning { background: #FEF3C7; color: #92400E; }.school-list-scope .status-danger { background: #FEE2E2; color: #991B1B; }.school-list-scope .status-info { background: #DBEAFE; color: #1E40AF; }.school-list-scope .status-neutral { background: #F5F5F4; color: #44403C; }.school-list-scope .status-primary { background: #CCFBF1; color: #115E59; }.school-list-scope .school-badge { display: inline-flex; align-items: center; padding: 2px 8px; border-radius: var(--radius-sm); font-size: 12px; font-weight: 500; white-space: nowrap; }.school-list-scope .school-badge-zhigao { background: #EDE9FE; color: #5B21B6; }.school-list-scope .school-badge-zhongzhuan { background: #DBEAFE; color: #1E40AF; }.school-list-scope .school-badge-jigong { background: #FFEDD5; color: #9A3412; }.school-list-scope .school-badge-dazhuan { background: #CFFAFE; color: #155E75; }.school-list-scope .school-badge-benke { background: #CCFBF1; color: #115E59; }.school-list-scope .school-badge-fudu { background: #FCE7F3; color: #9D174D; }.school-list-scope .filter-bar { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; padding: 12px 16px; background: var(--color-bg); border: 1px solid var(--color-border); border-radius: var(--radius-lg); margin-bottom: 16px; }.school-list-scope .filter-input { height: 32px; padding: 0 10px; background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius-md); font-size: 13px; color: var(--color-text-primary); min-width: 200px; transition: all 0.12s ease; font-family: var(--font-body); }.school-list-scope .filter-input::placeholder { color: var(--color-text-tertiary); }.school-list-scope .filter-input:focus { outline: none; border-color: var(--color-primary); background: var(--color-bg); box-shadow: 0 0 0 2px rgba(13, 148, 136, 0.08); }.school-list-scope .filter-input.with-icon { padding-left: 32px; }.school-list-scope .filter-input-wrapper { position: relative; }.school-list-scope .filter-input-wrapper .filter-icon { position: absolute; left: 10px; top: 50%; transform: translateY(-50%); color: var(--color-text-tertiary); pointer-events: none; }.school-list-scope .filter-select { height: 32px; padding: 0 28px 0 10px; appearance: none; background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius-md); font-size: 13px; color: var(--color-text-primary); cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%2378716C' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-position: right 8px center; background-repeat: no-repeat; background-size: 14px; font-family: var(--font-body); }.school-list-scope .filter-select:focus { outline: none; border-color: var(--color-primary); box-shadow: 0 0 0 2px rgba(13, 148, 136, 0.08); }.school-list-scope .filter-clear { font-size: 12px; color: var(--color-text-tertiary); cursor: pointer; margin-left: auto; transition: color 0.12s; }.school-list-scope .filter-clear:hover { color: var(--color-danger); }.school-list-scope .filter-divider { width: 1px; height: 20px; background: var(--color-border); }.school-list-scope .tabs { display: flex; gap: 0; border-bottom: 1px solid var(--color-border); margin-bottom: 20px; }.school-list-scope .tab { padding: 10px 16px; font-size: 13px; font-weight: 500; color: var(--color-text-secondary); border-bottom: 2px solid transparent; cursor: pointer; transition: all 0.12s ease; white-space: nowrap; display: flex; align-items: center; gap: 6px; margin-bottom: -1px; }.school-list-scope .tab:hover { color: var(--color-text-primary); }.school-list-scope .tab.active { color: var(--color-primary); border-bottom-color: var(--color-primary); font-weight: 600; }.school-list-scope .tab-count { padding: 1px 7px; border-radius: var(--radius-full); font-size: 11px; font-weight: 600; font-family: var(--font-numeric); font-variant-numeric: tabular-nums; background: var(--color-surface-alt); color: var(--color-text-tertiary); }.school-list-scope .tab.active .tab-count { background: var(--color-primary-light); color: var(--color-primary-dark); }.school-list-scope .breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 13px; }.school-list-scope .breadcrumb-item { color: var(--color-text-tertiary); cursor: pointer; transition: color 0.12s ease; }.school-list-scope .breadcrumb-item:hover { color: var(--color-primary); }.school-list-scope .breadcrumb-item.current { color: var(--color-text-primary); font-weight: 500; }.school-list-scope .breadcrumb-separator { color: var(--color-text-tertiary); font-size: 12px; }.school-list-scope .empty-state { display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 48px 24px; text-align: center; }.school-list-scope .empty-state-icon { width: 64px; height: 64px; margin-bottom: 16px; color: var(--color-text-tertiary); opacity: 0.4; }.school-list-scope .empty-state-title { font-size: 15px; font-weight: 500; color: var(--color-text-secondary); margin-bottom: 4px; }.school-list-scope .empty-state-description { font-size: 13px; color: var(--color-text-tertiary); margin-bottom: 20px; max-width: 320px; }.school-list-scope .avatar-teal { background: #CCFBF1; color: #115E59; }.school-list-scope .avatar-blue { background: #DBEAFE; color: #1E40AF; }.school-list-scope .avatar-purple { background: #EDE9FE; color: #5B21B6; }.school-list-scope .avatar-orange { background: #FFEDD5; color: #9A3412; }.school-list-scope .avatar-pink { background: #FCE7F3; color: #9D174D; }.school-list-scope .avatar-cyan { background: #CFFAFE; color: #155E75; }.school-list-scope .info-card { display: flex; align-items: center; gap: 12px; }.school-list-scope .info-card-avatar { width: 40px; height: 40px; border-radius: var(--radius-md); flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 15px; font-weight: 600; }.school-list-scope .info-card-name { font-size: 14px; font-weight: 500; color: var(--color-text-primary); }.school-list-scope .info-card-meta { font-size: 12px; color: var(--color-text-tertiary); }.school-list-scope .tag { display: inline-flex; align-items: center; padding: 2px 8px; border-radius: var(--radius-sm); font-size: 11px; font-weight: 500; background: var(--color-surface-alt); color: var(--color-text-secondary); }.school-list-scope .tag-primary { background: var(--color-primary-light); color: var(--color-primary-dark); }.school-list-scope .tag-accent { background: var(--color-accent-light); color: var(--color-accent-hover); }.school-list-scope .text-secondary { color: var(--color-text-secondary); }.school-list-scope .text-tertiary { color: var(--color-text-tertiary); }.school-list-scope .text-success { color: var(--color-success); }.school-list-scope .text-danger { color: var(--color-danger); }.school-list-scope .text-primary { color: var(--color-primary); }.school-list-scope .mt-0 { margin-top: 0; }.school-list-scope .mb-0 { margin-bottom: 0; }.school-list-scope .mb-2 { margin-bottom: 8px; }.school-list-scope .mb-3 { margin-bottom: 12px; }.school-list-scope .mb-4 { margin-bottom: 16px; }.school-list-scope .mb-6 { margin-bottom: 24px; }.school-list-scope .flex { display: flex; }.school-list-scope .items-center { align-items: center; }.school-list-scope .justify-between { justify-content: space-between; }.school-list-scope .gap-2 { gap: 8px; }.school-list-scope .gap-3 { gap: 12px; }.school-list-scope .gap-4 { gap: 16px; }.school-list-scope .site-header { position: sticky; top: 0; z-index: var(--z-topbar); height: var(--topbar-height); background: var(--color-topbar-bg); border-bottom: 1px solid var(--color-topbar-border); }.school-list-scope .site-header-inner { max-width: var(--content-max-width); height: 100%; margin: 0 auto; padding: 0 var(--space-xl); display: flex; align-items: center; gap: var(--space-lg); }.school-list-scope .site-logo { display: inline-flex; align-items: center; gap: var(--space-xs); font-weight: 600; color: var(--color-text-primary); font-size: 15px; flex-shrink: 0; }.school-list-scope .site-logo .logo-mark { width: 28px; height: 28px; border-radius: var(--radius-md); background: var(--color-primary); color: var(--color-text-inverse); display: inline-flex; align-items: center; justify-content: center; }.school-list-scope .site-nav { display: flex; align-items: center; gap: var(--space-xs); }.school-list-scope .site-nav-link { padding: var(--space-xs) var(--space-sm); border-radius: var(--radius-md); font-size: 14px; color: var(--color-text-secondary); text-decoration: none; transition: all .12s ease; }.school-list-scope .site-nav-link:hover { background: var(--color-surface); color: var(--color-primary); }.school-list-scope .site-nav-link.active { color: var(--color-primary); font-weight: 600; }.school-list-scope .site-actions { margin-left: auto; display: flex; align-items: center; gap: var(--space-sm); }.school-list-scope .site-actions .btn-ghost { color: var(--color-text-secondary); }.school-list-scope .site-hamburger { display: none; }.school-list-scope .site-drawer-overlay { position: fixed; inset: 0; background: rgba(28, 25, 23, 0.3); z-index: var(--z-drawer); opacity: 0; pointer-events: none; transition: opacity .2s ease; }.school-list-scope .site-drawer-overlay.open { opacity: 1; pointer-events: auto; }.school-list-scope .site-drawer { position: fixed; top: 0; right: 0; bottom: 0; width: 300px; max-width: 82vw; background: var(--color-bg); z-index: var(--z-drawer); transform: translateX(100%); transition: transform .25s cubic-bezier(0.4, 0, 0.2, 1); display: flex; flex-direction: column; box-shadow: var(--shadow-2xl); }.school-list-scope .site-drawer.open { transform: translateX(0); }.school-list-scope .site-drawer-header { display: flex; align-items: center; justify-content: space-between; padding: var(--space-md) var(--space-lg); border-bottom: 1px solid var(--color-border); }.school-list-scope .site-drawer-nav { display: flex; flex-direction: column; gap: 4px; padding: var(--space-md); }.school-list-scope .site-drawer-link { padding: var(--space-sm) var(--space-md); border-radius: var(--radius-md); font-size: 14px; color: var(--color-text-secondary); }.school-list-scope .site-drawer-link:hover, .school-list-scope .site-drawer-link.active { background: var(--color-surface); color: var(--color-primary); }.school-list-scope .site-drawer-actions { margin-top: auto; padding: var(--space-md); display: flex; flex-direction: column; gap: var(--space-sm); border-top: 1px solid var(--color-border); }.school-list-scope .site-footer { width: 100%; background: var(--color-surface); border-top: 1px solid var(--color-border); padding: var(--space-3xl) 0 var(--space-xl); margin-top: var(--space-3xl); }.school-list-scope .site-footer-inner { max-width: var(--content-max-width); margin: 0 auto; padding: 0 var(--space-xl); display: grid; grid-template-columns: 1.5fr repeat(4, 1fr); gap: var(--space-2xl); }.school-list-scope .footer-brand .site-logo { margin-bottom: var(--space-sm); }.school-list-scope .footer-slogan { font-size: 13px; color: var(--color-text-tertiary); max-width: 280px; line-height: 1.6; }.school-list-scope .footer-col-title { font-size: 14px; font-weight: 600; color: var(--color-text-primary); margin-bottom: var(--space-sm); }.school-list-scope .footer-link { display: block; font-size: 13px; color: var(--color-text-secondary); text-decoration: none; padding: 4px 0; }.school-list-scope .footer-link:hover { color: var(--color-primary); }.school-list-scope .footer-bottom { max-width: var(--content-max-width); margin: var(--space-2xl) auto 0; padding: var(--space-lg) var(--space-xl) 0; border-top: 1px solid var(--color-border); display: flex; justify-content: space-between; gap: var(--space-md); font-size: 12px; color: var(--color-text-tertiary); flex-wrap: wrap; }.school-list-scope .school-card { display: flex; flex-direction: column; gap: var(--space-sm); background: var(--color-bg); border: 1px solid var(--color-border); border-radius: var(--radius-lg); padding: var(--space-lg); box-shadow: var(--shadow-sm); transition: box-shadow .15s ease, border-color .15s ease, transform .15s ease; }.school-list-scope .school-card--xl { border-radius: var(--radius-xl); }.school-list-scope .school-card:hover { box-shadow: var(--shadow-md); border-color: var(--color-border-strong); transform: translateY(-2px); }.school-list-scope .school-card-head { display: flex; align-items: flex-start; gap: var(--space-sm); }.school-list-scope .school-card-logo { width: 44px; height: 44px; border-radius: var(--radius-md); background: var(--color-primary-light); color: var(--color-primary-dark); display: inline-flex; align-items: center; justify-content: center; font-size: 16px; font-weight: 600; flex-shrink: 0; }.school-list-scope .school-card-body { flex: 1; min-width: 0; }.school-list-scope .school-card-name { font-size: 15px; font-weight: 600; color: var(--color-text-primary); line-height: 1.35; }.school-list-scope .school-card-meta { font-size: 13px; color: var(--color-text-tertiary); margin-top: 4px; display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }.school-list-scope .school-card-status { margin-top: 2px; }.school-list-scope .school-card-desc { font-size: 13px; color: var(--color-text-secondary); line-height: 1.6; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }.school-list-scope .school-card-stats { display: flex; gap: var(--space-lg); padding: var(--space-sm) 0; border-top: 1px solid var(--color-border); }.school-list-scope .school-card-stat { display: flex; flex-direction: column; gap: 2px; }.school-list-scope .school-card-stat .v { font-family: var(--font-numeric); font-size: 14px; font-weight: 700; color: var(--color-text-primary); }.school-list-scope .school-card-stat .k { font-size: 12px; color: var(--color-text-tertiary); }.school-list-scope .school-card-actions { display: flex; gap: var(--space-sm); margin-top: auto; }.school-list-scope .school-card-actions .btn { flex: 1; }.school-list-scope .alert { display: block; width: 100%; box-sizing: border-box; padding: var(--space-sm) var(--space-lg); border-radius: var(--radius-md); border: 1px solid transparent; font-size: 13px; line-height: 1.5; margin-bottom: var(--space-md); }.school-list-scope .alert-success { background: var(--color-success-light); border-color: var(--color-success); color: var(--color-success-dark); }.school-list-scope .alert-error { background: var(--color-danger-light);  border-color: var(--color-danger);  color: var(--color-danger-dark); }.school-list-scope .alert-warning { background: var(--color-warning-light); border-color: var(--color-warning); color: var(--color-warning-dark); }.school-list-scope .alert-info { background: var(--color-info-light);    border-color: var(--color-info);    color: var(--color-info-dark); }.school-list-scope .alert .alert-icon { margin-right: var(--space-xs); vertical-align: -2px; }.school-list-scope .checkbox { display: inline-flex; align-items: center; gap: var(--space-xs); cursor: pointer; font-size: 13px; color: var(--color-text-secondary); }.school-list-scope .checkbox input { width: 16px; height: 16px; margin: 0; accent-color: var(--color-primary); border: 1px solid var(--color-border-strong); border-radius: var(--radius-sm); cursor: pointer; }.school-list-scope .checkbox input:focus-visible { outline: none; box-shadow: 0 0 0 2px rgba(13, 148, 136, 0.08); }.school-list-scope .step-indicator { display: flex; align-items: center; }.school-list-scope .step { display: flex; flex-direction: column; align-items: center; gap: var(--space-2xs); }.school-list-scope .step-dot { width: 28px; height: 28px; border-radius: var(--radius-full); display: inline-flex; align-items: center; justify-content: center; font-family: var(--font-numeric); font-size: 13px; font-weight: 600; background: var(--color-surface-alt); color: var(--color-text-tertiary); border: 1px solid var(--color-border); }.school-list-scope .step.active .step-dot { background: var(--color-primary); color: var(--color-text-inverse); border-color: var(--color-primary); }.school-list-scope .step.active .step-label { color: var(--color-primary); font-weight: 600; }.school-list-scope .step.done .step-dot { background: var(--color-primary-light); color: var(--color-primary-dark); border-color: var(--color-primary-light); }.school-list-scope .step-line { flex: 1; height: 2px; background: var(--color-border); margin: 0 var(--space-sm); }.school-list-scope .step-line.done { background: var(--color-primary); }.school-list-scope .container { max-width: var(--content-max-width); margin: 0 auto; padding: 0 var(--space-xl); }.school-list-scope .page-head { padding: var(--space-2xl) 0 var(--space-md); }.school-list-scope .page-title { font-size: 24px; font-weight: 700; color: var(--color-text-primary); letter-spacing: -0.02em; }.school-list-scope .page-subtitle { font-size: 14px; color: var(--color-text-secondary); margin-top: var(--space-xs); }.school-list-scope .mobile-filter-btn { display: none; }.school-list-scope .list-layout { display: grid; grid-template-columns: 1fr; gap: var(--space-lg); padding-bottom: var(--space-3xl); }.school-list-scope .filter-panel { background: var(--color-bg); border: 1px solid var(--color-border); border-radius: var(--radius-lg); overflow: hidden; }.school-list-scope .filter-group { padding: var(--space-md) 0; border-bottom: 1px solid var(--color-border); }.school-list-scope .filter-group:first-child { padding-top: 0; }.school-list-scope .filter-group:last-child { border-bottom: none; padding-bottom: 0; }.school-list-scope .filter-group-title { font-size: 13px; font-weight: 600; color: var(--color-text-primary); margin-bottom: var(--space-sm); }.school-list-scope .filter-group .filter-select, .school-list-scope .filter-group .filter-input-wrapper { width: 100%; }.school-list-scope .filter-group .filter-input { width: 100%; }.school-list-scope .type-chips { display: flex; flex-wrap: wrap; gap: var(--space-xs); }.school-list-scope .type-chip { cursor: pointer; user-select: none; transition: opacity .12s; }.school-list-scope .type-chip input { position: absolute; opacity: 0; width: 0; height: 0; }.school-list-scope .type-chip:hover { opacity: 0.85; }.school-list-scope .type-chip:has(input:checked) { outline: 2px solid currentColor; outline-offset: 1px; }.school-list-scope .sort-bar { display: flex; align-items: center; justify-content: space-between; gap: var(--space-md); margin-bottom: var(--space-lg); flex-wrap: wrap; }.school-list-scope .sort-controls { display: flex; align-items: center; gap: var(--space-sm); }.school-list-scope .sort-label { font-size: 13px; color: var(--color-text-tertiary); }.school-list-scope .school-card-grid { display: grid; gap: var(--space-lg); grid-template-columns: 1fr; }.school-list-scope .pagination { display: flex; align-items: center; justify-content: center; gap: var(--space-xs); margin-top: var(--space-xl); flex-wrap: wrap; }.school-list-scope .pagination-ellipsis { color: var(--color-text-tertiary); padding: 0 4px; }.school-list-scope .filter-drawer-overlay { position: fixed; inset: 0; background: rgba(28, 25, 23, 0.3); z-index: var(--z-drawer); opacity: 0; pointer-events: none; transition: opacity .2s ease; }.school-list-scope .filter-drawer-overlay.open { opacity: 1; pointer-events: auto; }.school-list-scope .filter-drawer { position: fixed; top: 0; right: 0; bottom: 0; width: 320px; max-width: 86vw; background: var(--color-bg); z-index: var(--z-drawer); transform: translateX(100%); transition: transform .25s cubic-bezier(0.4, 0, 0.2, 1); display: flex; flex-direction: column; box-shadow: var(--shadow-2xl); }.school-list-scope .filter-drawer.open { transform: translateX(0); }.school-list-scope .filter-drawer-header { display: flex; align-items: center; justify-content: space-between; padding: var(--space-md) var(--space-lg); border-bottom: 1px solid var(--color-border); }.school-list-scope .filter-drawer-body { flex: 1; overflow-y: auto; padding: var(--space-lg); }.school-list-scope .filter-drawer-footer { display: flex; gap: var(--space-sm); padding: var(--space-md) var(--space-lg); border-top: 1px solid var(--color-border); }@media (max-width: 768px) {.school-list-scope .site-nav, .school-list-scope .site-actions .btn:not(.btn-accent) { display: none; }.school-list-scope .site-hamburger { display: inline-flex; }.school-list-scope .school-card-grid { grid-template-columns: 1fr; }.school-list-scope .site-footer-inner { grid-template-columns: 1fr 1fr; }.school-list-scope .mobile-filter-btn { display: inline-flex; }.school-list-scope .filter-panel { display: none; }.school-list-scope .page-title { font-size: 21px; }}@media (min-width: 768px) and (max-width: 1023px) {.school-list-scope .school-card-grid { grid-template-columns: repeat(2, 1fr); }.school-list-scope .site-footer-inner { grid-template-columns: 1.5fr repeat(2, 1fr); }}@media (min-width: 1024px) {.school-list-scope .school-card-grid { grid-template-columns: repeat(3, 1fr); }.school-list-scope .list-layout { grid-template-columns: 280px 1fr; align-items: start; }.school-list-scope .filter-panel { position: sticky; top: calc(var(--topbar-height) + var(--space-lg)); }.school-list-scope .site-footer-inner { grid-template-columns: 1.5fr repeat(4, 1fr); }}

/* === alignment patch: link-style filter/sort chips (no checkbox) === */
.school-list-scope .type-chip { text-decoration: none; cursor: pointer; }
.school-list-scope a.type-chip { color: inherit; }
.school-list-scope .type-chip.active { outline: 2px solid var(--color-primary); outline-offset: 1px; font-weight: 600; }
.school-list-scope .type-chip.active.school-badge { box-shadow: 0 0 0 1px var(--color-primary) inset; }
/* neutral chips for region & sort (no school-badge color) */
.school-list-scope .type-chip--neutral { background: var(--color-surface-alt); border: 1px solid var(--color-border); color: var(--color-text-secondary); }
.school-list-scope .type-chip--neutral:hover { background: var(--color-surface); }
.school-list-scope .type-chip--neutral.active { background: var(--color-primary-light); border-color: var(--color-primary); color: var(--color-primary-dark); outline: none; font-weight: 600; }

