@charset "utf-8";
/**
 * KBoard Thread 2601 Skin
 * Feed Style Layout with Infinite Scroll
 */

:root {
	/* Palette */
	--kboard-primary: #2563eb;
	--kboard-primary-hover: #1d4ed8;
	--kboard-text: #1e293b;
	--kboard-text-muted: #64748b;
	--kboard-bg: #ffffff;
	--kboard-bg-alt: #f8fafc;
	--kboard-border: #e2e8f0;
	--kboard-danger: #ef4444;

	/* Typography */
	--kboard-font-family: -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo", "Malgun Gothic", "Segoe UI", Roboto, "Noto Sans KR", "Helvetica Neue", Arial, sans-serif;
	--kboard-font-size: 15px;

	/* Spacing & Radius */
	--kboard-radius: 8px;
	--kboard-spacing-sm: 8px;
	--kboard-spacing-md: 16px;
	--kboard-spacing-lg: 24px;
	--kboard-shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

/* Global Reset within KBoard Container */
#kboard-thread-2601-facilites-list,
#kboard-thread-2601-facilites-document,
#kboard-thread-2601-facilites-editor,
#kboard-thread-2601-facilites-latest {
	font-family: var(--kboard-font-family);
	font-size: var(--kboard-font-size);
	color: var(--kboard-text);
	box-sizing: border-box;
	line-height: 1.6;
	margin: 20px 0;
}

#kboard-thread-2601-facilites-list *,
#kboard-thread-2601-facilites-document *,
#kboard-thread-2601-facilites-editor *,
#kboard-thread-2601-facilites-latest *,
#kboard-thread-2601-facilites-list *::before,
#kboard-thread-2601-facilites-document *::before,
#kboard-thread-2601-facilites-editor *::before,
#kboard-thread-2601-facilites-latest *::before,
#kboard-thread-2601-facilites-list *::after,
#kboard-thread-2601-facilites-document *::after,
#kboard-thread-2601-facilites-editor *::after,
#kboard-thread-2601-facilites-latest *::after {
	box-sizing: inherit;
}

#kboard-thread-2601-facilites-list a,
#kboard-thread-2601-facilites-document a,
#kboard-thread-2601-facilites-editor a,
#kboard-thread-2601-facilites-latest a {
	text-decoration: none;
	color: inherit;
	transition: color 0.2s;
}

/* Images Responsive */
#kboard-thread-2601-facilites-list img,
#kboard-thread-2601-facilites-document img,
#kboard-thread-2601-facilites-editor img,
#kboard-thread-2601-facilites-latest img {
	max-width: 100%;
	height: auto;
	vertical-align: middle;
}

/* Image Alignment (WordPress Editor) */
#kboard-thread-2601-facilites-list .content-view img.alignleft,
#kboard-thread-2601-facilites-document .content-view img.alignleft {
	float: left;
	margin: 0 20px 15px 0;
}

#kboard-thread-2601-facilites-list .content-view img.alignright,
#kboard-thread-2601-facilites-document .content-view img.alignright {
	float: right;
	margin: 0 0 15px 20px;
}

#kboard-thread-2601-facilites-list .content-view img.aligncenter,
#kboard-thread-2601-facilites-document .content-view img.aligncenter {
	display: block;
	margin: 15px auto;
}

#kboard-thread-2601-facilites-list .content-view img.alignnone,
#kboard-thread-2601-facilites-document .content-view img.alignnone {
	margin: 15px 0;
}

/* Clear floats after content */
#kboard-thread-2601-facilites-list .content-view::after,
#kboard-thread-2601-facilites-document .content-view::after {
	content: "";
	display: table;
	clear: both;
}

/* Buttons */
a.kboard-default-button-small,
input.kboard-default-button-small,
button.kboard-default-button-small {
	/* Keep 'default' class name for compatibility with PHP usage unless changed */
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 36px;
	padding: 0 16px;
	font-size: 14px;
	font-weight: 500;
	color: #fff !important;
	background-color: var(--kboard-text) !important;
	border: 1px solid transparent;
	border-radius: var(--kboard-radius);
	cursor: pointer;
	transition: all 0.2s ease;
	line-height: 1;
	box-shadow: var(--kboard-shadow-sm);
}

a.kboard-default-button-small:hover,
button.kboard-default-button-small:hover {
	background-color: var(--kboard-primary) !important;
	transform: translateY(-1px);
}

/* --- Grid Gallery Layout --- */
#kboard-thread-2601-facilites-list .kboard-list-group {
}

/* 카테고리별 그리드 wrapper (JS가 생성) */
#kboard-thread-2601-facilites-list .kboard-category-grid-group {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	margin-bottom: 40px;
}

#kboard-thread-2601-facilites-list .kboard-category-grid-group:first-child {
	margin-top: 0;
}

/* 카테고리 그룹 헤더 */
#kboard-thread-2601-facilites-list .kboard-category-group-header {
	margin-top: 40px;
	margin-bottom: 16px;
}

#kboard-thread-2601-facilites-list .kboard-category-group-header:first-child {
	margin-top: 0;
}

/* Notice는 전체 너비 */
#kboard-thread-2601-facilites-list .kboard-list-item.notice {
	grid-column: 1 / -1;
	background-color: #f8fafc;
	border-left: 4px solid var(--kboard-primary);
	padding: 24px;
	border-radius: 8px;
	margin-bottom: 32px;
}

/* 그리드 카드 */
#kboard-thread-2601-facilites-list .kboard-grid-card {
	position: relative;
	border-radius: 8px;
	overflow: hidden;
	background: #fff;
	border: 1px solid var(--kboard-border);
	transition: box-shadow 0.2s, transform 0.2s;
}

/* 썸네일 */
#kboard-thread-2601-facilites-list .kboard-grid-thumbnail {
	position: relative;
	width: 100%;
	padding-top: 75%;
	background: #f8fafc;
	overflow: hidden;
}

#kboard-thread-2601-facilites-list .kboard-grid-thumbnail img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: contain;
	transition: transform 0.4s ease;
}

/* 이미지 없을 때 플레이스홀더 */
#kboard-thread-2601-facilites-list .kboard-grid-no-image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

#kboard-thread-2601-facilites-list .kboard-grid-no-image span {
	font-size: 40px;
	font-weight: 700;
	color: rgba(255, 255, 255, 0.5);
	line-height: 1;
}

/* 카드 정보 */
#kboard-thread-2601-facilites-list .kboard-grid-info {
	padding: 14px 16px;
}

#kboard-thread-2601-facilites-list .kboard-grid-title {
	margin: 0;
	font-size: 15px;
	font-weight: 600;
	color: var(--kboard-text);
	line-height: 1.4;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

/* 관리자 액션 (호버 시) */
#kboard-thread-2601-facilites-list .kboard-grid-admin-actions {
	position: absolute;
	top: 8px;
	right: 8px;
	display: flex;
	gap: 6px;
	opacity: 0;
	transition: opacity 0.2s;
	z-index: 10;
}

#kboard-thread-2601-facilites-list .kboard-grid-card:hover .kboard-grid-admin-actions {
	opacity: 1;
}

#kboard-thread-2601-facilites-list .kboard-grid-action-btn {
	display: inline-block;
	padding: 5px 12px;
	background: rgba(0, 0, 0, 0.65);
	color: #fff;
	border-radius: 4px;
	font-size: 12px;
	font-weight: 500;
	text-decoration: none;
	backdrop-filter: blur(4px);
	transition: background 0.2s;
}

#kboard-thread-2601-facilites-list .kboard-grid-action-btn:hover {
	background: var(--kboard-primary);
}

#kboard-thread-2601-facilites-list .kboard-grid-action-delete:hover {
	background: #ef4444;
}

/* --- Grid Responsive --- */
@media (max-width: 992px) {
	#kboard-thread-2601-facilites-list .kboard-category-grid-group {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	#kboard-thread-2601-facilites-list .kboard-category-grid-group {
		grid-template-columns: 1fr;
	}

	#kboard-thread-2601-facilites-list .kboard-grid-title {
		font-size: 14px;
	}

	#kboard-thread-2601-facilites-list .kboard-grid-admin-actions {
		opacity: 1;
	}
}

/* Item Content */
#kboard-thread-2601-facilites-list .kboard-item-content {
	font-size: 16px;
	line-height: 1.8;
	color: #334155;
	margin-bottom: 20px;
}

#kboard-thread-2601-facilites-list .content-view img {
	margin: 10px 0;
	border-radius: 4px;
}

/* Restore List Styles for Content */
#kboard-thread-2601-facilites-list .content-view ul,
#kboard-thread-2601-facilites-document .content-view ul {
	list-style: disc;
	margin: 1em 0;
	padding-left: 2em;
}

#kboard-thread-2601-facilites-list .content-view ol,
#kboard-thread-2601-facilites-document .content-view ol {
	list-style: decimal;
	margin: 1em 0;
	padding-left: 2em;
}

#kboard-thread-2601-facilites-list .content-view ul ul,
#kboard-thread-2601-facilites-document .content-view ul ul,
#kboard-thread-2601-facilites-list .content-view ol ul,
#kboard-thread-2601-facilites-document .content-view ol ul {
	list-style: circle;
	margin-top: 0;
	margin-bottom: 0;
}

#kboard-thread-2601-facilites-list .content-view ul ol,
#kboard-thread-2601-facilites-document .content-view ul ol,
#kboard-thread-2601-facilites-list .content-view ol ol,
#kboard-thread-2601-facilites-document .content-view ol ol {
	list-style: lower-alpha;
	margin-top: 0;
	margin-bottom: 0;
}

#kboard-thread-2601-facilites-list .content-view li,
#kboard-thread-2601-facilites-document .content-view li {
	margin-bottom: 6px;
}

/* Item Actions */
#kboard-thread-2601-facilites-list .kboard-item-actions {
	display: flex;
	align-items: center;
	gap: 15px;
}

#kboard-thread-2601-facilites-list .kboard-button-action {
	display: inline-block;
	padding: 8px 16px;
	border: 1px solid var(--kboard-border);
	border-radius: 20px;
	font-size: 13px;
	font-weight: 500;
	color: var(--kboard-text-muted);
	transition: all 0.2s;
}

#kboard-thread-2601-facilites-list .kboard-button-action:hover {
	border-color: var(--kboard-primary);
	color: var(--kboard-primary);
	background: #f0f9ff;
}

/* Loading Indicator */
#kboard-thread-2601-facilites-loading {
	color: var(--kboard-text-muted);
	font-size: 14px;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 8px;
	padding: 40px 0;
}

/* Header & Search (Keep similar to default but scoped) */
#kboard-thread-2601-facilites-list .kboard-list-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-bottom: var(--kboard-spacing-md);
	margin-bottom: 20px;
	border-bottom: 1px solid var(--kboard-border);
}

#kboard-thread-2601-facilites-list .kboard-search {
	margin-top: 40px;
	padding: 20px;
	background: var(--kboard-bg-alt);
	border-radius: var(--kboard-radius);
	text-align: center;
}

/* --- Document View (Scoped) --- */
#kboard-thread-2601-facilites-document .kboard-document-wrap {
	background: #fff;
	border: 1px solid var(--kboard-border);
	border-radius: var(--kboard-radius);
	overflow: hidden;
}

#kboard-thread-2601-facilites-document .kboard-title h1 {
	margin: 0;
	padding: 24px;
	font-size: 24px;
	font-weight: 700;
	border-bottom: 1px solid var(--kboard-border);
}

#kboard-thread-2601-facilites-document .kboard-content {
	padding: 30px 24px;
	min-height: 200px;
}

#kboard-thread-2601-facilites-document .content-view {
	font-size: 16px;
	line-height: 1.8;
}

/* --- Editor View (Scoped) --- */
#kboard-thread-2601-facilites-editor .kboard-attr-row {
	margin-bottom: 15px;
}

#kboard-thread-2601-facilites-editor label {
	display: block;
	margin-bottom: 5px;
	font-weight: 600;
}

#kboard-thread-2601-facilites-editor input[type=text],
#kboard-thread-2601-facilites-editor textarea,
#kboard-thread-2601-facilites-editor select {
	width: 100%;
	padding: 10px;
	border: 1px solid var(--kboard-border);
	border-radius: 4px;
}

/* Floating Write Button */
#kboard-thread-2601-facilites-list .kboard-floating-write-button-wrap {
	position: fixed;
	bottom: 30px;
	right: 30px;
	z-index: 999;
}

#kboard-thread-2601-facilites-list .kboard-floating-write-button {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 56px;
	height: 56px;
	background-color: var(--kboard-primary);
	color: #fff;
	border-radius: 50%;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 12px 12px rgba(0, 0, 0, 0.1);
	transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
	text-decoration: none;
}

#kboard-thread-2601-facilites-list .kboard-floating-write-button:hover {
	background-color: var(--kboard-primary-hover);
	transform: translateY(-2px) scale(1.05);
	box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15), 0 16px 16px rgba(0, 0, 0, 0.15);
}

#kboard-thread-2601-facilites-list .kboard-icon-write {
	font-size: 32px;
	line-height: 1;
	font-weight: 300;
}


/* Updated Floating Write Button (Text) */
#kboard-thread-2601-facilites-list .kboard-floating-write-button {
	width: auto;
	height: 48px;
	padding: 0 24px;
	border-radius: 24px;
	font-size: 16px;
	font-weight: 600;
}

#kboard-thread-2601-facilites-list .kboard-floating-write-button:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

#kboard-thread-2601-facilites-list .kboard-write-text {
	line-height: 1;
}

/* Edit/Delete Buttons in List */
#kboard-thread-2601-facilites-list .kboard-button-action {
	background-color: #f1f5f9;
	color: var(--kboard-text-muted);
	border: none;
}

#kboard-thread-2601-facilites-list .kboard-button-action:hover {
	background-color: #e2e8f0;
	color: var(--kboard-text);
}


/* Refined Search Bar (Top) */
#kboard-thread-2601-facilites-list .kboard-search {
	margin: 0 0 30px 0;
	/* Margin bottom only */
	padding: 15px;
	background: #f8fafc;
	border: 1px solid var(--kboard-border);
	border-radius: 8px;
	text-align: right;
	/* Right align search at top usually looks better, or keep center */
}

/* Updated View More Button (Small & Squaricle) */
#kboard-thread-2601-facilites-list .kboard-button-action {
	padding: 6px 14px;
	border-radius: 8px;
	/* Squaricle-ish */
	font-size: 13px;
	line-height: 1;
}

/* --- Improved Document View --- */
#kboard-thread-2601-facilites-document .kboard-document-wrap {
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
	border: 1px solid var(--kboard-border);
	background: #fff;
	border-radius: 12px;
	margin-bottom: 20px;
}

#kboard-thread-2601-facilites-document .kboard-title h1 {
	font-size: 28px;
	letter-spacing: -0.02em;
	color: #0f172a;
	/* Slate 900 */
	padding: 32px 32px 20px 32px;
	border-bottom: none;
	/* Cleaner look */
}

#kboard-thread-2601-facilites-document .kboard-detail {
	padding: 0 32px 24px 32px;
	border-bottom: 1px solid var(--kboard-border);
	background: #fff;
	display: flex;
	flex-wrap: wrap;
	gap: 24px;
	color: var(--kboard-text-muted);
}

#kboard-thread-2601-facilites-document .kboard-detail .detail-attr {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

#kboard-thread-2601-facilites-document .kboard-detail .detail-name {
	font-size: 12px;
	font-weight: 600;
	color: var(--kboard-primary);
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

#kboard-thread-2601-facilites-document .kboard-detail .detail-value {
	font-size: 14px;
	color: var(--kboard-text);
	font-weight: 500;
}

#kboard-thread-2601-facilites-document .kboard-content {
	padding: 40px 32px;
	font-size: 17px;
	/* Slightly larger for readability */
	line-height: 1.8;
}

#kboard-thread-2601-facilites-document .kboard-document-action {
	padding: 20px 32px 32px;
	background: #f8fafc;
	border-top: 1px solid var(--kboard-border);
}

#kboard-thread-2601-facilites-document .kboard-button-action {
	border-radius: 6px;
	font-weight: 600;
}


/* Content Folding (Truncate) */
#kboard-thread-2601-facilites-list .kboard-item-content {

	/* Increased height */
	overflow: hidden;
	position: relative;
	margin-bottom: 20px;
}

#kboard-thread-2601-facilites-list .kboard-item-content::after {
	/* Basic faint fade, mostly handled by read-more-wrap now */
	display: none;
}

/* Fix Read More Button Visibility & Gradient */
#kboard-thread-2601-facilites-list .kboard-read-more-wrap {
	display: none;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 120px;
	/* Gradient area height */
	background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #fff 70%);
	text-align: center;
	padding-top: 60px;
	/* Push button down */
	box-sizing: border-box;
	z-index: 10;
}

#kboard-thread-2601-facilites-list .kboard-item-content.kboard-truncated .kboard-read-more-wrap {
	display: block;
}

#kboard-thread-2601-facilites-list .kboard-item-content.kboard-truncated .content-view {
	padding-bottom: 0;
	/* Remove extra padding, managed by wrap */
}


/* --- Refined Document & Editor UI --- */

/* Align Control Buttons properly */
#kboard-thread-2601-facilites-document .kboard-control,
#kboard-thread-2601-facilites-editor .kboard-control {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px 0;
	border-top: 1px solid var(--kboard-border);
	margin-top: 30px;
	gap: 10px;
}

#kboard-thread-2601-facilites-document .kboard-control .left,
#kboard-thread-2601-facilites-document .kboard-control .right,
#kboard-thread-2601-facilites-editor .kboard-control .left,
#kboard-thread-2601-facilites-editor .kboard-control .right {
	display: flex;
	gap: 8px;
	/* Consistent gap between buttons */
}

/* Document Action Buttons (Like, Unlike, Print) Row */
#kboard-thread-2601-facilites-document .kboard-document-action {
	display: flex;
	justify-content: space-between;
	padding: 20px 32px;
	background-color: var(--kboard-bg-alt);
	border-top: 1px solid var(--kboard-border);
}

#kboard-thread-2601-facilites-document .kboard-document-action .left,
#kboard-thread-2601-facilites-document .kboard-document-action .right {
	display: flex;
	gap: 8px;
}

/* Editor Form Spacing */
#kboard-thread-2601-facilites-editor .kboard-attr-row {
	margin-bottom: 24px;
	/* More breathing room */
}

#kboard-thread-2601-facilites-editor .kboard-attr-row input[type=text],
#kboard-thread-2601-facilites-editor .kboard-attr-row input[type=password],
#kboard-thread-2601-facilites-editor .kboard-attr-row input[type=email],
#kboard-thread-2601-facilites-editor .kboard-attr-row input[type=number],
#kboard-thread-2601-facilites-editor .kboard-attr-row input[type=url],
#kboard-thread-2601-facilites-editor .kboard-attr-row input[type=tel],
#kboard-thread-2601-facilites-editor .kboard-attr-row input[type=date],
#kboard-thread-2601-facilites-editor .kboard-attr-row input[type=file],
#kboard-thread-2601-facilites-editor .kboard-attr-row textarea,
#kboard-thread-2601-facilites-editor .kboard-attr-row select {
	width: 100%;
	padding: 12px 14px;
	/* Larger hit area */
	border: 1px solid var(--kboard-border);
	border-radius: 6px;
	font-size: 15px;
	transition: border-color 0.2s, box-shadow 0.2s;
}

#kboard-thread-2601-facilites-editor .kboard-attr-row input:focus,
#kboard-thread-2601-facilites-editor .kboard-attr-row textarea:focus,
#kboard-thread-2601-facilites-editor .kboard-attr-row select:focus {
	border-color: var(--kboard-primary);
	box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
	outline: none;
}

/* Editor Label */
#kboard-thread-2601-facilites-editor .attr-name {
	display: block;
	margin-bottom: 8px;
	font-weight: 600;
	color: var(--kboard-text);
	font-size: 14px;
}

/* Required Asterisk */
#kboard-thread-2601-facilites-editor .attr-name .attr-required-text {
	color: var(--kboard-danger);
	margin-left: 4px;
}

/* Common Button Styles for Default Button Class */
.kboard-default-button-small {
	padding: 8px 16px;
	height: 40px;
	/* Taller buttons */
	border-radius: 6px;
	font-size: 14px;
	font-weight: 500;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

/* Specific Primary Action Button (Save) */
#kboard-thread-2601-facilites-editor button[type=submit] {
	background-color: var(--kboard-primary) !important;
	color: #fff !important;
	border: none;
}

#kboard-thread-2601-facilites-editor button[type=submit]:hover {
	background-color: var(--kboard-primary-hover) !important;
}

/* Restoring Missing Read More Button Style */
#kboard-thread-2601-facilites-list .kboard-read-more {
	background-color: #fff;
	border: 1px solid var(--kboard-border);
	color: var(--kboard-text-muted);
	padding: 8px 24px;
	border-radius: 20px;
	font-size: 14px;
	cursor: pointer;
	transition: all 0.2s;
	font-weight: 500;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

#kboard-thread-2601-facilites-list .kboard-read-more:hover {
	background-color: var(--kboard-bg-alt);
	border-color: var(--kboard-primary);
	color: var(--kboard-primary);
	transform: translateY(-1px);
}

/* Hover effect to hint clickable title */
#kboard-thread-2601-facilites-list .kboard-list-item:hover .kboard-item-title a {
	color: var(--kboard-primary);
	text-decoration: underline;
}

/* Updated Header Layout with Integrated Search */
#kboard-thread-2601-facilites-list .kboard-list-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 15px;
}

#kboard-thread-2601-facilites-list .kboard-total-count {
	order: 1;
}

#kboard-thread-2601-facilites-list .kboard-search {
	order: 2;
	flex-grow: 1;
	display: flex;
	justify-content: center;
	background: transparent;
	border: none;
	padding: 0;
	margin: 0;
}

#kboard-thread-2601-facilites-list .kboard-sort {
	order: 3;
}

/* 카테고리 가로 스크롤 (PC & Mobile) */
#kboard-thread-2601-facilites-list .kboard-category.category-mobile,
#kboard-thread-2601-facilites-list .kboard-category.category-pc {
	width: 100%;
	overflow-x: auto;
	overflow-y: hidden;
	white-space: nowrap;
	-ms-overflow-style: none;
	/* IE, Edge */
	scrollbar-width: none;
	/* Firefox */
	margin-bottom: 25px;
	padding-bottom: 5px;
	/* 스크롤 여유 공간 */
	text-align: center;
}

#kboard-thread-2601-facilites-list .kboard-category.category-mobile select {
	width: 100%;
}

#kboard-thread-2601-facilites-list .kboard-category.category-mobile::-webkit-scrollbar,
#kboard-thread-2601-facilites-list .kboard-category.category-pc::-webkit-scrollbar {
	display: none;
	/* 크롬, 사파리 등에서 스크롤바 숨김 */
}

#kboard-thread-2601-facilites-list .kboard-category.category-mobile ul,
#kboard-thread-2601-facilites-list .kboard-category.category-pc ul {
	display: inline-flex;
	padding: 0;
	margin: 0;
	list-style: none;
	width: auto;
}

#kboard-thread-2601-facilites-list .kboard-category.category-mobile li,
#kboard-thread-2601-facilites-list .kboard-category.category-pc li {
	display: inline-block;
	margin-right: 8px;
}

#kboard-thread-2601-facilites-list .kboard-category.category-mobile li a,
#kboard-thread-2601-facilites-list .kboard-category.category-pc li a {
	display: inline-block;
	padding: 8px 18px;
	font-size: 14px;
	font-weight: 500;
	color: var(--kboard-text-muted);
	background-color: var(--kboard-bg-alt);
	border: 1px solid var(--kboard-border);
	border-radius: 20px;
	text-decoration: none;
	transition: all 0.2s ease;
}

#kboard-thread-2601-facilites-list .kboard-category.category-mobile li.kboard-category-selected a,
#kboard-thread-2601-facilites-list .kboard-category.category-pc li.kboard-category-selected a,
#kboard-thread-2601-facilites-list .kboard-category.category-mobile li a:hover,
#kboard-thread-2601-facilites-list .kboard-category.category-pc li a:hover {
	background-color: var(--kboard-primary);
	color: #fff;
	border-color: var(--kboard-primary);
	box-shadow: 0 2px 4px rgba(37, 99, 235, 0.2);
}

/* 모바일 (767px 이하) 최적화 : 폰트 크기 조정 */
@media screen and (max-width: 767px) {

	/* PC 카테고리 숨김 */
	#kboard-thread-2601-facilites-list .kboard-category.category-pc {
		display: none !important;
	}

	/* 리스트 헤더 폰트 */
	#kboard-thread-2601-facilites-list .kboard-list-header .kboard-total-count {
		font-size: 16px;
	}

	/* 리스트 아이템 폰트 */
	#kboard-thread-2601-facilites-list .kboard-item-title h2 {
		font-size: 18px;
	}

	#kboard-thread-2601-facilites-list .kboard-item-content .content-view {
		font-size: 14px;
	}

	/* 본문 읽기 폰트 */
	#kboard-thread-2601-facilites-document .kboard-title h1 {
		font-size: 22px;
	}

	#kboard-thread-2601-facilites-document .kboard-detail .detail-name {
		font-size: 11px;
	}

	#kboard-thread-2601-facilites-document .kboard-detail .detail-value {
		font-size: 13px;
	}

	#kboard-thread-2601-facilites-document .kboard-content {
		font-size: 15px;
	}

	/* 모바일 전용 카테고리 폰트 조정 */
	#kboard-thread-2601-facilites-list .kboard-category.category-mobile li a {
		font-size: 13px;
	}

	/* 글쓰기 버튼 폰트 조정 */
	#kboard-thread-2601-facilites-list .kboard-floating-write-button {
		font-size: 14px;
	}
}

/* --- Category Label (원래 제목 위치) --- */
#kboard-thread-2601-facilites-list .kboard-item-category-label {
	display: inline-block;
	font-size: 13px;
	font-weight: 600;
	color: var(--kboard-primary);
	background: #eff6ff;
	border: 1px solid #bfdbfe;
	border-radius: 4px;
	padding: 3px 10px;
	margin-bottom: 12px;
	letter-spacing: 0.02em;
}

/* --- Thumbnail --- */
#kboard-thread-2601-facilites-list .kboard-item-thumbnail {
	margin-bottom: 16px;
	border-radius: var(--kboard-radius);
}

#kboard-thread-2601-facilites-list .kboard-item-thumbnail img {
	display: block;
	width: auto;
	height: auto;
	max-height: 400px;
	object-fit: contain;
}

/* --- Category Group Header --- */
#kboard-thread-2601-facilites-list .kboard-category-group-header {
	position: relative;
	display: flex;
	align-items: center;
	font-size: 24px;
	font-weight: 700;
	margin: 0 0 8px 0;
	padding: 0 0 8px 0;
	line-height: 1.3;
	color: var(--kboard-text);
	border-bottom: 1px solid var(--kboard-border);
}

/* 첫 번째 그룹 헤더는 위 여백 없음 */
#kboard-thread-2601-facilites-list .kboard-category-group-header:first-child,
#kboard-thread-2601-facilites-list .kboard-list-group>.kboard-category-group-header:first-child {
	margin-top: 0;
}

/* --- Fold Section (본문 클릭으로 펼쳐지는 추가 필드) --- */
#kboard-thread-2601-facilites-list .kboard-fold-section {}

#kboard-thread-2601-facilites-list .kboard-fold-toggle-hint {
	font-size: 13px;
	color: var(--kboard-text-muted);
	cursor: pointer;
	user-select: none;
	display: inline-block;
	padding: 4px 12px;
	border: 1px solid var(--kboard-border);
	border-radius: 4px;
	background: var(--kboard-bg-alt);
	transition: all 0.2s;
}

#kboard-thread-2601-facilites-list .kboard-fold-toggle-hint:hover {
	color: var(--kboard-primary);
	border-color: var(--kboard-primary);
}

#kboard-thread-2601-facilites-list .kboard-fold-content {
	display: none;
}

#kboard-thread-2601-facilites-list .kboard-fold-section.open .kboard-fold-content {
	display: block;
}

#kboard-thread-2601-facilites-list .kboard-fold-section.open .kboard-fold-toggle-hint {
	display: none;
}

#kboard-thread-2601-facilites-list .kboard-fold-value {
	margin-bottom: 12px;
}

#kboard-thread-2601-facilites-list .kboard-fold-value:last-child {
	margin-bottom: 0;
}

/* 모바일 카테고리 표시 조건 (768px 미만에서만 보임) */
@media screen and (min-width: 768px) {
	#kboard-thread-2601-facilites-list .kboard-category.category-mobile {
		display: none !important;
	}
}

/* === Editor: 비밀글 / 비밀번호 필드 === */
#kboard-thread-2601-facilites-editor .kboard-attr-row .attr-value .attr-value-option {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 14px;
	cursor: pointer;
	margin-right: 16px;
}

#kboard-thread-2601-facilites-editor .kboard-attr-row .attr-value .attr-value-option input[type=checkbox] {
	width: 16px;
	height: 16px;
	accent-color: var(--kboard-primary);
	cursor: pointer;
}

#kboard-thread-2601-facilites-editor .secret-password-row {
	margin-top: 8px;
}

#kboard-thread-2601-facilites-editor .kboard-attr-password input[type=password] {
	width: 100%;
	padding: 12px 14px;
	border: 1px solid var(--kboard-border);
	border-radius: 6px;
	font-size: 15px;
	transition: border-color 0.2s, box-shadow 0.2s;
}

#kboard-thread-2601-facilites-editor .kboard-attr-password input[type=password]:focus {
	border-color: var(--kboard-primary);
	box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
	outline: none;
}

/* === Confirm (비밀글 비밀번호 입력) === */
#kboard-thread-2601-facilites-confirm {
	max-width: 480px;
	margin: 40px auto;
	padding: 32px;
	background: #fff;
	border: 1px solid var(--kboard-border);
	border-radius: 12px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

#kboard-thread-2601-facilites-confirm .kboard-attr-row {
	margin-bottom: 0;
}

#kboard-thread-2601-facilites-confirm .attr-name {
	display: block;
	margin-bottom: 8px;
	font-weight: 600;
	font-size: 15px;
	color: var(--kboard-text);
}

#kboard-thread-2601-facilites-confirm input[type=password] {
	width: 100%;
	padding: 12px 14px;
	border: 1px solid var(--kboard-border);
	border-radius: 6px;
	font-size: 15px;
	transition: border-color 0.2s, box-shadow 0.2s;
}

#kboard-thread-2601-facilites-confirm input[type=password]:focus {
	border-color: var(--kboard-primary);
	box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
	outline: none;
}

#kboard-thread-2601-facilites-confirm .description {
	margin-top: 8px;
	font-size: 13px;
	color: var(--kboard-danger);
}

#kboard-thread-2601-facilites-confirm .kboard-control {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 24px;
}

#kboard-thread-2601-facilites-confirm .kboard-control .left,
#kboard-thread-2601-facilites-confirm .kboard-control .right {
	display: flex;
	gap: 8px;
}