/* =========================================================
   공지사항 전용 CSS
   파일: css/notice.css
========================================================= */

/* 공통 레이아웃 */
.notice-page {
	max-width: 1200px;
	margin: 40px auto 80px;
	padding: 0 16px;
	box-sizing: border-box;
}

.notice-section {
	margin-bottom: 18px;
}

/* ==============================
   검색 영역
============================== */

/* 검색 영역 타이틀 */
.notice-search-title {
	font-size: 18px;
	font-weight: 700;
	color: #111827;
	margin-bottom: 10px;
	padding-left: 4px;
}


.notice-section-search {
	margin-bottom: 20px;
}

.notice-search-form {
	background: #ffffff;
	border-radius: 18px;
	border: 1px solid #e5e7eb;
	padding: 12px 18px 10px;
	box-sizing: border-box;
}

.ns-row {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	gap: 8px;
}

.ns-input {
	width: 260px;
	max-width: 100%;
	box-sizing: border-box;
	padding: 7px 10px;
	border-radius: 999px;
	border: 1px solid #d1d5db;
	font-size: 14px;
	color: #111827;
	outline: none;
	background-color: #ffffff;
}

.ns-input:focus {
	border-color: #0ea5e9;
	box-shadow: 0 0 0 1px rgba(14, 165, 233, 0.25);
}

.ns-submit {
	padding: 7px 16px;
	border-radius: 999px;
	font-size: 14px;
	min-width: 80px;
	cursor: pointer;
}

/* ==============================
   목록 영역
============================== */
.notice-list-wrap {
	background: #ffffff;
	border-radius: 18px;
	border: 1px solid #e5e7eb;
	box-shadow: 0 8px 20px rgba(15, 23, 42, 0.04);
	padding: 0 0 4px;          /* 상단 여백 0 (th 위 흰 여백 제거) */
	box-sizing: border-box;
}

.notice-empty {
	padding: 32px 20px;
	text-align: center;
	font-size: 14px;
	color: #6b7280;
}

/* 테이블 래퍼 */
.notice-table {
	width: 100%;
	overflow-x: auto;
	box-sizing: border-box;
}

/* 기본 테이블 스타일 (PC 기준) */
.notice-table table {
	width: 100%;
	border-collapse: collapse;
	min-width: 680px;
	border-radius: 18px;
	overflow: hidden;          /* 라운드 안으로 테이블 깔끔하게 */
}

.notice-table thead tr {
	background: #f9fafb;
	border-bottom: 1px solid #e5e7eb;
}

.notice-table th,
.notice-table td {
	padding: 10px 12px;
	font-size: 14px;
	color: #374151;
	text-align: center;
	vertical-align: middle;
	border-bottom: 1px solid #f3f4f6;
}

.notice-table th {
	font-weight: 600;
	color: #4b5563;
}

.notice-table tbody tr:hover {
	background: #f9fafb;
}

/* 마지막 행 하단 라인 제거 */
.notice-table tbody tr:last-child td {
	border-bottom: none;
}

/* 컬럼 폭 및 정렬 */
.notice-col-no {
	width: 80px;
	text-align: center;
}

.notice-col-title {
	width: auto;
}

.notice-col-date {
	width: 120px;
	white-space: nowrap;
	font-size: 14px;
	color: #4b5563;
}

.notice-col-hit {
	width: 80px;
	text-align: right;
	white-space: nowrap;
	font-size: 14px;
	color: #4b5563;
}

/* 제목 셀 */
.notice-title-cell {
	display: block;
}

.notice-title-text {
	display: inline-block;
	color: #111827;
	font-size: 14px;
	font-weight: 400;
	text-decoration: none;
}

.notice-title-text:hover {
	text-decoration: underline;
}

/* 공지 배지 (목록 / 상세 공용) */
.notice-badge {
	display: inline-block;
	padding: 2px 8px;
	border-radius: 999px;
	font-size: 11px;
	line-height: 1.4;
}

.notice-badge-notice {
	background: rgba(110, 192, 189, 0.12);
	color: #0f766e;
}

/* ==============================
   상세 보기
============================== */
.notice-view-wrap {
	margin-top: 10px;
}

.notice-view {
	background: #ffffff;
	border-radius: 18px;
	border: 1px solid #e5e7eb;
	box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
	padding: 18px 22px 18px;
	box-sizing: border-box;
}

/* 상단 헤더 (제목 + 우측 목록 버튼 포함) */
.nv-header {
	border-top: 1px solid #e5e7eb;
	margin-top: 6px;
	padding-top: 14px;
	border-bottom: 1px solid #e5e7eb;
	padding-bottom: 14px;
	margin-bottom: 16px;
}

/* 타이틀 + 상단 목록 버튼 한 줄 */
.nv-titlebar {
	display: flex;
	justify-content: space-between;
	align-items: flex-start; /* 제목 여러 줄 대비 */
	margin-bottom: 12px;
	gap: 12px;
}

/* 왼쪽(배지 + 타이틀) - 제목 길어져도 자연스럽게 줄바꿈 */
.nv-title-left {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	flex: 1 1 auto;
	min-width: 0;             /* 긴 제목 줄바꿈용 */
}

/* 오른쪽(목록 버튼) */
.nv-title-right {
	display: flex;
	align-items: center;
	flex: 0 0 auto;
	white-space: nowrap;
}

/* 공통 캡슐 버튼 */
.btn-round-ghost {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 6px 14px;
	border-radius: 6px;
	border: 1px solid #d1d5db;
	background-color: #ffffff;
	font-size: 14px;
	color: #111827;
	text-decoration: none;
	transition: background-color 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.btn-round-ghost i {
	font-size: 13px;
}

.btn-round-ghost:hover {
	background-color: #f3f4f6;
	border-color: #cbd5e1;
	box-shadow: 0 3px 8px rgba(15, 23, 42, 0.08);
}

.nv-title-right .btn-round-ghost {
	padding: 6px 14px;
	font-size: 14px;
}

/* 제목 */
.nv-title {
	margin: 0;
	font-size: 20px;
	font-weight: 700;
	color: #111827;
	word-break: break-word;   /* 긴 제목 줄바꿈 */
}

/* 메타 정보 */
.nv-meta-row {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 16px;
	font-size: 14px;          /* 메타도 14px 기준 */
	color: #6b7280;
}

.nv-meta-item {
	display: inline-flex;
	align-items: center;
	gap: 4px;
}

.nv-meta-label {
	color: #9ca3af;
	font-size: 13px;
}

/* 본문 */
.nv-content {
	font-size: 14px;
	color: #111827;
	line-height: 1.8;
	padding: 4px 0 10px;
}

/* 줄바꿈 유지용 (텍스트형 공지) */
.content-pre {
	white-space: pre-wrap;
	word-wrap: break-word;
}

/* 하단 버튼 */
.nv-footer {
	margin-top: 10px;
	padding-top: 12px;
	border-top: 1px solid #e5e7eb;
	display: flex;
	justify-content: flex-end;
}

.nv-footer-right {
	display: flex;
	gap: 8px;
}

/* 하단 목록 버튼 */
.nv-footer .btn-round-ghost {
	min-width: 90px;
	justify-content: center;
}

/* ==============================
   반응형
============================== */

/* 태블릿 이하 */
@media (max-width: 1024px) {
	.notice-page {
		margin: 30px auto 60px;
	}
}

/* 모바일 (가로 768 이하) */
@media (max-width: 768px) {
	.notice-page {
		margin: 24px auto 40px;
		padding: 0 12px;
	}

	/* 검색 영역: 인풋+버튼 한 줄로 가득 */

	.notice-search-title {
		font-size: 17px;
		margin-bottom: 8px;
	}

	.notice-search-form {
		padding: 10px 12px 8px;
	}

	.ns-row {
		justify-content: flex-start;
	}

	.ns-input {
		flex: 1 1 auto;
		width: auto;
	}

	.ns-submit {
		min-width: 80px;
	}

	.notice-list-wrap {
		padding: 0 6px 8px;
	}

	.notice-table table {
		min-width: 100%;
		border-radius: 14px;
	}

	/* 테이블을 카드형으로 변환 */
	.notice-table thead {
		display: none;
	}

	.notice-table tbody {
		display: block;
	}

	.notice-table tbody tr {
		display: block;
		border: 1px solid #e5e7eb;
		border-radius: 12px;
		margin: 0 0 8px;
		padding: 8px 10px;
		background: #ffffff;
	}

	.notice-table tbody tr:hover {
		background: #ffffff;
	}

	.notice-table td {
		display: block;
		width: 100%;
		border-bottom: none;
		padding: 4px 0;
		font-size: 14px;
	}

	/* 번호 / 제목 / 등록일 / 조회수 라벨 표시 */
	.notice-table td.notice-col-no::before,
	.notice-table td.notice-col-title::before,
	.notice-table td.notice-col-date::before,
	.notice-table td.notice-col-hit::before {
		display: inline-block;
		min-width: 72px;
		margin-right: 4px;
		font-size: 12px;
		color: #9ca3af;
		content: "";
	}

	.notice-table td.notice-col-no::before {
		content: "번호";
	}

	.notice-table td.notice-col-title::before {
		content: "제목";
	}

	.notice-table td.notice-col-date::before {
		content: "등록일";
	}

	.notice-table td.notice-col-hit::before {
		content: "조회수";
	}

	.notice-table td.notice-col-no {
		font-size: 13px;
	}

	.notice-table td.notice-col-title::before {
		display: block;
		margin-bottom: 2px;
	}

	.notice-title-text {
		display: block;
	}

	/* 상세 보기 레이아웃 축소 */
	.notice-view {
		padding: 14px 14px 14px;
		border-radius: 14px;
	}

	/* 제목 + 버튼 정렬 */
	.nv-titlebar {
		align-items: flex-start;
	}

	.nv-title {
		font-size: 18px;
	}

	.nv-meta-row {
		font-size: 13px;
	}

	.nv-content {
		font-size: 14px;
	}

	.nv-footer .btn-round-ghost {
		min-width: 80px;
		font-size: 13px;
		padding: 6px 12px;
	}
}

/* 아주 작은 모바일 (480 이하) */
@media (max-width: 480px) {
	.notice-page {
		padding: 0 10px;
	}

	.ns-row {
		gap: 6px;
	}

	.nv-titlebar {
		flex-direction: column;
		align-items: flex-start;
	}

	.nv-title-right {
		align-self: flex-end;
		margin-top: 4px;
	}

	.nv-title {
		font-size: 17px;
	}

	.notice-table td {
		font-size: 13px;
	}
}
