@charset "UTF-8";

@font-face {
    font-family: 'NanumBareunGothicOldHangeul';
    src: url(https://hangeul.pstatic.net/hangeul_static/webfont/NanumBarunGothicYetHangul/NanumBarunGothic-YetHangul.eot);
    src: url(https://hangeul.pstatic.net/hangeul_static/webfont/NanumBarunGothicYetHangul/NanumBarunGothic-YetHangul.eot?#iefix) format("embedded-opentype"), url(https://hangeul.pstatic.net/hangeul_static/webfont/NanumBarunGothicYetHangul/NanumBarunGothic-YetHangul.woff2) format("woff2"), url(https://hangeul.pstatic.net/hangeul_static/webfont/NanumBarunGothicYetHangul/NanumBarunGothic-YetHangul.woff) format("woff"), url(https://hangeul.pstatic.net/hangeul_static/webfont/NanumBarunGothicYetHangul/NanumBarunGothic-YetHangul.ttf) format("truetype");
}

/* =================================================================
   1. 전역 변수 및 기본 초기화 (Reset & 디자인 가이드)
   ================================================================= */
:root {
	--primary-color: #e6007e;
	/* 노조 핵심 상징 및 CTA 유도용 강렬한 핫핑크 */
	--secondary-color: #1a4f95;
	/* 신뢰감을 주는 딥 블루 */
	--text-white: #ffffff;
	/* 글자색 화이트 */
	--text-light: #dddddd;
	/* 어두운 배경에 밝은 텍스트 */
	--text-dark: #0f172a;
	/* 메인 텍스트 다크 챠콜 */
	--text-gray: #4a4a4a;
	/* 메인 텍스트 그레이 */
	--text-gray: #707070;
	/* 메인 텍스트 라이트그레이 */
	--text-muted: #64748B;
	/* 부가 설명 및 캡션용 그레이 */
	--bg-light: #fafcfe;
	/* 서브 섹션 및 리스트 배경 연회색 */
	--bg-blue: #f2f5f8;
	/* 테이블 헤더 등 */
	--border-color: #e2e8f0;
	/* 기본 가로 실선 경계 레이어 색상 */
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

/* main.css 상단 부분 수정 */
body {
	font-family: 'NanumBareunGothicOldHangeul', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif !important;
	word-break: keep-all;
	/* 한글 가독성을 높이기 위해 어절 단위 줄바꿈 적용 */
	color: var(--text-dark);
	background-color: var(--bg-light);
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	display: flex;
	flex-direction: column;
	min-height: 100vh;
	/* 화면 전체 높이를 최소한으로 설정 */
	margin: 0;
}

/* 본문(main)이 남은 공간을 전부 차지하게 설정 */
main {
	flex: 1;
}

ul,
ol {
	list-style: none;
}

a {
	color: inherit;
	font-weight: 500;
	text-decoration: none;
}

img {
	max-width: 100%;
	height: auto;
}

textarea {
	font-family: inherit;
	background-color: var(--bg-light);
}

select {
	background-color: var(--bg-light);
}

input {
	background-color: var(--bg-light);
}

th {
	background-color: var(--bg-blue);
}

.container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0;
}

.fa-solid {
	margin-right: 6px;
}

/* =================================================================
   1-2. 공통 최상단 헤더 영역 (Site Header Component)
   ================================================================= */
/* 헤더 기본 스타일 (모바일 기준) */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    transition: all 0.3s ease; /* 부드러운 애니메이션 전환 효과 */
}

.site-header .header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 10px 5px 10px;
    transition: padding 0.3s ease;
}

/* 로고 영역 기본 */
.logo-area {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-combine-link {
	display: flex;
	align-items: center;
	flex-direction: row;
	gap: 6px;
}

.site-logo-img {
    height: 40px; /* 평소 로고 크기 */
	margin-right: 6px;
    transition: height 0.3s ease;
}

.logo-main-title {
    font-size: 18px;
	color: var(--secondary-color);
    transition: opacity 0.2s ease;
}

.utility-menu {
	display: flex;
	align-items: center;
	flex-direction: row-reverse;
}

.utility-menu-myinfo {
	display: flex;
	align-items: center;
	flex-direction: row;
}

.utility-menu .util-link {
	font-size: 13px;
	color: var(--text-muted);
	font-weight: 500;
}

.utility-menu .util-link:hover {
	color: var(--text-dark);
}

.utility-menu .user-welcome {
	font-size: 13px;
	color: var(--text-dark);
}

.utility-menu .user-welcome i {
	color: #10B981;
	margin-right: 3px;
}

.utility-menu .utility-splitter {
	color: #E2E8F0;
	margin: 0 10px;
	font-size: 11px;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.utility-menu .btn-join-highlight {
	background-color: var(--primary-color);
	color: #ffffff;
	padding: 7px 14px;
	font-size: 12px;
	font-weight: 700;
	border-radius: 4px;
	margin-left: 15px;
	transition: background-color 0.2s ease;
}

.utility-menu .btn-join-highlight:hover {
	background-color: #D40074;
}

/* =================================================================
   2. 메인 내비게이션 바 (GNB Navbar - 드롭다운 서브메뉴 내장형)
   ================================================================= */
.main-navbar {
	background-color: var(--bg-light);
	border-bottom: 1px solid var(--border-color);
	position: sticky;
	top: 0;
	z-index: 1000;
}

.nav-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
	height: 60px;
}

.nav-menu {
	display: flex;
	flex-direction: row;
	align-items: center;
	width: 100%;
	justify-content: flex-start;
}

.nav-home-logo {
	display: flex;
	align-items: center;
	margin-right: 25px;
}

.gnb-home-icon {
	height: 28px;
	width: auto;
	display: block;
	object-fit: contain;
}

.nav-item-has-children {
	position: relative;
}

.nav-item-has-children .main-menu-title {
	display: flex;
	align-items: center;
	padding: 18px 24px;
	font-size: 16px;
	font-weight: 700;
	color: var(--text-dark);
	white-space: nowrap;
	gap: 6px;
	cursor: pointer;
}

.menu-arrow {
	font-size: 11px;
	color: #999999;
	transition: transform 0.2s ease;
}

.nav-item-has-children .submenu {
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%) translateY(10px);
	background-color: var(--bg-light);
	min-width: 160px;
	border: 1px solid #E2E8F0;
	border-radius: 6px;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
	padding: 10px 0;
	opacity: 0;
	visibility: hidden;
	transition: all 0.25s ease-in-out;
}

.nav-item-has-children .submenu li {
	display: block;
	width: 100%;
}

.nav-item-has-children .submenu li a {
	display: block;
	padding: 10px 20px;
	font-size: 14px;
	font-weight: 700;
	color: var(--text-gray);
	text-align: center;
	white-space: nowrap;
}

.nav-item-has-children:hover .main-menu-title {
	color: var(--primary-color);
}

.nav-item-has-children:hover .menu-arrow {
	transform: rotate(180deg);
	color: var(--primary-color);
}

.nav-item-has-children:hover .submenu {
	opacity: 1;
	visibility: visible;
	transform: translateX(-50%) translateY(0);
}

.nav-item-has-children .submenu li a:hover {
	background-color: var(--bg-light);
	color: var(--primary-color);
	font-weight: 700;
}

.nav-toggle {
	font-size: 20px;
	color: var(--text-dark);
	cursor: pointer;
	padding: 15px;
	display: none;
}

/* =================================================================
   3. 시안 이미지 완벽 동기화 푸터 (배경색 고정 및 호환성 차단 완료)
   ================================================================= */
.custom-layout-footer {
	background-color: #2B2D41 !important;
	border-top: 1px solid #E2E8F0 !important;
	font-family: inherit;
	display: block !important;
	position: relative !important;
	padding: 0 !important;
	color: #475569 !important;
	width: 100%;
	margin-top: auto;
	/* 핵심: 푸터 위의 공간을 자동으로 확보 */
}

.custom-layout-footer *,
.custom-layout-footer::before,
.custom-layout-footer::after {
	background-color: transparent;
	box-shadow: none !important;
}

.footer-top-links-bar {
	border-bottom: 1px solid #E2E8F0 !important;
	padding: 12px 0 !important;
	width: 100%;
}

.footer-link-flex {
	display: flex !important;
	align-items: center !important;
	justify-content: space-between !important;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.link-left-group {
	display: flex !important;
	align-items: center !important;
}

.footer-link-flex .link-item {
	font-size: 13px !important;
	color: var(--text-light) !important;
	text-decoration: none !important;
	font-weight: 500 !important;
	background: none !important;
}

.footer-link-flex .link-item:hover {
	text-decoration: underline !important;
}

.link-left-group .privacy-highlight {
	font-weight: 700 !important;
	color: var(--text-light) !important;
}

.link-left-group .link-splitter,
.text-top-row .row-splitter {
	color: #CBD5E1 !important;
	margin: 0 12px !important;
	font-size: 11px !important;
	-webkit-user-select: none !important;
	-moz-user-select: none !important;
	-ms-user-select: none !important;
	user-select: none !important;
}

.link-right-group {
	display: flex !important;
	align-items: center !important;
	gap: 12px !important;
}

.btn-footer-action,
.btn-scroll-top {
	background-color: transparent !important;
	color: #DDDDDD !important;
	border: 1px solid #DDDDDD !important;
	padding: 6px 14px !important;
	font-size: 12px !important;
	font-weight: 500 !important;
	border-radius: 4px !important;
	cursor: pointer !important;
	transition: all 0.2s ease !important;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	text-decoration: none !important;
	line-height: 1.4 !important;
	white-space: nowrap !important;
}

.btn-footer-action:hover,
.btn-scroll-top:hover {
	background-color: rgba(221, 221, 221, 0.1) !important;
	color: #ffffff !important;
	border-color: #ffffff !important;
}

.btn-scroll-top {
	font-weight: 700 !important;
}

.footer-bottom-info-bar {
	padding: 30px 0 !important;
	width: 100%;
}

.footer-layout-container {
	display: flex !important;
	justify-content: space-between !important;
	align-items: center !important;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	gap: 20px;
}

.footer-text-group {
	display: flex !important;
	flex-direction: column !important;
	gap: 6px !important;
	flex-grow: 1;
	align-items: flex-end !important;
	text-align: right !important;
	margin-right: 20px;
}

.text-top-row {
	display: flex !important;
	justify-content: flex-end !important;
	align-items: center !important;
	flex-wrap: wrap !important;
}

.text-bottom-row {
	display: flex !important;
	justify-content: flex-end !important;
	align-items: center !important;
}

.footer-text-group .company-name {
	font-size: 14px !important;
	font-weight: 700 !important;
	color: var(--text-light) !important;
}

.footer-text-group .info-desc {
	font-size: 13px !important;
	color: var(--text-light) !important;
	font-weight: 400 !important;
}

/* =================================================================
   4. 이메일무단수집거부 모달 팝업 스타일
   ================================================================= */
.custom-modal-overlay {
	position: fixed !important;
	top: 0 !important;
	left: 0 !important;
	width: 100% !important;
	height: 100% !important;
	background-color: rgba(0, 0, 0, 0.6) !important;
	z-index: 99999 !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	opacity: 0 !important;
	visibility: hidden !important;
	transition: opacity 0.25s ease, visibility 0.25s ease !important;
}

.custom-modal-overlay.modal-is-active {
	opacity: 1 !important;
	visibility: visible !important;
}

.custom-modal-window {
	background-color: #ffffff !important;
	width: 100% !important;
	max-width: 480px !important;
	border-radius: 8px !important;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2) !important;
	overflow: hidden !important;
	transform: translateY(20px) !important;
	transition: transform 0.25s ease !important;
	font-family: inherit !important;
}

.custom-modal-overlay.modal-is-active .custom-modal-window {
	transform: translateY(0) !important;
}

.modal-window-header {
	display: flex !important;
	justify-content: space-between !important;
	align-items: center !important;
	padding: 12px 20px !important;
	border-bottom: 1px solid #E2E8F0 !important;
	background-color: #F8FAFC !important;
}

.modal-window-header h3 {
	margin: 0 !important;
	font-size: 16px !important;
	font-weight: 700 !important;
	color: #1E293B !important;
}

.btn-modal-close {
	background: none !important;
	border: none !important;
	font-size: 24px !important;
	line-height: 1 !important;
	color: #94A3B8 !important;
	cursor: pointer !important;
	padding: 0 !important;
	transition: color 0.2s !important;
}

.btn-modal-close:hover {
	color: #475569 !important;
}

.modal-window-body {
	padding: 24px !important;
	max-height: 400px !important;
	overflow-y: auto !important;
}

.modal-law-highlight {
	font-size: 14px !important;
	line-height: 1.6 !important;
	color: #334155 !important;
	margin: 0 0 16px 0 !important;
	font-weight: 500 !important;
	word-break: keep-all !important;
}

.modal-law-box {
	background-color: #F1F5F9 !important;
	border: 1px solid #E2E8F0 !important;
	border-radius: 6px !important;
	padding: 14px 16px !important;
}

.modal-law-box h4 {
	margin: 0 0 8px 0 !important;
	font-size: 12px !important;
	font-weight: 700 !important;
	color: #475569 !important;
}

.modal-law-box ol {
	margin: 0 !important;
	padding-left: 18px !important;
	font-size: 12px !important;
	line-height: 1.6 !important;
	color: #64748B !important;
}

.modal-law-box li {
	margin-bottom: 6px !important;
}

.modal-law-box li:last-child {
	margin-bottom: 0 !important;
}

.modal-window-footer {
	padding: 12px 20px !important;
	border-top: 1px solid #E2E8F0 !important;
	display: flex !important;
	justify-content: center !important;
	background-color: #F8FAFC !important;
}

.btn-modal-confirm {
	background-color: #2B2D41 !important;
	color: #ffffff !important;
	border: none !important;
	padding: 8px 20px !important;
	font-size: 13px !important;
	font-weight: 500 !important;
	border-radius: 4px !important;
	cursor: pointer !important;
	transition: background-color 0.2s !important;
}

.btn-modal-confirm:hover {
	background-color: #1E2030 !important;
}

@media (max-width: 576px) {
	.custom-modal-window {
		width: calc(100% - 32px) !important;
		margin: 16px !important;
	}

	.modal-window-body {
		padding: 16px !important;
	}
}

/* =================================================================
   5. 메인 레이아웃 유틸리티 시스템 및 카드 디자인 가이드 구역
   ================================================================= */
.spec-main-container {
	padding: 0 0 24px 0;
	background-color: var(--bg-light);
}

.spec-section {
	background: var(--bg-light);
	border: 1px solid var(--border-color);
	border-radius: 12px;
	padding: 30px;
	margin-bottom: 40px;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.spec-section-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-bottom: 2px solid #F1F5F9;
	padding-bottom: 15px;
	margin-bottom: 25px;
}

.spec-grid-two {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 30px;
}

.spec-card {
	background: var(--bg-light);
	border: 1px solid var(--border-color);
	border-radius: 8px;
	padding: 24px;
	position: relative;
}

.btn-primary-spec {
	background-color: var(--primary-color);
	color: #ffffff;
	border: none;
	padding: 12px;
	font-weight: 700;
	border-radius: 6px;
	cursor: pointer;
}

.btn-secondary-spec {
	background-color: var(--secondary-color);
	color: #ffffff;
	border: none;
	padding: 12px;
	font-weight: 700;
	border-radius: 6px;
	cursor: pointer;
}

/* =================================================================
   6. 조합원 로그인 전용 인터페이스 세트 (Login Screen Module)
   ================================================================= */
.login-main-container {
	padding: 80px 0;
	background-color: var(--bg-light);
	display: flex;
	justify-content: center;
	align-items: center;
}

.login-box-wrapper {
	width: 100%;
	max-width: 460px;
	background: var(--bg-light);
	border: 1px solid var(--border-color);
	border-radius: 12px;
	padding: 40px 35px;
	box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
}

.login-header-zone {
	text-align: center;
	margin-bottom: 30px;
}

.login-header-zone h2 {
	font-size: 26px;
	font-weight: 800;
	color: var(--text-dark);
	margin-bottom: 8px;
}

.login-form-body {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.login-input-with-icon {
	position: relative;
	display: flex;
	align-items: center;
}

.login-input-with-icon i {
	position: absolute;
	left: 14px;
	color: #94A3B8;
}

.login-input-with-icon input {
	width: 100%;
	padding: 12px 14px 12px 40px;
	border: 1px solid #CBD5E1;
	border-radius: 6px;
	font-size: 14px;
}

.login-input-with-icon input:focus {
	outline: none;
	border-color: var(--secondary-color);
}

.login-utility-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 13px;
}

.btn-login-submit {
	background-color: var(--secondary-color);
	color: #ffffff;
	border: none;
	padding: 14px;
	font-size: 16px;
	font-weight: 700;
	border-radius: 6px;
	cursor: pointer;
	width: 100%;
	text-align: center;
}

.login-join-notice-box {
	margin-top: 35px;
	border-top: 1px dashed var(--border-color);
	padding-top: 25px;
	text-align: center;
}

.login-join-buttons {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
	margin-top: 15px;
}

.btn-login-to-join {
	background-color: #F1F5F9;
	color: #334155;
	padding: 12px;
	border-radius: 6px;
	font-weight: 700;
	font-size: 13px;
	text-align: center;
}

.btn-login-to-apply {
	border: 1px solid var(--primary-color);
	color: var(--primary-color);
	padding: 12px;
	border-radius: 6px;
	font-weight: 700;
	font-size: 13px;
	text-align: center;
}

/* =================================================================
   7. 표준 게시판 시스템 목록 레이아웃 및 말줄임표 처리 (Board)
   ================================================================= */
.board-main-container {
	padding: 50px 0 80px 0;
	background-color: var(--bg-light);
}

.board-header-section {
	border-bottom: 2px solid var(--secondary-color);
	padding-bottom: 15px;
	margin-bottom: 25px;
}

.board-main-title {
	font-size: 26px;
	font-weight: 800;
	color: var(--text-dark);
}

.board-utility-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 20px;
}

.board-search-form {
	display: flex;
	gap: 8px;
}

.search-input-box {
	display: flex;
	border: 1px solid #CBD5E1;
	border-radius: 4px;
	overflow: hidden;
	background-color: var(--bg-light);
}

.search-input-box input {
	border: none;
	padding: 8px 14px;
	outline: none;
	font-size: 14px;
}

.btn-search-trigger {
	background-color: #F1F5F9;
	border: none;
	padding: 0 14px;
	cursor: pointer;
	color: var(--text-muted);
}

.board-table-responsive {
	width: 100%;
	overflow-x: auto;
	overscroll-behavior-x: contain;
}

.board-list-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 14px;
	text-align: center;
}

.board-list-table th {
	background-color: #F8FAFC;
	padding: 14px 10px;
	border-bottom: 1px solid #CBD5E1;
	font-weight: 700;
	background-color: var(--bg-blue);
	color: #334155;
}

.board-list-table td {
	padding: 14px 10px;
	border-bottom: 1px solid var(--border-color);
	color: #334155;
}

.col-num {
	width: 70px;
}

.col-author,
.col-date {
	width: 110px;
}

.col-views {
	width: 80px;
}

.col-title {
	text-align: left;
}

.row-highlight-notice {
	background-color: #FFFBFB;
}

.badge-notice {
	background-color: var(--primary-color);
	color: #ffffff;
	font-size: 11px;
	padding: 2px 6px;
	border-radius: 3px;
	font-weight: 700;
}

.title-ellipsis-wrapper {
	max-width: 550px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	word-break: break-all;
	display: block;
}

.title-ellipsis-wrapper a:hover {
	color: var(--primary-color);
	text-decoration: underline;
}

.board-footer-action-row {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	margin-top: 30px;
	position: relative;
}

.pagination-wrapper {
	display: flex;
	gap: 4px;
	margin: 0 auto;
}

.page-num,
.page-arrow {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border: 1px solid var(--border-color);
	border-radius: 4px;
	background-color: var(--bg-light);
	font-size: 13px;
}

.page-num.active {
	background-color: var(--secondary-color);
	border-color: var(--secondary-color);
	color: #ffffff;
	font-weight: 700;
}

.btn-board-write {
	background-color: var(--primary-color);
	color: #ffffff;
	padding: 10px 18px;
	font-weight: 700;
	border-radius: 4px;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 14px;
}

/* =================================================================
   8. 게시글 상세 보기 레이아웃 (Post Detail View)
   ================================================================= */
.view-main-container {
	padding: 50px 0 80px 0;
	background-color: var(--bg-light);
}

.view-breadcrumb {
	font-size: 13px;
	color: var(--text-muted);
	margin-bottom: 20px;
	display: flex;
	align-items: center;
	gap: 8px;
}

.view-card {
	background: var(--bg-light);
	border: 1px solid var(--border-color);
	border-radius: 8px;
	overflow: hidden;
	margin-bottom: 25px;
}

.view-card-header {
	padding: 35px 40px;
	border-bottom: 1px solid #F1F5F9;
}

.view-post-title {
	font-size: 24px;
	font-weight: 800;
	line-height: 1.4;
	margin-bottom: 15px;
}

.view-post-meta {
	display: flex;
	gap: 20px;
	font-size: 13px;
	color: var(--text-muted);
}

.view-attachment-box {
	margin: 0 40px;
	padding: 18px 22px;
	background-color: var(--bg-light);
	border: 1px solid var(--border-color);
	border-radius: 6px;
}

.attach-list {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.file-link {
	display: inline-flex;
	align-items: center;
	font-size: 13px;
}

.view-card-body {
	padding: 20px 40px 20px 40px;
	min-height: 300px;
	font-size: 16px;
	line-height: 1.7;
}

.btn-view-list {
	background-color: var(--primary-color);
	color: #ffffff;
	padding: 11px 20px;
	height: 42px;
	font-weight: 700;
	border-radius: 4px;
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.right-actions {
	display: flex;
	gap: 8px;
}

.btn-view-modify {
	background-color: var(--bg-light);
	border: 1px solid #CBD5E1;
	padding: 11px 20px;
	font-weight: 700;
	border-radius: 4px;
}

.btn-view-delete {
	background-color: #64748B;
	color: #ffffff;
	padding: 11px 20px;
	font-weight: 700;
	border-radius: 4px;
	border: none;
	cursor: pointer;
}

/* [기본 정의] 초기 이미지 가이드 */
.hero-image .slide-img {
	width: 100%;
	max-width: 100%;
	object-fit: cover;
	left: 0;
	top: 0;
}

.utility-sub-row {
	flex-wrap: wrap;
	margin-right: 24px;
	margin-top: 0;
}
/* =================================================================
   9. 스마트폰 및 태블릿 반응형 레이아웃 가이드 (GNB / Responsive)
   ================================================================= */
@media (max-width: 768px) {
	.container {
		padding: 0 10px;
	}

	.site-header {
		padding: 5px 0;
	}

	.site-header.scrolled {
        padding: 5px 0;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    }

    .site-header.scrolled .header-top {
        padding: 5px 10px;
    }

    /* 스크롤 시 로고 이미지 크기 축소 */
    .site-header.scrolled .site-logo-img {
        height: 28px; 
    }

    /* 스크롤 시 메인 텍스트 제목은 숨김 처리 (로고와 햄버거 버튼만 남김) */
    .site-header.scrolled .logo-main-title {
        display: inline-block; 
    }

    /* 스크롤 시 우측 유틸리티 메뉴(로그인/회원가입/상담 카운트 등) 숨김 */
    .site-header.scrolled .utility-menu {
        display: none !important;
    }

	.site-logo-img {
		margin-right: 0;
	}

	.header-top {
		flex-direction: column;
		gap: 12px;
		text-align: center;
	}

	.logo-combine-link {
		flex-direction: row;
		gap: 6px;
	}

	.logo-main-title {
		font-size: 17px;
	}

	.utility-menu {
		width: 100%;
		justify-content: center;
		flex-wrap: wrap;
		flex-direction: column;
	}

	.utility-menu .btn-join-highlight {
		width: 100%;
		text-align: center;
		margin-left: 28px;
		margin-top: 0;
	}

	.utility-sub-row {
		margin-right: 0;
		margin-top: 6px;
	}

	/* 1. 상단 바 전체 영역 (좌우/상하 불필요한 기본 패딩 초기화) */
	.logo-area {
		display: flex !important;
		align-items: center !important;
		justify-content: space-between !important;
		width: 100% !important;
		padding: 0 !important;
		/* 패딩을 없애서 자식 요소가 완전히 끝에 붙을 수 있게 설정 */
		box-sizing: border-box;
		position: relative;
		height: 30px;
		/* 네비게이션 바 고정 높이 (상황에 맞게 조절 가능) */
	}

	/* 2. [수정] 삼선 메뉴를 좌상단 완전히 동일한 간격으로 고정 */
	.nav-toggle {
		display: flex !important;
		align-items: center;
		justify-content: center;
		font-size: 20px;
		color: #334155;
		cursor: pointer;

		width: 40px;
		height: 40px;
		z-index: 10;
		order: 1;

		/* [핵심] 위쪽(top)과 왼쪽(left) 간격을 12px로 완벽히 일치시켜 좌상단 구석으로 밀착 */
		position: absolute;
		top: 12px;
		left: 12px;
	}

	/* 3. 로고 영역 중앙 정렬 유지 */
	.logo-combine-link {
		display: flex !important;
		align-items: center;
		justify-content: center;
		gap: 8px;
		text-decoration: none;
		width: 100%;
		position: absolute;
		left: 0;
		top: 0;
		z-index: 1;
		/* 삼선 메뉴 버튼보다 아래로 배치하여 클릭 방해 금지 */
		order: 2;
	}

	/* 로고 이미지와 타이틀 크기/정렬 */
	.site-logo-img {
		height: 28px;
		object-fit: contain;
	}

	.logo-main-title {
		font-size: 15px;
		font-weight: 800;
		color: var(--secondary-color);
		margin: 0;
		white-space: nowrap;
	}

	/* absolute 배치로 변경되었으므로 기존 가상 요소after는 불필요하므로 제거 */
	.logo-area::after {
		display: none !important;
	}

	/* 모바일 네비바 구조 제어 */
	.main-navbar {
		position: relative !important;
		height: 0px !important;
		display: flex !important;
		align-items: center !important;
	}

	.nav-container {
		width: 100%;
		height: 0 !important;
		display: flex !important;
		justify-content: space-between !important;
		align-items: center !important;
	}

	.nav-toggle {
		display: block !important;
		padding: 0 !important;
		margin: -12px -10px !important;
	}

	/* ★ 핵심 개편: 왼쪽 바깥에 숨겨져 있다가 오른쪽으로 밀려 들어오는 좌우 슬라이딩 서브 메뉴 시스템 구역 */
	.nav-menu {
		display: flex !important;
		/* 항상 flex를 유지하여 애니메이션 투과 */
		flex-direction: column !important;
		width: 200px !important;
		/* 모바일 사이드바 정적 너비 지정 */
		height: 100vh !important;
		/* 스마트폰 높이 100% 꽉 채움 */
		background-color: var(--bg-light);

		position: fixed !important;
		/* 헤더가 아닌 화면 최상단 고정 */
		top: 0 !important;
		left: -280px !important;
		/* 기본 위치: 화면 왼쪽 바깥으로 완전히 숨김 */

		border-right: 1px solid var(--border-color);
		border-bottom: none !important;
		padding: 0px 0 20px 0 !important;
		/* 상단 X 단추 및 헤더 겹침 방지 여백 */
		z-index: 99999 !important;
		box-shadow: 5px 0 25px rgba(0, 0, 0, 0.15);
		transition: left 0.3s ease-in-out !important;
		/* 좌 -> 우 슬라이딩 트랜지션 선언 */
	}

	/* 햄버거 버튼 터치로 메뉴 활성화 시 (.is-active) 왼쪽 바깥에서 정위치로 컴백 */
	.nav-menu.is-active {
		left: 0 !important;
	}

	.nav-home-logo {
		display: none !important;
	}

	.nav-item-has-children {
		width: 100%;
		border-bottom: 1px solid #f1f5f9;
	}

	/* depth1 타이틀 영역 스타일링 */
	.nav-item-has-children .main-menu-title {
		padding: 16px 20px !important;
		justify-content: space-between !important;
		font-size: 15px !important;
		background-color: var(--bg-light);
	}

	/* ★ 핵심 개편: depth1 터치 전까지 depth2 서브메뉴판은 원천 차단(display: none) */
	.nav-item-has-children .submenu {
		position: static !important;
		transform: none !important;
		box-shadow: none !important;
		border: none !important;
		background-color: #F8FAFC !important;
		/* 아코디언 서브 구분을 위한 연회색 명시 */
		padding: 0 !important;
		opacity: 1 !important;
		visibility: visible !important;

		display: none !important;
		/* 기본 차단 */
	}

	/* 자바스크립트로 클릭한 depth1의 바로 다음 동생(.submenu)에 .open 클래스를 붙여 펼침 제어 */
	.nav-item-has-children .submenu.open {
		display: block !important;
		border-top: 1px solid #e2e8f0;
	}

	.nav-item-has-children .submenu li a {
		text-align: left !important;
		/* 모바일 메뉴는 좌측 정렬이 표준 가독성에 좋습니다 */
		padding: 12px 30px !important;
		/* 주 메뉴보다 안쪽으로 들여쓰기 여백 매칭 */
		font-size: 13px !important;
		color: var(--text-dark) !important;
	}

	/* 아코디언 화살표 회전 인터랙션 매칭 */
	.nav-item-has-children.open .main-menu-title {
		color: var(--primary-color) !important;
	}

	.nav-item-has-children.open .menu-arrow {
		transform: rotate(180deg) !important;
		color: var(--primary-color) !important;
	}

	.nav-item-has-children:hover .main-menu-title {
		color: inherit;
	}

	.nav-item-has-children:hover .menu-arrow {
		transform: rotate(0deg);
		color: #999999;
	}

	/* =================================================================
       게시판 서브페이지 좌우 안전 여백(20px) 가이드 정립
       ================================================================= */
	.board-main-container {
		padding: 30px 20px !important;
		margin-top: 0 !important;
		clear: both !important;
		display: block !important;
		width: 100% !important;
	}

	.main-navbar+.container,
	.main-navbar+main .container {
		margin-top: 0 !important;
		padding: 0 20px !important;
	}

	.board-header-section {
		margin-bottom: 15px !important;
		padding-bottom: 10px !important;
	}

	.board-main-title {
		font-size: 20px !important;
		text-align: left;
	}

	.board-utility-row {
		flex-direction: column !important;
		align-items: flex-start !important;
		gap: 12px !important;
		margin-bottom: 15px !important;
		width: 100% !important;
	}

	.board-search-form {
		width: 100% !important;
	}

	.search-input-box {
		width: 100% !important;
		justify-content: space-between;
		background-color: var(--bg-light);
	}

	.search-input-box input {
		width: 100% !important;
		padding: 10px 14px !important;
	}

	.board-list-table th,
	.board-list-table td {
		padding: 10px 4px !important;
		font-size: 13px !important;
	}

	.col-author,
	.col-views {
		display: none !important;
	}

	.title-ellipsis-wrapper {
		max-width: calc(100vw - 150px) !important;
	}
/*
	.board-footer-action-row {
		flex-direction: column !important;
		gap: 20px !important;
		align-items: center !important;
		margin-top: 25px !important;
		padding: 0 5px !important;
	}
*/
	.pagination-wrapper {
		transform: translateX(0) !important;
		justify-content: center !important;
		order: 1 !important;
	}

	.btn-board-write {
		width: 100% !important;
		justify-content: center !important;
		order: 2 !important;
		padding: 12px !important;
		font-size: 15px !important;
		box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
	}

	/* 메인 히어로 구역 가이드 시스템 */
	.hero-section.spec-section {
		display: block !important;
		padding: 20px !important;
		margin-bottom: 25px !important;
		height: auto !important;
	}

	.hero-container.spec-grid-two {
		display: flex !important;
		flex-direction: column !important;
		gap: 20px !important;
		padding: 0 !important;
		text-align: center !important;
		width: 100% !important;
		height: auto !important;
	}

	.hero-text {
		display: flex !important;
		flex-direction: column !important;
		align-items: center !important;
		width: 100% !important;
		height: auto !important;
	}

	.hero-title {
		font-size: 24px !important;
		line-height: 1.4 !important;
	}

	.hero-buttons {
		display: flex !important;
		flex-direction: row !important;
		justify-content: center !important;
		gap: 10px !important;
		width: 100% !important;
		margin-bottom: 5px !important;
	}

	.hero-buttons a {
		flex: 1 !important;
		text-align: center !important;
		font-size: 13px !important;
		padding: 12px 5px !important;
		white-space: nowrap !important;
	}

	.hero-image {
		display: block !important;
		position: relative !important;
		width: 100% !important;
		height: 220px !important;
		margin: 15px 0 0 0 !important;
		overflow: hidden !important;
		border-radius: 8px !important;
	}

	.hero-image .slide-img {
		position: absolute !important;
		top: 0 !important;
		left: 0 !important;
		width: 100% !important;
		height: 100% !important;
		object-fit: cover !important;
	}

	.slider-controls {
		display: flex !important;
		justify-content: center !important;
		margin-top: 15px !important;
		margin-bottom: 20px !important;
		padding: 0 !important;
	}

	.spec-main-container {
		padding: 0 0 15px 0 !important;
		margin-top: 0 !important;
		clear: both !important;
	}

	.quick-links-grid {
		grid-template-columns: repeat(2, 1fr) !important;
		gap: 12px !important;
	}

	.bottom-grid.spec-grid-two {
		display: flex !important;
		flex-direction: column !important;
		gap: 20px !important;
	}

	/* 푸터 반응형 */
	.footer-link-flex {
		flex-direction: column !important;
		align-items: flex-start !important;
		gap: 15px !important;
	}

	.link-left-group {
		flex-wrap: wrap !important;
		gap: 4px 0 !important;
	}

	.link-right-group {
		width: 100% !important;
		justify-content: flex-start !important;
		gap: 10px !important;
	}

	.btn-footer-action,
	.btn-scroll-top {
		width: auto !important;
		text-align: center !important;
		background-color: transparent !important;
		color: #DDDDDD !important;
		border: 1px solid #DDDDDD !important;
	}

	.footer-layout-container {
		flex-direction: column !important;
		align-items: flex-start !important;
		gap: 15px !important;
	}

	.footer-text-group {
		align-items: flex-start !important;
		text-align: left !important;
		margin-right: 0 !important;
	}

	.text-top-row {
		flex-direction: column !important;
		align-items: flex-start !important;
		gap: 4px !important;
		justify-content: flex-start !important;
	}

	.text-bottom-row {
		justify-content: flex-start !important;
	}

	.text-top-row .row-splitter {
		display: none !important;
	}

	.btn-scroll-top {
		width: 100% !important;
		text-align: center !important;
	}

	.view-card-header {
		padding: 25px 20px;
	}

	.view-post-title {
		font-size: 19px;
	}

	.view-attachment-box {
		margin: 0 20px;
	}

	.view-card-body {
		padding: 25px 20px;
		font-size: 15px;
	}

	.right-actions {
		display: grid;
		grid-template-columns: 1fr 1fr;
	}
}

/* (추가) 가로 모드(Landscape) 전용 미디어 쿼리가 필요한 경우 */
@media (max-width: 992px) and (orientation: landscape) {
	.nav-menu {
		max-height: 100vh;
		max-height: 100dvh;
		overflow-y: auto;
	}
}