/* 전체 기본 세팅 
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Noto Sans KR', sans-serif;
}

:root {
    --bg-light: #F7FEEF;      /* 가장 연한 기본 배경색 
    --bg-card: #FFFFFF;
    --primary-light: #CBDDB5; /* 보조 스케일 
    --primary-main: #A8CA7E;  /* 테마 시그니처 메인 컬러 
    --primary-dark: #97B770;   /* 강조 스케일 
    --primary-deep: #608334;   /* 딥 포인트 / 텍스트 하이라이트 
    --text-main: #191f28;
    --text-sub: #4e5968;
    --border-color: #e5e8eb;
}

/* 윈도우 페이지용 파스텔 블루 테마 변수 재정의 
.theme-window {
    --bg-light: #F0F6FE;      /* 파스텔 블루 연한 배경색 
    --primary-light: #D2E3FC; /* 보조 스케일 블루 
    --primary-main: #8AB4F8;  /* 시그니처 메인 블루 
    --primary-dark: #669DF6;   /* 강조 스케일 블루 
    --primary-deep: #1A73E8;   /* 딥 블루 포인트 / 하이라이트 
}

body {
    background-color: var(--bg-light);
    color: var(--text-main);
}

/* 상단 네비게이션 바 (토스 스타일) 
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    border-bottom: 1px solid var(--border-color);
}

.logo {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-main);
    text-decoration: none;
}

.menu {
    display: flex;
    gap: 40px;
}

.menu-item {
    text-decoration: none;
    color: var(--text-sub);
    font-weight: 500;
    transition: color 0.2s, font-weight 0.2s;
}

.menu-item:hover, .menu-item.active {
    color: var(--primary-deep);
    font-weight: 600;
}

/* 메인 히어로 섹션 
.hero-container {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
}

.hero-text h1 {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-main);
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero-text h1 span {
    color: var(--primary-deep);
}

.hero-text p {
    font-size: 18px;
    color: var(--text-sub);
    margin-bottom: 40px;
}

.btn-main {
    padding: 16px 36px;
    background-color: var(--primary-deep);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}

.btn-main:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

/* 커리어/채용 리스트 레이아웃 
.note-container {
    max-width: 1060px;
    margin: 140px auto 60px auto;
    padding: 0 20px;
}

.note-header {
    margin-bottom: 40px;
    text-align: left;
}

.note-header h2 {
    font-size: 32px;
    color: var(--text-main);
    margin-bottom: 12px;
}

.note-header p {
    color: var(--text-sub);
    font-size: 16px;
}

/* 2단 그리드 배열 구조 
.note-content-layout {
    display: flex;
    gap: 40px;
}

.list-section {
    flex: 7;
}

.side-section {
    flex: 3;
}

/* 리스트 아이템 디자인 
.day-card {
    background: var(--bg-card);
    padding: 24px 30px;
    border-radius: 16px;
    margin-bottom: 16px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.02);
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s, box-shadow 0.2s;
    border: 1px solid transparent;
}

.day-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--primary-light);
}

.day-info h3 {
    font-size: 20px;
    color: var(--text-main);
    margin-bottom: 6px;
}

.day-info p {
    font-size: 14px;
    color: var(--text-sub);
}

.day-date {
    font-size: 15px;
    font-weight: 600;
    color: var(--primary-deep);
    background-color: var(--bg-light);
    padding: 6px 14px;
    border-radius: 30px;
}

/* 사이드 카드 
.side-card {
    background: var(--bg-card);
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.02);
    margin-bottom: 20px;
}

.side-card h4 {
    font-size: 16px;
    color: var(--text-main);
    margin-bottom: 14px;
    font-weight: 700;
}

/* 상세 설명 뷰어 레이아웃 
.detail-container {
    max-width: 800px;
    margin: 130px auto 60px auto;
    padding: 0 24px;
}

.detail-header-meta {
    font-size: 14px;
    color: var(--primary-deep);
    font-weight: 600;
    margin-bottom: 12px;
}

.detail-title {
    font-size: 40px;
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.3;
    margin-bottom: 30px;
}

.detail-body {
    background: var(--bg-card);
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.02);
    line-height: 1.8;
    font-size: 16px;
    color: #333d4b;
}

.detail-body h3 {
    font-size: 22px;
    color: var(--text-main);
    margin-top: 30px;
    margin-bottom: 12px;
    border-left: 4px solid var(--primary-main);
    padding-left: 12px;
}

.detail-body ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.detail-body li {
    margin-bottom: 8px;
}

@media (max-width: 768px) {
    .navbar { padding: 15px 20px; }
    .hero-text h1 { font-size: 38px; }
    .note-content-layout { flex-direction: column; }
} */

/* 상단 네비게이션 바 (토스 스타일 유지) */
/* [유지] 전체 기본 세팅 */

/* 전체 기본 세팅 */
/* 전체 기본 세팅 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Noto Sans KR', sans-serif;
}

:root {
    --bg-light: #F7FEEF;      /* 가장 연한 기본 배경색 */
    --bg-card: #FFFFFF;
    --primary-light: #CBDDB5; /* 보조 스케일 */
    --primary-main: #A8CA7E;  /* 테마 시그니처 메인 컬러 */
    --primary-dark: #97B770;   /* 강조 스케일 */
    --primary-deep: #608334;   /* 딥 포인트 / 텍스트 하이라이트 */
    --text-main: #191f28;
    --text-sub: #4e5968;
    --border-color: #e5e8eb;
}

/* 윈도우 페이지용 파스텔 블루 테마 변수 재정의 */
.theme-window {
    --bg-light: #F0F6FE;      /* 파스텔 블루 연한 배경색 */
    --primary-light: #D2E3FC; /* 보조 스케일 블루 */
    --primary-main: #8AB4F8;  /* 시그니처 메인 블루 */
    --primary-dark: #669DF6;   /* 강조 스케일 블루 */
    --primary-deep: #1A73E8;   /* 딥 블루 포인트 / 하이라이트 */
}

body {
    background-color: var(--bg-light);
    color: var(--text-main);
}

/* 상단 네비게이션 바 */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    border-bottom: 1px solid var(--border-color);
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
}

.logo {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-main);
    text-decoration: none;
}

/* 햄버거 버튼 스타일 */
.nav-toggle {
    background: transparent;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 6px 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s;
}

.nav-toggle:hover {
    background-color: var(--bg-light);
}

.hamburger-icon {
    font-size: 18px;
    color: var(--text-main);
    line-height: 1;
}

/* 햄버거 버튼 누르면 나오는 드롭다운 박스 */
.menu-dropdown-container {
    display: none;
    position: absolute;
    top: calc(100% + 16px);
    left: 0;
    background-color: var(--bg-card);
    min-width: 180px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    padding: 8px;
    flex-direction: column;
    gap: 4px;
    z-index: 1000;
}

/* active 클래스가 붙으면 메뉴가 보여짐 */
.menu-dropdown-container.active {
    display: flex;
}

.menu-item {
    text-decoration: none;
    color: var(--text-sub);
    font-weight: 500;
    padding: 10px 14px;
    border-radius: 8px;
    transition: background-color 0.2s, color 0.2s;
    font-size: 15px;
}

.menu-item:hover, .menu-item.active {
    background-color: var(--bg-light);
    color: var(--primary-deep);
    font-weight: 600;
}

/* 로그인 / 로그아웃 영역 */
.auth-area a {
    text-decoration: none;
    color: var(--text-sub);
    font-weight: 500;
    transition: color 0.2s;
}

.auth-area a:hover {
    color: var(--primary-deep);
}

.auth-area span {
    font-size: 14px;
    color: var(--text-main);
    margin-right: 10px;
}

/* 메인 히어로 섹션 (원본 100% 보존) */
.hero-container {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
}

.hero-text h1 {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-main);
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero-text h1 span {
    color: var(--primary-deep);
}

.hero-text p {
    font-size: 18px;
    color: var(--text-sub);
    margin-bottom: 40px;
}

.btn-main {
    padding: 16px 36px;
    background-color: var(--primary-deep);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}

.btn-main:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

/* 커리어/채용 리스트 레이아웃 */
.note-container {
    max-width: 1060px;
    margin: 140px auto 60px auto;
    padding: 0 20px;
}

.note-header {
    margin-bottom: 40px;
    text-align: left;
}

.note-header h2 {
    font-size: 32px;
    color: var(--text-main);
    margin-bottom: 12px;
}

.note-header p {
    color: var(--text-sub);
    font-size: 16px;
}

/* 2단 그리드 배열 구조 */
.note-content-layout {
    display: flex;
    gap: 40px;
}

.list-section {
    flex: 7;
}

.side-section {
    flex: 3;
}

/* 리스트 아이템 디자인 */
.day-card {
    background: var(--bg-card);
    padding: 24px 30px;
    border-radius: 16px;
    margin-bottom: 16px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.02);
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s, box-shadow 0.2s;
    border: 1px solid transparent;
}

.day-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--primary-light);
}

.day-info h3 {
    font-size: 20px;
    color: var(--text-main);
    margin-bottom: 6px;
}

.day-info p {
    font-size: 14px;
    color: var(--text-sub);
}

.day-date {
    font-size: 15px;
    font-weight: 600;
    color: var(--primary-deep);
    background-color: var(--bg-light);
    padding: 6px 14px;
    border-radius: 30px;
}

/* 사이드 카드 */
.side-card {
    background: var(--bg-card);
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.02);
    margin-bottom: 20px;
}

.side-card h4 {
    font-size: 16px;
    color: var(--text-main);
    margin-bottom: 14px;
    font-weight: 700;
}

/* 상세 설명 뷰어 레이아웃 */
.detail-container {
    max-width: 800px;
    margin: 130px auto 60px auto;
    padding: 0 24px;
}

.detail-header-meta {
    font-size: 14px;
    color: var(--primary-deep);
    font-weight: 600;
    margin-bottom: 12px;
}

.detail-title {
    font-size: 40px;
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.3;
    margin-bottom: 30px;
}

.detail-body {
    background: var(--bg-card);
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.02);
    line-height: 1.8;
    font-size: 16px;
    color: #333d4b;
}

.detail-body h3 {
    font-size: 22px;
    color: var(--text-main);
    margin-top: 30px;
    margin-bottom: 12px;
    border-left: 4px solid var(--primary-main);
    padding-left: 12px;
}

.detail-body ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.detail-body li {
    margin-bottom: 8px;
}

@media (max-width: 768px) {
    .navbar { padding: 15px 20px; }
    .hero-text h1 { font-size: 38px; }
    .note-content-layout { flex-direction: column; }
}}