.esb-v2 {
	--esb-navy: #10233f;
	--esb-navy-soft: #1c3658;
	--esb-lime: #b8dc31;
	--esb-lime-dark: #8eb018;
	--esb-ink: #172033;
	--esb-muted: #667085;
	--esb-line: #dfe5ec;
	--esb-surface: #f5f7fa;
	--esb-white: #ffffff;
	--esb-danger: #b42318;
	width: 100%;
	color: var(--esb-ink);
	font-family: "Pretendard", "Noto Sans KR", "Malgun Gothic", Arial, sans-serif;
	font-size: 14px;
	line-height: 1.5;
}

.esb-v2,
.esb-v2 * {
	box-sizing: border-box;
}

.esb-v2 a {
	color: inherit;
	text-decoration: none;
}

.esb-v2 img {
	max-width: 100%;
}

.esb-v2 .content-view img {
	height: auto;
	cursor: default;
}

.esb-v2 .esb-sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.esb-list-body {
	min-width: 0;
}

.esb-notice-box {
	margin: 0 0 12px;
	padding: 9px 14px;
	color: #3c4c12;
	font-size: 13px;
	background: #f4f9df;
	border: 1px solid #dceba1;
	border-radius: 10px;
}

.esb-table {
	overflow: hidden;
	background: var(--esb-white);
	border: 1px solid var(--esb-line);
	border-radius: 10px;
}

.esb-tr {
	display: flex;
	align-items: center;
	min-height: 40px;
	border-top: 1px solid var(--esb-line);
	transition: background-color .18s ease;
}

.esb-tr:first-child {
	border-top: 0;
}

.esb-tr:not(.esb-thead):hover {
	background: #fafcf4;
}

.esb-thead {
	min-height: 38px;
	color: #5d697b;
	font-size: 12px;
	font-weight: 800;
	background: var(--esb-surface);
}

.esb-cell {
	padding: 8px 12px;
	text-align: center;
}

.esb-no {
	flex: 0 0 76px;
	color: #7a8494;
	font-size: 13px;
}

.esb-subject {
	flex: 1 1 auto;
	min-width: 0;
	padding-left: calc(18px + (var(--reply-depth, 0) * 18px));
	text-align: left;
}

.esb-subject a {
	display: inline;
	color: #202a3b;
	font-weight: 650;
	word-break: break-all;
}

.esb-subject a:hover {
	color: var(--esb-lime-dark);
}

.esb-author {
	flex: 0 0 130px;
	color: var(--esb-muted);
}

.esb-date {
	flex: 0 0 110px;
	color: var(--esb-muted);
	font-size: 13px;
}

.esb-views {
	flex: 0 0 72px;
	color: var(--esb-muted);
	font-size: 13px;
}

.esb-badge,
.esb-category,
.esb-new,
.esb-comment-count,
.esb-reply-mark,
.esb-lock {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	vertical-align: middle;
}

.esb-badge {
	min-width: 42px;
	padding: 3px 9px;
	color: var(--esb-white);
	font-size: 11px;
	font-weight: 800;
	background: var(--esb-navy);
	border-radius: 999px;
}

.esb-category {
	margin-right: 8px;
	padding: 2px 8px;
	color: #486017;
	font-size: 11px;
	font-weight: 750;
	background: #edf5d1;
	border-radius: 5px;
}

.esb-new {
	margin-left: 6px;
	color: var(--esb-lime-dark);
	font-size: 9px;
	font-weight: 900;
	letter-spacing: .06em;
}

.esb-comment-count {
	min-width: 21px;
	height: 21px;
	margin-left: 7px;
	padding: 0 6px;
	color: var(--esb-white);
	font-size: 10px;
	font-weight: 800;
	background: var(--esb-navy-soft);
	border-radius: 999px;
}

.esb-reply-mark {
	margin-right: 7px;
	color: var(--esb-lime-dark);
	font-size: 10px;
	font-weight: 800;
}

.esb-lock {
	margin-left: 6px;
	color: #9b6b00;
	font-size: 10px;
	font-weight: 800;
}

.esb-private-title {
	color: #7a8494;
	font-weight: 600;
}

.esb-empty {
	width: 100%;
	padding: 72px 20px;
	color: #8b95a5;
	text-align: center;
	background: var(--esb-surface);
	border: 1px dashed #cfd7e2;
	border-radius: 14px;
}

.esb-gallery-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
}

.esb-gallery-card {
	min-width: 0;
	overflow: hidden;
	background: var(--esb-white);
	border: 1px solid var(--esb-line);
	border-radius: 16px;
	box-shadow: 0 9px 26px rgba(16, 35, 63, .06);
	transition: transform .2s ease, box-shadow .2s ease;
}

.esb-gallery-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 16px 36px rgba(16, 35, 63, .12);
}

.esb-cover,
.esb-webzine-cover {
	position: relative;
	display: block;
	overflow: hidden;
	background: #e9edf2;
	aspect-ratio: 3 / 2;
}

.esb-cover img,
.esb-webzine-cover img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .3s ease;
}

.esb-gallery-card:hover .esb-cover img,
.esb-webzine-card:hover .esb-webzine-cover img {
	transform: scale(1.035);
}

.esb-cover-empty {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #9ba5b3;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: .12em;
}

.esb-card-body {
	position: relative;
	padding: 18px 18px 21px;
}

.esb-card-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 5px 14px;
	margin-bottom: 8px;
	color: var(--esb-muted);
	font-size: 12px;
}

.esb-card-body h3,
.esb-webzine-body h3 {
	margin: 0;
	color: var(--esb-ink);
	font-size: 17px;
	font-weight: 750;
	letter-spacing: -.025em;
	line-height: 1.45;
}

.esb-webzine-list {
	display: grid;
	gap: 12px;
}

.esb-webzine-card {
	display: grid;
	grid-template-columns: 220px minmax(0, 1fr);
	min-height: 150px;
	overflow: hidden;
	background: var(--esb-white);
	border: 1px solid var(--esb-line);
	border-radius: 16px;
	transition: border-color .2s ease, box-shadow .2s ease;
}

.esb-webzine-card:hover {
	border-color: #c7d98a;
	box-shadow: 0 12px 30px rgba(16, 35, 63, .08);
}

.esb-webzine-cover {
	height: 150px;
	aspect-ratio: auto;
}

.esb-webzine-body {
	align-self: center;
	min-width: 0;
	padding: 16px 22px;
}

.esb-webzine-body h3 {
	display: -webkit-box;
	margin-bottom: 6px;
	overflow: hidden;
	font-size: 17px;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.esb-webzine-body p {
	display: -webkit-box;
	margin: 0;
	overflow: hidden;
	color: var(--esb-muted);
	font-size: 13px;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.esb-faq-list {
	overflow: hidden;
	background: var(--esb-white);
	border: 1px solid var(--esb-line);
	border-radius: 14px;
}

.esb-faq-item + .esb-faq-item {
	border-top: 1px solid var(--esb-line);
}

.esb-faq-question {
	display: grid;
	grid-template-columns: 34px minmax(80px, auto) minmax(0, 1fr) 20px;
	align-items: center;
	gap: 14px;
	width: 100%;
	min-height: 70px;
	padding: 15px 22px;
	color: var(--esb-ink);
	text-align: left;
	background: var(--esb-white);
	border: 0;
	cursor: pointer;
}

.esb-faq-question:hover,
.esb-faq-question[aria-expanded="true"] {
	background: #fafcf3;
}

.esb-faq-mark {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	color: var(--esb-white);
	font-weight: 850;
	background: var(--esb-navy);
	border-radius: 9px;
}

.esb-faq-category {
	color: var(--esb-lime-dark);
	font-size: 12px;
	font-weight: 750;
}

.esb-faq-question strong {
	min-width: 0;
	font-size: 15px;
}

.esb-faq-toggle {
	width: 10px;
	height: 10px;
	border-right: 2px solid #718096;
	border-bottom: 2px solid #718096;
	transform: rotate(45deg) translateY(-3px);
	transition: transform .2s ease;
}

.esb-faq-question[aria-expanded="true"] .esb-faq-toggle {
	transform: rotate(225deg) translate(-2px, -2px);
}

.esb-faq-answer {
	display: grid;
	grid-template-columns: 34px minmax(0, 1fr);
	gap: 14px;
	padding: 24px 22px;
	background: var(--esb-surface);
	border-top: 1px solid var(--esb-line);
}

.esb-faq-answer-body {
	min-width: 0;
}

.esb-faq-answer[hidden] {
	display: none;
}

.esb-faq-answer .esb-faq-mark {
	color: var(--esb-navy);
	background: var(--esb-lime);
}

.esb-faq-content {
	min-width: 0;
	word-break: break-word;
}

.esb-faq-manage {
	display: flex;
	justify-content: flex-end;
	gap: 6px;
	margin-top: 14px;
	padding-top: 10px;
	border-top: 1px solid var(--esb-line);
}

/*
 * 관리자 공통 버튼 스타일이 FAQ 질문 버튼을 진한 파랑으로 덮지 않도록
 * 관리자 FAQ 목록의 배경색과 글자색을 명시적으로 고정한다.
 */
.esb-v2 .esb-faq-list.is-admin .esb-faq-question {
	color: var(--esb-ink) !important;
	background: var(--esb-white) !important;
	border: 0 !important;
}

.esb-v2 .esb-faq-list.is-admin .esb-faq-question:hover,
.esb-v2 .esb-faq-list.is-admin .esb-faq-question[aria-expanded="true"] {
	color: var(--esb-ink) !important;
	background: #f2f6fb !important;
}

.esb-v2 .esb-faq-list.is-admin .esb-faq-answer {
	color: var(--esb-ink);
	background: #f7f9fc;
}

.esb-list-tools {
	margin-top: 16px;
}

.esb-list-head {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 12px;
}

.esb-list-head > .esb-notice-box {
	flex: 1 1 auto;
	margin: 0;
}

.esb-list-head > .esb-list-actions {
	flex: 1 1 auto;
	min-width: 0;
	margin: 0;
}

.esb-list-head > .esb-notice-box + .esb-list-actions {
	flex: 0 0 auto;
}

.esb-list-actions {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	margin: 0 0 12px;
}

.esb-list-actions > .esb-button-primary:last-child {
	margin-left: auto;
}

.esb-list-tools > .board-pagination {
	margin-top: 12px;
}

.esb-v2 .board-search {
	display: flex;
	align-items: center;
	gap: 8px;
	min-width: 0;
}

.esb-v2 .board-search select,
.esb-v2 .board-search input,
.esb-v2 input[type="text"],
.esb-v2 input[type="password"],
.esb-v2 input[type="email"],
.esb-v2 input[type="date"],
.esb-v2 select,
.esb-v2 textarea {
	max-width: 100%;
	min-height: 34px;
	padding: 5px 10px;
	color: var(--esb-ink);
	font: inherit;
	background: var(--esb-white);
	border: 1px solid #ccd5e0;
	border-radius: 8px;
	outline: none;
}

.esb-v2 input:focus,
.esb-v2 select:focus,
.esb-v2 textarea:focus {
	border-color: var(--esb-lime-dark);
	box-shadow: 0 0 0 3px rgba(184, 220, 49, .18);
}

.esb-v2 .board-search input {
	width: min(290px, 36vw);
}

.esb-v2 .esb-button,
.esb-v2 .board-thumbnail-button-small,
.esb-v2 .board-ocean-gallery-button-small,
.esb-v2 .board-view-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 34px;
	padding: 6px 13px;
	color: var(--esb-ink);
	font: inherit;
	font-size: 13px;
	font-weight: 750;
	background: var(--esb-white);
	border: 1px solid #cfd7e2;
	border-radius: 8px;
	cursor: pointer;
}

.esb-v2 a.esb-button:link,
.esb-v2 a.esb-button:visited,
.esb-v2 a.esb-button:hover,
.esb-v2 a.esb-button:active {
	color: var(--esb-ink) !important;
}

.esb-v2 .esb-button-primary,
.esb-v2 .board-thumbnail-button-small:last-child {
	color: var(--esb-white) !important;
	background: var(--esb-navy) !important;
	border-color: var(--esb-navy) !important;
}

.esb-v2 a.esb-button-primary:link,
.esb-v2 a.esb-button-primary:visited,
.esb-v2 a.esb-button-primary:hover,
.esb-v2 a.esb-button-primary:active {
	color: var(--esb-white) !important;
}

.esb-v2 .esb-button:hover,
.esb-v2 .board-thumbnail-button-small:hover {
	border-color: var(--esb-lime-dark);
}

.esb-v2 .esb-button-danger,
.esb-v2 a.esb-button-danger:link,
.esb-v2 a.esb-button-danger:visited,
.esb-v2 a.esb-button-danger:hover,
.esb-v2 a.esb-button-danger:active {
	color: var(--esb-danger) !important;
	background: #ffffff !important;
	border-color: #e8b4b0 !important;
}

.esb-v2 .esb-button-danger:hover {
	background: #fff5f4 !important;
	border-color: var(--esb-danger) !important;
}

.esb-v2 .board-pagination {
	display: flex;
	justify-content: center;
	min-height: 30px;
}

.esb-v2 .board-pagination ul,
.esb-v2 .board-pagination-pages {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 5px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.esb-v2 .board-pagination a,
.esb-v2 .board-pagination strong,
.esb-v2 .admin-paging-host a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 30px;
	height: 30px;
	padding: 0 7px;
	color: #5d697b;
	font-size: 12px;
	border: 1px solid var(--esb-line);
	border-radius: 8px;
}

.esb-v2 .board-pagination strong,
.esb-v2 .board-pagination a:hover,
.esb-v2 .admin-paging-host a:hover {
	color: var(--esb-white);
	background: var(--esb-navy);
	border-color: var(--esb-navy);
}

.esb-v2 #board-thumbnail-document,
.esb-v2 #board-thumbnail-editor {
	overflow: hidden;
	background: var(--esb-white);
	border: 1px solid var(--esb-line);
	border-radius: 16px;
}

.esb-v2 #board-thumbnail-editor {
	float: none !important;
	width: 100% !important;
	margin: 0 !important;
}

.esb-v2.esb-screen-view #board-thumbnail-document {
	border-top: 1px solid var(--esb-line);
	border-radius: 12px;
}

.esb-v2.esb-screen-view #board-thumbnail-document .board-title {
	border-top: 0 !important;
}

.esb-v2 .board-document-wrap,
.esb-v2 #board-thumbnail-editor > form {
	padding: 0;
}

.esb-v2 .board-title {
	padding: 13px 24px 11px;
	color: var(--esb-ink);
	font-size: 20px;
	font-weight: 800;
	letter-spacing: -.035em;
	border-bottom: 1px solid var(--esb-line);
}

.esb-v2 .board-detail {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 24px;
	padding: 7px 24px;
	color: var(--esb-muted);
	font-size: 12px;
	background: var(--esb-surface);
	border-bottom: 1px solid var(--esb-line);
}

.esb-v2 .detail-attr {
	display: flex;
	gap: 7px;
}

.esb-v2 .detail-name {
	font-weight: 750;
}

.esb-v2 .board-content {
	padding: 18px 24px;
}

.esb-v2 .content-view {
	min-height: 140px;
	word-break: break-word;
}

.esb-v2 #board-thumbnail-document .board-attach {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	margin: 0 30px 26px;
	padding: 14px 16px !important;
	color: var(--esb-muted);
	font-size: 13px;
	background: var(--esb-surface);
	border: 1px solid var(--esb-line);
	border-radius: 10px;
}

.esb-v2 #board-thumbnail-document .board-attach strong {
	flex: 0 0 auto;
	padding-top: 7px;
	color: var(--esb-ink);
	font-size: 13px;
}

.esb-attachment-list {
	display: flex;
	flex: 1 1 auto;
	flex-wrap: wrap;
	gap: 7px;
	min-width: 0;
}

.esb-v2 .esb-attachment-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	max-width: 100%;
	min-height: 34px;
	padding: 5px 11px;
	color: #344054;
	background: var(--esb-white);
	border: 1px solid #d5dde7;
	border-radius: 7px;
}

.esb-v2 .esb-attachment-link:hover {
	color: var(--esb-navy);
	border-color: var(--esb-navy-soft);
}

.esb-v2 .esb-attachment-link.is-disabled {
	opacity: .75;
}

.esb-attachment-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	width: 20px;
	height: 20px;
	color: var(--esb-white);
	font-weight: 800;
	line-height: 1;
	background: var(--esb-navy-soft);
	border-radius: 50%;
}

.esb-attachment-name {
	overflow: hidden;
	max-width: 460px;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.esb-v2 .board-control {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	float: none !important;
	width: 100% !important;
	margin: 0 !important;
	padding: 12px 20px;
	background: var(--esb-white);
	border-top: 1px solid var(--esb-line) !important;
}

.esb-v2.esb-screen-view .board-control {
	padding: 10px 20px !important;
}

.esb-v2.esb-screen-view .esb-button {
	min-height: 32px;
	padding: 5px 12px;
}

.esb-v2 #board-thumbnail-editor .board-control {
	padding: 12px 20px !important;
}

.esb-v2 .board-control .left,
.esb-v2 .board-control .right {
	display: flex;
	flex-wrap: wrap;
	gap: 7px;
	float: none !important;
	width: auto !important;
	margin: 0 !important;
}

.esb-v2 .board-control .right {
	margin-left: auto !important;
}

.esb-v2 .board-attr-row {
	display: grid;
	grid-template-columns: 110px minmax(0, 1fr);
	float: none !important;
	width: 100% !important;
	margin: 0 !important;
	padding: 0 !important;
	min-height: 40px;
	border-bottom: 1px solid var(--esb-line);
}

.esb-v2 #board-thumbnail-editor .board-attr-row {
	min-height: 40px;
}

/* 확인 화면의 긴 비밀번호 제목만 한 줄로 표시한다. 모바일의 세로 배치는 유지한다. */
.esb-v2.esb-screen-password .board-attr-row {
	grid-template-columns: 180px minmax(0, 1fr);
}
.esb-v2.esb-screen-password #board-thumbnail-editor .attr-name {
	white-space: nowrap;
}

.esb-v2 #board-thumbnail-editor .board-attr-title {
	float: none !important;
	padding: 0 !important;
	border-top: 0 !important;
}

.esb-v2 #board-thumbnail-editor .attr-name {
	display: flex !important;
	align-items: center !important;
	align-self: stretch;
	float: none !important;
	width: auto !important;
	margin: 0 !important;
	padding: 6px 14px !important;
	color: #4f5e72;
	font-size: 13px;
	font-weight: 750;
	background: var(--esb-surface);
	line-height: 1.35 !important;
}

.esb-v2 #board-thumbnail-editor .board-attr-row:not(.esb-file-row) .attr-value {
	display: flex;
	align-items: center;
	min-width: 0;
	min-height: 40px;
	padding: 4px 12px;
	text-align: left !important;
}

.esb-v2.esb-screen-write #board-thumbnail-editor .attr-value input[type="text"],
.esb-v2.esb-screen-write #board-thumbnail-editor .attr-value input[type="password"],
.esb-v2.esb-screen-write #board-thumbnail-editor .attr-value input[type="email"],
.esb-v2.esb-screen-write #board-thumbnail-editor .attr-value input[type="date"],
.esb-v2.esb-screen-write #board-thumbnail-editor .attr-value select {
	height: 30px;
	min-height: 30px;
	padding: 3px 8px;
	border-radius: 6px;
}

.esb-v2.esb-screen-write #board-thumbnail-editor .attr-value > label {
	display: inline-flex;
	align-items: center;
	gap: 5px;
}

.esb-v2.esb-screen-write #board-thumbnail-editor .esb-visibility-options {
	flex-wrap: wrap;
	gap: 7px 14px;
}

.esb-v2.esb-screen-write #board-thumbnail-editor .esb-visibility-options .esb-post-password {
	flex: 0 1 220px;
	width: 220px;
}

.esb-v2.esb-screen-write #board-thumbnail-editor .attr-value input[type="checkbox"],
.esb-v2.esb-screen-write #board-thumbnail-editor .attr-value input[type="radio"] {
	margin: 0 !important;
}

.esb-v2 .attr-value input[type="text"],
.esb-v2 .attr-value input[type="password"],
.esb-v2 .attr-value input[type="email"] {
	width: min(100%, 680px);
}

.esb-v2.esb-screen-write .board-attr-title .attr-value input[type="text"] {
	width: 100% !important;
	max-width: none !important;
}

/* 인증문자 행에만 적용하여 다른 작성 입력칸과 인증문자 생성 로직을 유지합니다. */
.esb-v2.esb-screen-write #board-thumbnail-editor .esb-captcha-row .attr-name {
	padding: 8px !important;
	justify-content: center;
	font-size: 14px;
	white-space: nowrap;
}

.esb-v2.esb-screen-write .esb-captcha-row .font_red_b_12px,
.esb-v2.esb-screen-write .esb-captcha-row .font_red_b_12px font,
.esb-v2.esb-screen-write .esb-captcha-row .font_red_b_12px b {
	color: #d12c43 !important;
	font-size: 21px !important;
	font-weight: 800;
	line-height: 1.3;
}

.esb-v2.esb-screen-write #board-thumbnail-editor .esb-captcha-row .attr-value {
	flex-wrap: wrap;
	gap: 10px 14px;
	padding: 10px 12px;
}

.esb-v2.esb-screen-write #board-thumbnail-editor #esb-wr-key {
	flex: 0 0 160px;
	width: 160px;
	max-width: 100%;
	height: 36px;
	text-align: center;
	font-size: 16px;
	letter-spacing: 2px;
}

.esb-v2 .esb-captcha-help {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	max-width: 100%;
	box-sizing: border-box;
	padding: 8px 12px;
	border: 1px solid #f3dce0;
	border-radius: 8px;
	background: #fff6f7;
	color: #586477;
	font-size: 13px;
	line-height: 1.5;
	word-break: keep-all;
}

.esb-v2 .esb-captcha-help strong {
	color: #be2940;
	font-weight: 750;
}

.esb-v2 .esb-captcha-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 18px;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	background: #be2940;
	color: #fff;
	font-size: 12px;
	font-weight: 800;
}

.esb-v2.esb-screen-write #board-thumbnail-editor .board-content {
	float: none !important;
	width: 100% !important;
	margin: 0 !important;
	padding: 0 !important;
	text-align: left !important;
}

.esb-v2 .esb-permission-options {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px 18px;
	padding-top: 8px !important;
	padding-bottom: 8px !important;
}

.esb-v2 .esb-check-option {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin: 0;
	white-space: nowrap;
	cursor: pointer;
}

.esb-v2 .esb-check-option input {
	margin: 0;
}

.esb-v2 .esb-file-drop {
	display: grid;
	grid-template-columns: 42px minmax(0, 1fr);
	align-items: center;
	gap: 13px;
	width: 100%;
	min-height: 104px;
	padding: 18px 20px;
	color: #536176;
	background: #fbfcfe;
	border: 1px dashed #b8c4d3;
	border-radius: 10px;
	cursor: pointer;
	transition: border-color .16s ease, background-color .16s ease, box-shadow .16s ease;
}

.esb-v2 .esb-file-drop:hover,
.esb-v2 .esb-file-drop.is-dragover {
	background: #f3f7fc;
	border-color: var(--esb-navy-soft);
	box-shadow: 0 0 0 3px rgba(28, 54, 88, .08);
}

.esb-v2 .esb-file-drop.is-selected {
	background: #f6f9ee;
	border-color: var(--esb-lime-dark);
}

.esb-v2 .esb-file-input {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	opacity: 0;
	pointer-events: none;
}

.esb-v2 .esb-file-drop-icon {
	display: flex;
	flex: 0 0 38px;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	color: var(--esb-navy);
	font-size: 25px;
	font-weight: 400;
	background: var(--esb-white);
	border: 1px solid var(--esb-line);
	border-radius: 50%;
}

.esb-v2 .esb-file-drop-text {
	display: grid;
	min-width: 0;
	line-height: 1.45;
}

.esb-v2 .esb-file-drop-text strong {
	color: #344054;
	font-size: 13px;
}

.esb-v2 .esb-file-name {
	overflow: hidden;
	color: #7b8798;
	font-size: 12px;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.esb-v2 .esb-file-drop.is-selected .esb-file-name {
	color: #556d0e;
	font-weight: 700;
}

.esb-v2 .esb-file-row {
	display: block;
	min-height: 0;
	padding: 0 !important;
}

.esb-v2 .esb-file-row .attr-value {
	width: 100%;
	padding: 14px;
}

.esb-v2 .esb-file-selected-list {
	display: flex;
	grid-column: 1 / -1;
	flex-wrap: wrap;
	gap: 6px;
}

.esb-v2 .esb-file-selected-item {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	max-width: 100%;
	padding: 4px 5px 4px 9px;
	color: #425466;
	font-size: 12px;
	line-height: 1.35;
	background: var(--esb-white);
	border: 1px solid var(--esb-line);
	border-radius: 6px;
}

.esb-v2 .esb-file-selected-name {
	overflow: hidden;
	max-width: 360px;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.esb-v2 .esb-file-remove {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	width: 20px;
	height: 20px;
	padding: 0;
	color: #667085;
	font-size: 16px;
	line-height: 1;
	background: transparent;
	border: 0;
	border-radius: 4px;
	cursor: pointer;
}

.esb-v2 .esb-file-remove:hover {
	color: var(--esb-danger);
	background: #fff1f0;
}

.esb-v2 .esb-field-help {
	margin-top: 7px;
	color: #667085;
	font-size: 12px;
}

/* 의견 게시판은 편집기 대신 텍스트 입력과 작성자 확인 안내를 사용한다. */
.esb-v2 .esb-plain-content-wrap {
	padding: 20px;
}

.esb-v2 .esb-plain-content-wrap #esb-plain-help {
	margin: 10px 0 0;
}

.esb-v2 .esb-password-help-group { width:100%; min-width:0; }
.esb-v2 .esb-password-help-group .esb-field-help,
.esb-v2 #esb-plain-help { line-height:1.6; }
.esb-v2 #board-thumbnail-editor textarea.esb-plain-content {
	display:block;
	box-sizing:border-box;
	width:100%;
	min-height:320px;
	padding:16px;
	border:1px solid #ccd6e5;
	border-radius:8px;
	background:#fff;
	color:#203653;
	font-family:inherit;
	font-size:15px;
	line-height:1.8;
	resize:vertical;
}
.esb-v2 #board-thumbnail-editor textarea.esb-plain-content:focus {
	outline:2px solid #12a579;
	outline-offset:2px;
}

.esb-v2 .esb-old-files {
	display: grid;
	gap: 6px;
	margin-top: 10px;
}

.esb-v2 .esb-old-file {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 8px 10px;
	color: #4f5e72;
	font-size: 12px;
	background: var(--esb-surface);
	border-radius: 6px;
}

.esb-v2 .esb-old-file > span {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.esb-v2 .esb-old-file label {
	flex: 0 0 auto;
	white-space: nowrap;
}

.esb-v2 .board-content textarea {
	width: 100% !important;
	min-width: 0 !important;
}

.esb-v2 .cm_wrap {
	float: none;
	width: 100%;
	margin-top: 24px;
	padding: 18px 20px;
	text-align: left;
	background: #f8fafc;
	border: 1px solid var(--esb-line);
	border-radius: 10px;
}

/* 댓글 테두리가 본문 외곽선에 붙지 않도록 보기 화면 안쪽에 여백을 둔다. */
.esb-v2 .board-comments-area > .cm_wrap {
	width: auto;
	margin: 20px;
}

/* 자동 입력 탐지용 필드는 화면과 키보드 탐색에서 제외한다. */
.esb-v2 .esb-spam-trap {
	position: absolute;
	left: -10000px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.esb-v2 .cm_all_info {
	float: none;
	width: auto;
	height: auto;
	margin: 0;
	padding: 0 0 12px;
	line-height: 1.5;
	font-weight: 750;
	border-top: 0;
	border-bottom: 1px solid var(--esb-line);
}

.esb-v2 .cm_all_info span {
	padding: 0 2px;
	color: var(--esb-danger);
}

.esb-v2 .cm_list {
	float: none;
	width: 100%;
}

/* 관리자 공통 #result_frame의 흰 배경은 댓글 목록에만 적용하지 않는다. */
.esb-v2 .cm_wrap > #result_frame.cm_list {
	background: transparent;
}

.esb-v2 .cm_item {
	float: none;
	width: 100%;
	padding: 12px 0;
	background: transparent;
	border-top: 0;
	border-bottom: 1px solid var(--esb-line);
}

.esb-v2 .cm_item:hover {
	background: transparent;
}

.esb-v2 .cm_info {
	display: flex;
	float: none;
	align-items: center;
	gap: 10px;
	width: auto;
	padding: 0 0 6px;
}

.esb-v2 .cm_info b {
	padding: 0;
	color: #344054;
}

.esb-v2 .cm_info span {
	color: var(--esb-muted);
	font-size: 12px;
}

.esb-v2 .cm_body {
	float: none;
	width: auto;
	min-height: 0;
	padding: 0;
	color: #3f4a5a;
	line-height: 1.65;
	word-break: break-word;
}

.esb-v2 .cm_btn_wrap {
	float: none;
	width: auto;
	padding: 7px 0 0;
	text-align: right;
}

.esb-v2 .cm_btn_del {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 28px;
	margin: 0;
	padding: 3px 9px;
	color: var(--esb-danger);
	font-size: 12px;
	font-weight: 700;
	background: var(--esb-white);
	border: 1px solid #f3b6b1;
	border-radius: 6px;
}

.esb-v2 .cm_write_wrap {
	float: none;
	display: grid;
	gap: 10px;
	width: 100%;
	padding: 14px 0 0;
}

.esb-v2 .cm_write_info_wrap {
	display: flex;
	float: none;
	flex-wrap: wrap;
	gap: 8px;
	width: 100%;
}

.esb-v2 .cm_write_info {
	display: flex;
	float: none;
	align-items: center;
	gap: 6px;
	width: auto;
	margin: 0;
}

.esb-v2 .cm_write_info label {
	width: auto;
	padding: 0;
	color: #4b5565;
	font-size: 12px;
	font-weight: 700;
	text-align: left;
}

.esb-v2 .cm_write_input_01 {
	width: 210px;
	height: 34px;
	padding: 0 10px;
	background: var(--esb-white);
	border: 1px solid #cbd5e1;
	border-radius: 7px;
}

.esb-v2 .cm_write_body_wrap {
	float: none;
	display: grid;
	grid-template-columns: minmax(0, 1fr) 76px;
	gap: 8px;
	width: 100%;
	padding: 0;
}

.esb-v2 .cm_write_body,
.esb-v2 .cm_write_btn {
	float: none;
	width: auto;
	min-width: 0;
	margin: 0;
}

.esb-v2 .cm_write_input_area {
	display: block;
	width: 100%;
	max-width: none;
	min-height: 78px;
	padding: 10px 12px;
	line-height: 1.55;
	resize: vertical;
	background: var(--esb-white);
	border: 1px solid #cbd5e1;
	border-radius: 7px;
}

.esb-v2 .cm_write_input_btn {
	width: 100%;
	height: 100%;
	min-height: 78px;
	padding: 0 8px;
	color: var(--esb-white);
	font-size: 13px;
	font-weight: 750;
	line-height: 1.2;
	background: var(--esb-navy);
	border: 0;
	border-radius: 7px;
	cursor: pointer;
}

.esb-v2.esb-screen-list > form > table,
.esb-v2.esb-screen-view > table,
.esb-v2.esb-screen-write > form > table {
	width: 100%;
	border-collapse: separate;
	border-spacing: 0;
	overflow: hidden;
	background: var(--esb-white);
	border: 1px solid var(--esb-line);
	border-radius: 14px;
}

@media (max-width: 900px) {
	.esb-gallery-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 16px;
	}

	.esb-webzine-card {
		grid-template-columns: 200px minmax(0, 1fr);
	}

	.esb-webzine-body {
		padding: 14px 18px;
	}
}

@media (max-width: 680px) {
	.esb-v2 .esb-plain-content-wrap {
		padding: 12px;
	}

	.esb-v2 .board-comments-area > .cm_wrap {
		margin: 12px;
		padding: 14px;
	}

	.esb-v2 {
		font-size: 14px;
	}

	.esb-thead,
	.esb-no,
	.esb-author,
	.esb-views {
		display: none;
	}

	.esb-tr {
		position: relative;
		display: block;
		min-height: 0;
		padding: 14px 108px 14px 0;
	}

	.esb-tr.is-notice {
		padding-left: 8px;
	}

	.esb-tr.is-notice .esb-no {
		display: block;
		position: absolute;
		top: 15px;
		left: 10px;
		width: auto;
		padding: 0;
	}

	.esb-tr.is-notice .esb-subject {
		padding-left: 58px;
	}

	.esb-subject {
		display: block;
		padding: 0 14px;
	}

	.esb-date {
		position: absolute;
		top: 15px;
		right: 12px;
		width: 92px;
		padding: 0;
		text-align: right;
	}

	.esb-gallery-grid {
		grid-template-columns: minmax(0, 1fr);
	}

	.esb-webzine-card {
		display: block;
	}

	.esb-webzine-cover {
		height: auto;
		aspect-ratio: 3 / 2;
	}

	.esb-webzine-body {
		padding: 20px;
	}

	.esb-faq-question {
		grid-template-columns: 30px minmax(0, 1fr) 18px;
		gap: 10px;
		padding: 14px;
	}

	.esb-faq-category {
		display: none;
	}

	.esb-faq-answer {
		padding: 20px 14px;
	}

	.esb-list-actions,
	.esb-v2 .board-control {
		align-items: stretch;
		flex-direction: column;
	}

	.esb-v2 .board-search {
		display: grid;
		grid-template-columns: 92px minmax(0, 1fr) auto;
		width: 100%;
	}

	.esb-v2 .board-search input {
		width: 100%;
	}

	.esb-v2 .esb-button-primary {
		width: 100%;
	}

	.esb-v2 .board-title {
		padding: 22px 18px 16px;
		font-size: 20px;
	}

	.esb-v2.esb-screen-view .board-title {
		padding: 15px 18px 12px;
		font-size: 18px;
	}

	.esb-v2.esb-screen-view .board-detail {
		padding-top: 8px;
		padding-bottom: 8px;
	}

	.esb-v2.esb-screen-view .content-view {
		min-height: 100px;
	}

	.esb-v2 .board-detail,
	.esb-v2 .board-content {
		padding-right: 18px;
		padding-left: 18px;
	}

	.esb-v2 #board-thumbnail-document .board-attach {
		display: block;
		margin: 0 18px 20px;
	}

	.esb-v2 #board-thumbnail-document .board-attach strong {
		display: block;
		padding: 0 0 8px;
	}

	.esb-attachment-name {
		max-width: calc(100vw - 130px);
	}

	.esb-v2 .board-attr-row {
		display: block;
	}

	.esb-v2 .attr-name {
		padding: 9px 14px 3px;
		background: var(--esb-white);
	}

	.esb-v2 .attr-value {
		padding: 5px 14px 13px;
	}

	.esb-v2 .cm_write_info_wrap,
	.esb-v2 .cm_write_body_wrap {
		display: grid;
		grid-template-columns: minmax(0, 1fr);
	}

	.esb-v2 .cm_write_input_btn {
		min-height: 44px;
	}
}



/* =========================
   PAGING
========================= */
.Paging_Style{
	margin:10px 0;
	display:flex;
	justify-content:center;
}

.Paging_Style .pg{
	list-style:none;
	margin:0;
	padding:0;
	display:flex;
	align-items:center;
	gap:6px;
	flex-wrap:wrap;
}

.Paging_Style .pg-link{
	display:inline-flex;
	align-items:center;
	justify-content:center;
	height:32px;
	min-width:32px;
	padding:0 10px;
	border:1px solid #e5e7eb;
	border-radius:8px;
	background:#ffffff;
	color:#374151;
	text-decoration:none;
	font-size:14px !important;
	line-height:1;
	box-sizing:border-box;
	transition:background .15s ease,border-color .15s ease;
}

.Paging_Style a.pg-link:hover{
	background:#f3f4f6;
	border-color:#d1d5db;
}

.Paging_Style .is-active .pg-link{
	background:#2563eb;
	border-color:#2563eb;
	color:#ffffff;
	font-weight:bold;
}

.Paging_Style .is-disabled .pg-link{
	background:#f9fafb;
	border-color:#e5e7eb;
	color:#9ca3af;
	cursor:default;
}

.Paging_Style .pg-ellipsis{
	display:inline-flex;
	align-items:center;
	justify-content:center;
	height:32px;
	min-width:18px;
	padding:0 6px;
	color:#9ca3af;
}
