/* ============================================
   CSS Variables - Northern Horizon Theme
   ============================================ */
:root {
    /* Primary Palette */
    --ige-deep-navy: #0A1628;
    --ige-navy-800: #0F1D32;
    --ige-navy-700: #162544;
    --ige-navy-600: #1E3156;

    /* Aurora Colors */
    --ige-aurora-blue: #3B82F6;
    --ige-aurora-cyan: #06B6D4;
    --ige-aurora-violet: #8B5CF6;

    /* Blue Shades */
    --ige-blue: #3B82F6;
    --ige-blue-dark: #2563EB;

    /* Accent Colors */
    --ige-maple-red: #EF4444;
    --ige-forest-green: #22C55E;
    --ige-gold: #F59E0B;
    --ige-orange: #F97316;

    /* Neutrals */
    --ige-snow: #F8FAFC;
    --ige-gray-100: #F1F5F9;
    --ige-gray-200: #E2E8F0;
    --ige-gray-300: #CBD5E1;
    --ige-gray-400: #94A3B8;
    --ige-gray-500: #64748B;
    --ige-gray-600: #475569;
    --ige-gray-700: #334155;
    --ige-gray-800: #1E293B;
    --ige-gray-900: #0F172A;

    /* Glass Effect */
    --glass-bg: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.12);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);

    /* Typography */
    --font-display: 'Plus Jakarta Sans', 'Pretendard Variable', sans-serif;
    --font-body: 'Pretendard Variable', -apple-system, sans-serif;

    /* Spacing */
    --section-padding: 100px 0;
    --container-width: 1320px;

    /* Transitions */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-2xl: 32px;
    --radius-full: 9999px;
}

/* ============================================
   Reset & Base
   ============================================ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--ige-gray-800);
    line-height: 1.6;
    background: var(--ige-snow);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* ============================================
   Utilities
   ============================================ */
.container.new-main-container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px !important;
}

.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

/* ============================================
   Header
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all var(--transition-base);
}

.header.scrolled {
    background: rgba(10, 22, 40, 0.95);
    backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    height: 44px;
    filter: brightness(0) invert(1);
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    font-weight: 500;
    transition: color var(--transition-fast);
}

.nav-link:hover {
    color: #fff;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.header-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 600;
    transition: all var(--transition-base);
}

.header-btn.outline {
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.header-btn.outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.header-btn.primary {
    background: var(--ige-aurora-blue);
    color: #fff;
}

.header-btn.primary:hover {
    background: #2563EB;
    transform: translateY(-2px);
}

.menu-toggle {
    display: none;
    color: #fff;
    padding: 8px;
}

/* ============================================
   Hero Section (통합 헤더 버전)
   ============================================ */
.hero-unified {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: linear-gradient(135deg, var(--ige-deep-navy) 0%, var(--ige-navy-700) 50%, #1a365d 100%);
/*    overflow: hidden;*/
}

/* 통합 다크 헤더 */
.unified-header {
    position: relative;
    z-index: 100;
    padding: 16px 0;
}

.unified-header .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.unified-header .header-logo {
    flex-shrink: 0;
}

.unified-header .header-logo img {
    height: 44px;
    width: auto;
/*    filter: brightness(10);*/
}

.unified-header .header-search {
    flex: 1;
    max-width: 500px;
}

.unified-header .search-field {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
}

.unified-header .search-field:focus-within {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
}

.unified-header .search-field .material-symbols-outlined {
    color: rgba(255, 255, 255, 0.6);
    font-size: 20px;
}

.unified-header .search-field input {
    flex: 1;
    border: none;
    background: transparent;
    color: #fff;
    font-size: 14px;
    outline: none;
}

.unified-header .search-field input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.unified-header .header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.unified-header .header-action {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 500;
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
}

.unified-header .header-action:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.unified-header .header-action .material-symbols-outlined {
    font-size: 22px;
}

.unified-header .header-action .action-text {
    display: inline;
}

/* 히어로 콘텐츠 영역 확장 */
.hero-unified .hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 40px;
    padding-bottom: 80px;
}

/* 반응형: 모바일 헤더 */
@media (max-width: 865px) {
    .unified-header .header-search {
        display: none;
    }

    .unified-header .header-action .action-text {
        display: none;
    }

    .unified-header .header-action {
        padding: 10px;
    }

    .unified-header .header-logo img {
        height: 36px;
    }
}

/* 기존 Hero Section (호환성 유지) */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--ige-deep-navy) 0%, var(--ige-navy-700) 50%, #1a365d 100%);
    overflow: hidden;
}

/* Animated Background */
.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background:
        radial-gradient(ellipse at 20% 20%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(6, 182, 212, 0.08) 0%, transparent 60%);
    animation: aurora 20s ease-in-out infinite;
}

@keyframes aurora {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(2%, 2%) rotate(1deg); }
    50% { transform: translate(-1%, 3%) rotate(-1deg); }
    75% { transform: translate(1%, -2%) rotate(0.5deg); }
}

/* Grid Pattern */
.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

/* Floating Particles */
.particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: float 15s infinite;
}

.particle:nth-child(1) { left: 10%; animation-delay: 0s; animation-duration: 20s; }
.particle:nth-child(2) { left: 20%; animation-delay: 2s; animation-duration: 18s; }
.particle:nth-child(3) { left: 30%; animation-delay: 4s; animation-duration: 22s; }
.particle:nth-child(4) { left: 40%; animation-delay: 1s; animation-duration: 17s; }
.particle:nth-child(5) { left: 50%; animation-delay: 3s; animation-duration: 19s; }
.particle:nth-child(6) { left: 60%; animation-delay: 5s; animation-duration: 21s; }
.particle:nth-child(7) { left: 70%; animation-delay: 2.5s; animation-duration: 16s; }
.particle:nth-child(8) { left: 80%; animation-delay: 1.5s; animation-duration: 23s; }
.particle:nth-child(9) { left: 90%; animation-delay: 4.5s; animation-duration: 18s; }

@keyframes float {
    0% { transform: translateY(100vh) scale(0); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-100vh) scale(1); opacity: 0; }
}

.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    padding: 140px 0 100px;
}

.hero-text {
    text-align: center;
    margin-bottom: 48px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-full);
    color: rgba(255, 255, 255, 0.9);
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.hero-badge .dot {
    width: 6px;
    height: 6px;
    background: var(--ige-forest-green);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(36px, 6vw, 64px);
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.hero-title .highlight {
    background: linear-gradient(135deg, var(--ige-aurora-blue), var(--ige-aurora-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-top: 32px;
}

.hero-stat {
    text-align: center;
	min-width:120px;
}

.hero-stat-value {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 800;
    color: #fff;
}

.hero-stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 4px;
}

/* Search Box - Glass Morphism */
.search-container {
    max-width: 800px;
    margin: 0 auto;
}

.search-box {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-2xl);
    padding: 24px;
    box-shadow: var(--glass-shadow);
	position:relative;
}

.search-box .toast-msg{
	display:none;
	position: absolute;
    top: 3px;
    left: 50%;
	margin-left:-135px;
    padding: 10px 30px;
    border-radius: 13px;
    background-color: rgb(255 255 255 / 90%);
    color: #3b82f6;
    z-index: 100;
    font-size: 15px;
    width: 270px;
}

/* Segmented Control */
.search-tabs {
    display: flex;
    gap: 4px;
    padding: 4px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: var(--radius-full);
    margin-bottom: 20px;
}

.search-tab {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: var(--radius-full);
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    font-weight: 600;
    transition: all var(--transition-base);
}

.search-tab:hover {
    color: #fff;
}

.search-tab.active {
    background: var(--ige-aurora-blue);
    color: #fff;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
}

.search-tab .material-symbols-outlined {
    font-size: 20px;
}

/* Search Input Group */
.search-input-group {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.search-select-wrap {
    position: relative;
    flex-shrink: 0;
}

.search-select {
    appearance: none;
    padding: 16px 44px 16px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-lg);
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-fast);
    min-width: 160px;
}

.search-select:hover,
.search-select:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--ige-aurora-blue);
    outline: none;
}

.search-select option {
    background: var(--ige-navy-700);
    color: #fff;
}

.search-select-wrap::after {
    content: '';
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid rgba(255, 255, 255, 0.6);
    pointer-events: none;
}

/* District Dropdown */
.district-select-wrap {
    position: relative;
    flex-shrink: 0;
    display: none;
}

.district-select-wrap.show {
    display: block;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from { opacity: 0; transform: translateX(-10px); }
    to { opacity: 1; transform: translateX(0); }
}

.district-select {
    appearance: none;
    padding: 16px 44px 16px 20px;
    background: rgba(59, 130, 246, 0.2);
    border: 1px solid rgba(59, 130, 246, 0.4);
    border-radius: var(--radius-lg);
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-fast);
    min-width: 200px;
}

.district-select:hover,
.district-select:focus {
    background: rgba(59, 130, 246, 0.3);
    border-color: var(--ige-aurora-blue);
    outline: none;
}

.district-select option {
    background: var(--ige-navy-700);
    color: #fff;
}

.district-select-wrap::after {
    content: '';
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid var(--ige-aurora-cyan);
    pointer-events: none;
}

.search-input-wrap {
    flex: 1;
    position: relative;
    min-width: 200px;
}

.search-input {
    width: 100%;
    padding: 16px 60px 16px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-lg);
    color: #fff;
    font-size: 16px;
    transition: all var(--transition-fast);
}

.search-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.search-input:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--ige-aurora-blue);
    outline: none;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}

.search-btn {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: var(--ige-aurora-blue);
    border-radius: var(--radius-md);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
}

.search-btn:hover {
    background: #2563EB;
    transform: translateY(-50%) scale(1.05);
}

/* Quick Tags */
.search-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
}

.search-tags-label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    font-weight: 500;
    margin-right: 4px;
}

.search-tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 8px 14px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
    font-weight: 500;
    transition: all var(--transition-fast);
    cursor: pointer;
}

.search-tag:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.2);
    color: #fff;
    transform: translateY(-2px);
}

.search-tag .material-symbols-outlined {
    font-size: 16px;
}

/* 사립학교 태그 - 구분되는 색상 */
.search-tag-private {
    background: rgba(147, 51, 234, 0.2);
    border-color: rgba(147, 51, 234, 0.4);
    color: rgba(192, 132, 252, 1);
}

.search-tag-private:hover {
    background: rgba(147, 51, 234, 0.35);
    border-color: rgba(147, 51, 234, 0.6);
    color: #e9d5ff;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
    animation: bounce 2s infinite;
    cursor: pointer;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* ============================================
   User Path Section - Expanded with Submenus
   ============================================ */
.user-path {
    padding: var(--section-padding);
    background: var(--ige-snow);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: var(--ige-aurora-blue);
    background: linear-gradient(135deg, var(--ige-aurora-blue), var(--ige-aurora-violet));
    border-radius: var(--radius-full);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 800;
    color: var(--ige-gray-900);
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}

.section-desc {
    font-size: 17px;
    color: var(--ige-gray-500);
    max-width: 600px;
    margin: 0 auto;
}

/* Expanded Path Grid */
.path-grid-expanded {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.path-card-expanded {
    background: #fff;
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--ige-new-main-gray-200);
    transition: all var(--transition-base);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.path-card-expanded:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: transparent;
}

.path-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px;
    background: linear-gradient(135deg, var(--ige-aurora-blue), var(--ige-aurora-violet));
}

.path-card-expanded:nth-child(2) .path-card-header {
    background: linear-gradient(135deg, var(--ige-maple-red), var(--ige-orange));
}

.path-card-expanded:nth-child(3) .path-card-header {
    background: linear-gradient(135deg, var(--ige-forest-green), var(--ige-aurora-cyan));
}

.path-header-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.path-icon {
    width: 52px;
    height: 52px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.path-icon .material-symbols-outlined {
    font-size: 28px;
}

.path-header-text h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 2px;
}

.path-header-text p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
}

.path-badge {
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 700;
    color: #fff;
}

/* Submenu List */
.path-submenu {
    flex: 1 1 auto;
    min-height: 0;         /* 내부 overflow 처리에 중요 */
    display: flex;
    flex-direction: column;
    padding: 8px 0;
}

.path-submenu-item {
    border-bottom: 1px solid var(--ige-gray-100);
}

.path-submenu-item:last-child {
    border-bottom: none;
}

.path-submenu-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    color: var(--ige-gray-700);
    font-size: 15px;
    font-weight: 500;
    transition: all var(--transition-fast);
}

.path-submenu-link:hover {
    background: var(--ige-gray-50);
    color: var(--ige-aurora-blue);
    padding-left: 28px;
}

.path-submenu-link .material-symbols-outlined {
    font-size: 18px;
    color: var(--ige-gray-400);
    transition: all var(--transition-fast);
}

.path-submenu-link:hover .material-symbols-outlined {
    color: var(--ige-aurora-blue);
    transform: translateX(4px);
}

.path-submenu-link.highlight {
    background: rgba(59, 130, 246, 0.05);
    color: var(--ige-aurora-blue);
    font-weight: 600;
}

.path-submenu-link.highlight::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--ige-aurora-blue);
}

.submenu-tag {
    padding: 3px 8px;
    background: var(--ige-maple-red);
    border-radius: var(--radius-sm);
    font-size: 10px;
    font-weight: 700;
    color: #fff;
    margin-left: 8px;
}

.submenu-tag.new {
    background: var(--ige-forest-green);
}

.submenu-tag.hot {
    background: var(--ige-orange);
}

/* View All Button */
.path-view-all {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 24px;
    background: var(--ige-gray-100);
    color: var(--ige-gray-700);
    font-size: 14px;
    font-weight: 600;
    transition: all var(--transition-base);
}

.path-view-all:hover {
    background: var(--ige-gray-900);
    color: #fff;
}

/* ============================================
   Popular Districts Section
   ============================================ */
.popular-districts {
    padding: var(--section-padding);
    background: linear-gradient(180deg, var(--ige-gray-100) 0%, var(--ige-snow) 100%);
}

.section-header-with-tabs {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 48px;
    flex-wrap: wrap;
    gap: 24px;
}

.section-header-left {
    text-align: left;
}

.section-header-left .section-title {
    margin-bottom: 8px;
}

.district-tabs {
    display: flex;
    gap: 8px;
    padding: 4px;
    background: #fff;
    border-radius: var(--radius-full);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.district-tab {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 600;
    color: var(--ige-gray-600);
    transition: all var(--transition-base);
}

.district-tab:hover {
    color: var(--ige-gray-900);
}

.district-tab.active {
    background: var(--ige-aurora-blue);
    color: #fff;
}

.district-tab .emoji {
    font-size: 18px;
}

/* Province Header */
.district-province-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    padding: 20px 24px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.district-province-header .province-flag {
    font-size: 40px;
}

.district-province-header .province-info h3 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 800;
    color: var(--ige-blue);
    margin: 0;
    letter-spacing: 1px;
}

.district-province-header .province-info p {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 4px 0 0;
}

/* District More Button */
.district-more-wrap {
    text-align: center;
    margin-bottom: 32px;
}

.btn-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: var(--ige-blue);
    color: #fff;
    border-radius: var(--radius-full);
    font-size: 15px;
    font-weight: 600;
    transition: all var(--transition-fast);
}

.btn-more:hover {
    background: var(--ige-blue-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
}

.btn-more .material-symbols-outlined {
    font-size: 18px;
    transition: transform var(--transition-fast);
}

.btn-more:hover .material-symbols-outlined {
    transform: translateX(4px);
}

.district-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.district-card {
    background: #fff;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all var(--transition-base);
}

.district-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.district-card-img {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.district-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.district-card:hover .district-card-img img {
    transform: scale(1.08);
}

.district-rank {
    position: absolute;
    top: 12px;
    left: 12px;
    width: 32px;
    height: 32px;
    background: var(--ige-gold);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 800;
    color: #fff;
}

.district-card-info {
    padding: 20px;
}

.district-province {
    display: inline-block;
    padding: 4px 10px;
    background: var(--ige-aurora-blue);
    border-radius: var(--radius-sm);
    font-size: 11px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.district-name {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--ige-gray-900);
    margin-bottom: 6px;
}

.district-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.district-count {
    font-size: 13px;
    font-weight: 600;
    color: var(--ige-aurora-blue);
}

.district-desc {
    font-size: 13px;
    color: var(--ige-gray-500);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.section-more-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 0 auto;
    padding: 16px 32px;
    background: var(--ige-gray-900);
    color: #fff;
    border-radius: var(--radius-full);
    font-size: 15px;
    font-weight: 600;
    transition: all var(--transition-base);
}

.section-more-btn:hover {
    background: var(--ige-aurora-blue);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.3);
}

/* ============================================
   IGE Difference Section
   ============================================ */
.ige-difference {
    position: relative;
    padding: 120px 0;
    background: var(--ige-deep-navy);
    overflow: hidden;
}

.ige-difference::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 0% 50%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 100% 50%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
}

.difference-content {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.difference-text .section-label {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.difference-text .section-title {
    color: #fff;
}

.difference-text .section-desc {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
}

.difference-list {
    list-style: none;
}

.diff-item {
    display: flex;
    gap: 20px;
    padding: 24px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.diff-item:last-child {
    border-bottom: none;
}

.diff-number {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--ige-aurora-blue), var(--ige-aurora-cyan));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 800;
    color: #fff;
}

.diff-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
}

.diff-content p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

/* CTA Box */
.cta-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-2xl);
    padding: 48px;
    backdrop-filter: blur(10px);
}

.cta-box-title {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
    text-align: center;
}

.cta-box-desc {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 32px;
    text-align: center;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}

.cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 28px;
    border-radius: var(--radius-full);
    font-size: 16px;
    font-weight: 600;
    transition: all var(--transition-base);
}

.cta-btn.primary {
    background: linear-gradient(135deg, var(--ige-maple-red), #DC2626);
    color: #fff;
}

.cta-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(239, 68, 68, 0.4);
}

.cta-btn.secondary {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
}

.cta-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.15);
}

.cta-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.cta-stat {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.cta-stat:hover {
    background: rgba(59, 130, 246, 0.2);
    transform: translateY(-4px);
}

.cta-stat-icon {
    font-size: 28px;
    color: var(--ige-aurora-cyan);
    margin-bottom: 8px;
}

.cta-stat-value {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 800;
    color: #fff;
}

.cta-stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

/* ============================================
   Recommend Schools Section
   ============================================ */
.recommend-schools {
    padding: var(--section-padding);
    background: var(--ige-snow);
}

.school-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.school-card {
    background: #fff;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all var(--transition-base);
}

.school-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.school-card-img {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.school-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.school-card:hover .school-card-img img {
    transform: scale(1.08);
}

.school-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 6px 12px;
    background: var(--ige-maple-red);
    border-radius: var(--radius-sm);
    font-size: 11px;
    font-weight: 700;
    color: #fff;
}

.school-card-info {
    padding: 16px;
}

.school-name {
    font-size: 15px;
    font-weight: 700;
    color: var(--ige-gray-900);
    margin-bottom: 8px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.school-location {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    color: var(--ige-gray-500);
}

.school-location .material-symbols-outlined {
    font-size: 16px;
}

/* ============================================
   Reviews Section
   ============================================ */
.reviews {
    padding: var(--section-padding);
    background: var(--ige-gray-100);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.review-card {
    background: #fff;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all var(--transition-base);
}

.review-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.1);
}

.review-card-img {
    aspect-ratio: 16/9;
    overflow: hidden;
}

.review-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.review-card:hover .review-card-img img {
    transform: scale(1.05);
}

.review-card-info {
    padding: 20px;
}

.review-category {
    display: inline-block;
    padding: 4px 10px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: var(--radius-sm);
    font-size: 12px;
    font-weight: 600;
    color: var(--ige-aurora-blue);
    margin-bottom: 12px;
}

.review-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--ige-gray-900);
    margin-bottom: 10px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.review-meta {
    font-size: 12px;
    color: var(--ige-gray-400);
}

/* ============================================
   CTA Section - ZOOM 설명회
   ============================================ */
.cta-section {
    padding: 70px 0;
    background: linear-gradient(135deg, var(--ige-deep-navy) 0%, var(--ige-navy-700) 50%, #1a365d 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 50%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.cta-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
    position: relative;
    z-index: 1;
    text-align: center;
}

.cta-desc {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    line-height: 1.7;
    letter-spacing: -0.02em;
}

.cta-desc strong {
    color: #60A5FA;
    font-weight: 700;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 40px;
    border-radius: var(--radius-full);
    font-size: 17px;
    font-weight: 600;
    transition: all var(--transition-base);
    text-decoration: none;
    white-space: nowrap;
}

.cta-btn .material-symbols-outlined {
    font-size: 22px;
}

.cta-btn-primary {
    background: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%);
    color: #fff;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.4);
}

.cta-btn-primary:hover {
    background: linear-gradient(135deg, #2563EB 0%, #1D4ED8 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.5);
    color: #fff;
}

@media (max-width: 640px) {
    .cta-desc {
        font-size: 15px;
    }

    .cta-btn {
        padding: 16px 32px;
        font-size: 15px;
    }
}

/* ============================================
   Community Section
   ============================================ */
.community {
    padding: var(--section-padding);
    background: var(--ige-snow);
}

.community-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.community-grid-2col {
    grid-template-columns: repeat(2, 1fr);
}

.community-box {
    background: #fff;
    border-radius: var(--radius-xl);
    padding: 28px;
    border: 1px solid var(--ige-gray-200);
}

.community-box-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 16px;
    margin-bottom: 16px;
    border-bottom: 2px solid var(--ige-gray-100);
}

.community-box-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 700;
    color: var(--ige-gray-900);
}

.community-box-title .material-symbols-outlined {
    font-size: 24px;
    color: var(--ige-aurora-blue);
}

.community-box-more {
    font-size: 14px;
    font-weight: 600;
    color: var(--ige-gray-500);
    transition: color var(--transition-fast);
}

.community-box-more:hover {
    color: var(--ige-aurora-blue);
}

.community-list {
    list-style: none;
}

.community-list li {
    padding: 14px 0;
    border-bottom: 1px solid var(--ige-gray-100);
}

.community-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.community-list a {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--ige-gray-700);
    font-size: 14px;
    line-height: 1.5;
    transition: color var(--transition-fast);
}

.community-list a:hover {
    color: var(--ige-aurora-blue);
}

.faq-badge {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    background: var(--ige-aurora-blue);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    color: #fff;
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: var(--ige-gray-900);
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    margin-bottom: 48px;
}

.footer-section h4 {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.8;
}

.footer-phone {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    color: var(--ige-aurora-blue);
    margin-bottom: 12px;
}

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 13px;
}

.footer-bottom p + p {
    margin-top: 12px;
    opacity: 0.6;
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 1280px) {
    .school-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    .district-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1024px) {
    .header-nav {
        display: none;
    }
    .menu-toggle {
        display: flex;
    }
    .path-grid-expanded {
        grid-template-columns: 1fr;
    }
    .school-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .district-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .difference-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .cta-box {
        max-width: 500px;
        margin: 0 auto;
    }
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .community-grid {
        grid-template-columns: 1fr;
    }
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .hero-stats {
        flex-direction: column;
        gap: 24px;
    }
    .search-input-group {
        flex-direction: column;
    }
    .search-select, .district-select {
        width: 100%;
    }
    .school-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .section-header-with-tabs {
        flex-direction: column;
        align-items: flex-start;
    }
    .district-grid {
        grid-template-columns: 1fr;
    }
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    .cta-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .school-grid {
        grid-template-columns: 1fr;
    }
    .search-tabs {
        flex-direction: column;
		border-radius: var(--radius-2xl);		
    }
    .hero-title {
        font-size: 28px;
    }
}

.seminar-btn{
	padding: 10px 30px 10px 10px;
}

.seminar-status{
	display:inline-block;
	width:50px;
	height:50px;
	line-height:50px;
	text-align:center;
	font-size:14px;
	background-color:#fff;
	color:#222;
	border-radius:50%;
	margin-right:10px;
}

/* 종료: 흐리게 + 애니메이션 제거 */
.seminar-status.status-off{
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.3);
    color: #fff;
    opacity: 0.7;
}

/* 진행중: 내부에서만 은은한 블루-그린 쉬머(확대/외부퍼짐 없음) */
.seminar-status.status-on{
    background: var(--ige-forest-green);
	color:#fff;
    animation: pulse-seminar 2s infinite;
}

@keyframes pulse-seminar {
    0%, 100% { opacity: 1; }
    30% { opacity: 0.5; }
}

/* ============================================
   [DEBUG:SEMINAR] Seminar Inline CTA - Aurora Glass
   Option 2: search-container 직후 배치
   ============================================ */
.seminar-inline-cta {
    max-width: 800px;
    margin: 36px auto 0;
    position: relative;
    z-index: 10;
    animation: seminarSlideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.6s both;
}

@keyframes seminarSlideUp {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: translateY(0); }
}

.seminar-inline-card {
    position: relative;
    padding: 22px 28px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

/* Aurora shimmer border */
.seminar-inline-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(
        135deg,
        rgba(59, 130, 246, 0.5) 0%,
        rgba(6, 182, 212, 0.4) 25%,
        rgba(139, 92, 246, 0.5) 50%,
        rgba(6, 182, 212, 0.4) 75%,
        rgba(59, 130, 246, 0.5) 100%
    );
    background-size: 400% 400%;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: auroraShimmer 8s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes auroraShimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Top edge glow */
.seminar-inline-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(96, 165, 250, 0.5), transparent);
    pointer-events: none;
}

.seminar-inline-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.seminar-inline-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.25), rgba(6, 182, 212, 0.15));
    border-radius: 10px;
    border: 1px solid rgba(59, 130, 246, 0.2);
    flex-shrink: 0;
}

.seminar-inline-icon .material-symbols-outlined {
    font-size: 20px;
    color: #60A5FA;
}

.seminar-inline-title {
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
}

.seminar-inline-title strong {
    color: #60A5FA;
    font-weight: 700;
}

.seminar-inline-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
    z-index: 1;
}

.seminar-inline-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    color: rgba(255, 255, 255, 0.95);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.seminar-inline-btn:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(59, 130, 246, 0.3);
    transform: translateX(4px);
    color: #fff;
}

.seminar-inline-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}

.seminar-inline-dot.status-on {
    background: #22C55E;
    box-shadow: 0 0 10px rgba(34, 197, 94, 0.5), 0 0 4px rgba(34, 197, 94, 0.8);
    animation: seminarDotPulse 2s ease-in-out infinite;
}

.seminar-inline-dot.status-off {
    background: rgba(255, 255, 255, 0.25);
}

.seminar-inline-dot.status-unknown {
    background: rgba(245, 158, 11, 0.6);
}

@keyframes seminarDotPulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 10px rgba(34, 197, 94, 0.5), 0 0 4px rgba(34, 197, 94, 0.8); }
    50% { opacity: 0.7; box-shadow: 0 0 6px rgba(34, 197, 94, 0.3), 0 0 2px rgba(34, 197, 94, 0.5); }
}

.seminar-inline-label {
    font-size: 11px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 6px;
    flex-shrink: 0;
    letter-spacing: 0.02em;
}

.seminar-inline-label.status-on {
    background: rgba(34, 197, 94, 0.15);
    color: #4ADE80;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.seminar-inline-label.status-off {
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.seminar-inline-label.status-unknown {
    background: rgba(245, 158, 11, 0.15);
    color: #FBBF24;
    border: 1px solid rgba(245, 158, 11, 0.2);
}

.seminar-inline-subject {
    flex: 1;
    min-width: 0;
}

/* Seminar Inline CTA - Responsive */
@media (max-width: 768px) {
    .seminar-inline-cta {
        margin: 24px 16px 0;
        max-width: none;
    }
    .seminar-inline-card {
        padding: 18px 16px;
    }
    .seminar-inline-header {
        margin-bottom: 14px;
    }
    .seminar-inline-btn {
        padding: 12px 14px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .seminar-inline-title {
        font-size: 13px;
    }
}
/* [DEBUG:SEMINAR] Seminar Inline CTA 스타일 끝 */

/* ============================================
   Featured Private Schools Section
   ============================================ */
.featured-private-schools {
    padding: var(--section-padding);
    background: var(--ige-snow);
}

.fps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.fps-card {
    background: #fff;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all var(--transition-base);
    display: block;
}

.fps-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.fps-card-img {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: var(--ige-gray-100);
}

.fps-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.fps-card:hover .fps-card-img img {
    transform: scale(1.08);
}

.fps-grade-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    font-size: 11px;
    font-weight: 700;
    color: #fff;
}

.fps-grade-badge.grade-elem {
    background: var(--ige-forest-green);
}

.fps-grade-badge.grade-sec {
    background: var(--ige-aurora-blue);
}

.fps-exclusive-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 6px 10px;
    background: rgba(139, 92, 246, 0.95);
    border-radius: var(--radius-sm);
    font-size: 11px;
    font-weight: 700;
    color: #fff;
}

.fps-exclusive-badge .material-symbols-outlined {
    font-size: 14px;
}

.fps-card-info {
    padding: 16px;
}

.fps-name {
    font-size: 15px;
    font-weight: 700;
    color: var(--ige-gray-900);
    margin-bottom: 8px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.fps-location {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    color: var(--ige-gray-500);
}

.fps-location .material-symbols-outlined {
    font-size: 16px;
}

.fps-viewall {
    text-align: center;
    margin-top: 32px;
}

.fps-viewall-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    background: var(--ige-gray-100);
    color: var(--ige-gray-700);
    border-radius: var(--radius-full);
    font-size: 15px;
    font-weight: 600;
    transition: all var(--transition-base);
}

.fps-viewall-btn:hover {
    background: var(--ige-gray-900);
    color: #fff;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 1280px) {
    .fps-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1024px) {
    .fps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .fps-grid {
        grid-template-columns: 1fr;
    }
}