/**
 * 모던 스킨 스타일시트
 *
 * @package WBK_Simple_Notice
 */

/* 기본 컨테이너 */
.wbk-modern-container {
	width: 100%;
	display: flex;
	flex-direction: column;
	padding: 0;
	gap: 24px;
	max-width: 1400px;
	margin: 0 auto;
}

@media (max-width: 768px) {
	.wbk-modern-container {
		padding: 12px;
	}
}

/* 헤더 */
.wbk-modern-header {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
}

.wbk-modern-page-header .wbk-modern-page-title {
	font-size: 1.875rem;
	font-weight: 700;
	margin-bottom: 8px;
	color: #111827;
}

/* 정렬 옵션 헤더 */
.wbk-modern-sort-header {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	padding: 16px;
	background-color: #f9fafb;
	border-radius: 8px;
	margin-bottom: 16px;
}

.wbk-modern-sort-options {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 0.875rem;
	color: #6b7280;
}

.wbk-modern-sort-label {
	font-weight: 500;
}

.wbk-modern-sort-buttons {
	display: flex;
	gap: 8px;
}

.wbk-modern-sort-btn {
	padding: 4px 12px;
	background-color: #ffffff;
	border-radius: 6px;
	text-decoration: none;
	color: #6b7280;
	transition: all 0.2s ease;
	border: 1px solid #e5e7eb;
}

.wbk-modern-sort-btn:hover {
	background-color: #f0fdf4;
	color: #195851;
	border-color: #195851;
}

.wbk-modern-sort-btn.active {
	background-color: #195851;
	color: #ffffff;
	border-color: #195851;
}

/* 카드 컨테이너 */
.wbk-modern-cards-container {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

/* 카드 스타일 */
.wbk-modern-card {
	background-color: #ffffff;
	border: 1px solid #e5e7eb;
	border-radius: 8px;
	padding: 24px;
	cursor: pointer;
	transition: all 0.2s ease;
}

.wbk-modern-card:hover {
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
	transform: translateY(-1px);
}

/* 카드 헤더 */
.wbk-modern-card-header {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	margin-bottom: 16px;
}

.wbk-modern-card-info {
	display: flex;
	align-items: center;
	gap: 12px;
	flex: 1;
}

.wbk-modern-card-title {
	font-size: 1.125rem;
	font-weight: 600;
	color: #111827;
	margin-bottom: 4px;
}

.wbk-modern-card-link {
	text-decoration: none;
	color: #111827;
	transition: color 0.2s ease;
}

.wbk-modern-card-link:hover {
	color: #195851;
}

.wbk-modern-card-meta {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 0.875rem;
	color: #6b7280;
}

.wbk-modern-separator {
	color: #d1d5db;
}

.wbk-modern-card-number {
	font-size: 0.75rem;
	background-color: #f3f4f6;
	color: #6b7280;
	padding: 4px 8px;
	border-radius: 9999px;
	font-weight: 500;
}

/* 카드 내용 */
.wbk-modern-card-content {
	margin-bottom: 16px;
}

.wbk-modern-excerpt {
	color: #374151;
	line-height: 1.5;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

/* 카드 통계 */
.wbk-modern-card-stats {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top: 16px;
	border-top: 1px solid #f3f4f6;
}

.wbk-modern-stats-left {
	display: flex;
	align-items: center;
	gap: 16px;
	font-size: 0.875rem;
	color: #6b7280;
}

.wbk-modern-stat-item {
	display: flex;
	align-items: center;
	gap: 4px;
}

.wbk-modern-icon {
	width: 16px;
	height: 16px;
}

.wbk-modern-stats-right .wbk-modern-type-badge {
	font-size: 0.75rem;
	background-color: #eff6ff;
	color: #1d4ed8;
	padding: 4px 8px;
	border-radius: 4px;
	font-weight: 500;
}

/* 페이지네이션 */
.wbk-modern-pagination {
	display: flex;
	justify-content: center;
	margin-top: 32px;
}

.wbk-modern-pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	padding: 8px 12px;
	margin: 0 2px;
	text-decoration: none;
	color: #6b7280;
	border: 1px solid #e5e7eb;
	border-radius: 6px;
	transition: all 0.2s ease;
}

.wbk-modern-pagination .page-numbers:hover,
.wbk-modern-pagination .page-numbers.current {
	background-color: #195851;
	color: #ffffff;
	border-color: #195851;
}

/* 빈 상태 */
.wbk-modern-no-posts {
	text-align: center;
	padding: 48px 24px;
	color: #6b7280;
}

/* 상세 페이지 스타일 */
.wbk-modern-detail-container {
	width: 100%;
	display: flex;
	flex-direction: column;
	padding: 0;
	gap: 24px;
	max-width: 1400px;
	margin: 0 auto;
}

/* 공지사항 헤더 */
.wbk-modern-notice-header {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.wbk-modern-notice-header-content {
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 16px;
	padding-left: 8px;
	padding-right: 8px;
}

.wbk-modern-notice-date {
	color: #6b7280;
	font-size: 0.875rem;
}

.wbk-modern-notice-title-section {
	display: flex;
	justify-content: space-between;
}

.wbk-modern-notice-title {
	font-size: 1.875rem;
	font-weight: 700;
	color: #111827;
}

/* 메타 정보 카드 */
.wbk-modern-notice-meta {
	font-size: 0.875rem;
	color: #6b7280;
	margin-bottom: 16px;
	background-color: #f9fafb;
	border-radius: 8px;
	padding: 16px;
	box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
	border: 1px solid #f3f4f6;
}

.wbk-modern-notice-meta span {
	margin-right: 16px;
}

.wbk-modern-notice-meta strong {
	font-weight: 600;
	color: #374151;
}

/* 상세 내용 카드 */
.wbk-modern-notice-content {
	max-width: none;
	background-color: #ffffff;
	border-radius: 8px;
	padding: 24px;
	box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
	border: 1px solid #f3f4f6;
}

.wbk-modern-notice-content-title {
	font-size: 1.125rem;
	font-weight: 600;
	margin-bottom: 12px;
	color: #111827;
}

.wbk-modern-notice-content-text {
	line-height: 1.6;
	color: #374151;
}

.wbk-modern-notice-content-text p {
	margin-bottom: 16px;
}

.wbk-modern-notice-content-text h1,
.wbk-modern-notice-content-text h2,
.wbk-modern-notice-content-text h3,
.wbk-modern-notice-content-text h4,
.wbk-modern-notice-content-text h5,
.wbk-modern-notice-content-text h6 {
	margin-top: 24px;
	margin-bottom: 16px;
	color: #111827;
}

.wbk-modern-notice-content-text img {
	max-width: 100%;
	height: auto;
	border-radius: 8px;
	margin: 16px 0;
}

/* 목록 버튼 섹션 */
.wbk-modern-list-button-section {
	margin-top: 32px;
	padding-top: 24px;
	border-top: 1px solid #e5e7eb;
	display: flex;
	justify-content: flex-start;
}

.wbk-modern-list-btn {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	padding: 12px 32px;
	background-color: #195851;
	color: #ffffff;
	border-radius: 8px;
	text-decoration: none;
	font-weight: 500;
	transition: all 0.3s ease;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.wbk-modern-list-btn:hover {
	background-color: #144540;
	box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.wbk-modern-list-btn-icon {
	width: 20px;
	height: 20px;
	margin-right: 8px;
}

/* 반응형 디자인 */
@media (max-width: 768px) {
	.wbk-modern-sort-header {
		flex-direction: column;
		align-items: flex-start;
		gap: 12px;
	}

	.wbk-modern-sort-options {
		flex-direction: column;
		align-items: flex-start;
		gap: 8px;
		width: 100%;
	}

	.wbk-modern-sort-buttons {
		flex-wrap: wrap;
	}

	.wbk-modern-card {
		padding: 16px;
	}

	.wbk-modern-card-header {
		flex-direction: column;
		align-items: flex-start;
		gap: 12px;
	}

	.wbk-modern-card-number {
		align-self: flex-start;
	}

	.wbk-modern-stats-left {
		flex-direction: column;
		align-items: flex-start;
		gap: 8px;
	}

	.wbk-modern-detail-container {
		padding: 12px;
	}

	.wbk-modern-notice-header-content {
		padding-left: 0;
		padding-right: 0;
	}

	.wbk-modern-notice-title {
		font-size: 1.5rem;
	}

	.wbk-modern-notice-meta {
		display: flex;
		flex-direction: column;
		gap: 8px;
	}

	.wbk-modern-notice-meta span {
		margin-right: 0;
		margin-bottom: 4px;
	}

	.wbk-modern-notice-content {
		padding: 16px;
	}
}

@media (max-width: 480px) {
	.wbk-modern-container {
		gap: 16px;
	}

	.wbk-modern-page-title {
		font-size: 1.5rem;
	}

	.wbk-modern-card-stats {
		flex-direction: column;
		align-items: flex-start;
		gap: 12px;
	}

	.wbk-modern-stats-right {
		align-self: flex-start;
	}
}

/**
 * FAQ 아코디언 스킨 스타일시트
 *
 * @package WBK_Simple_Notice
 */

/* ==============================
   FAQ 컨테이너 기본 스타일
   ============================== */
.wbk-faq-container {
	width: 100%;
	margin: 0 auto;
	padding: 20px;
	font-family: 'Noto Sans KR', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* FAQ 헤더 */
.wbk-faq-header {
	text-align: center;
	margin-bottom: 40px;
	padding-bottom: 20px;
	border-bottom: 2px solid #f0f2f5;
}

.wbk-faq-page-title {
	font-size: 2.5rem;
	font-weight: 700;
	color: #1a202c;
	margin-bottom: 12px;
	line-height: 1.2;
}

.wbk-faq-description {
	font-size: 1.1rem;
	color: #718096;
	margin: 0;
	line-height: 1.5;
}

/* ==============================
   FAQ 아코디언 스타일
   ============================== */
.wbk-faq-accordion {
	display: flex;
	flex-direction: column;
	gap: 1px;
	background-color: #e2e8f0;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

/* FAQ 개별 아이템 */
.wbk-faq-item {
	background-color: #ffffff;
	transition: all 0.3s ease;
}

.wbk-faq-item:first-child {
	border-top-left-radius: 12px;
	border-top-right-radius: 12px;
}

.wbk-faq-item:last-child {
	border-bottom-left-radius: 12px;
	border-bottom-right-radius: 12px;
}

.wbk-faq-item.active {
	z-index: 10;
	position: relative;
}

/* FAQ 헤더 (클릭 가능한 부분) */
.wbk-faq-item-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 12px 16px;
	cursor: pointer;
	transition: all 0.2s ease;
	background-color: #ffffff;
	border: none;
	width: 100%;
	outline: none;
}

.wbk-faq-item-header:hover {
	background-color: #f7fafc;
}

.wbk-faq-item.active .wbk-faq-item-header {
	background-color: #ebf4ff;
	border-bottom: 1px solid #e2e8f0;
}

/* 제목 및 메타 정보 */
.wbk-faq-title-wrap {
	flex: 1;
	text-align: left;
}

.wbk-faq-title {
	font-size: 16px;
	font-weight: 600;
	color: #2d3748;
	margin: 0 0 8px 0;
	line-height: 1.4;
}

.wbk-faq-meta-info {
	display: flex;
	align-items: center;
	gap: 16px;
	font-size: 0.875rem;
	color: #718096;
}

.wbk-faq-type {
	background-color: #edf2f7;
	color: #4a5568;
	padding: 4px 12px;
	border-radius: 20px;
	font-weight: 500;
}

.wbk-faq-date {
	font-weight: 400;
}

/* 토글 아이콘 */
.wbk-faq-toggle-icon {
	width: 24px;
	height: 24px;
	position: relative;
	margin-left: 16px;
	flex-shrink: 0;
}

.wbk-faq-toggle-icon svg {
	width: 100%;
	height: 100%;
	transition: all 0.3s ease;
	position: absolute;
	top: 0;
	left: 0;
	color: #4a5568;
}

.wbk-faq-icon-minus {
	opacity: 0;
	transform: rotate(90deg);
}

.wbk-faq-item.active .wbk-faq-icon-plus {
	opacity: 0;
	transform: rotate(90deg);
}

.wbk-faq-item.active .wbk-faq-icon-minus {
	opacity: 1;
	transform: rotate(0deg);
}

/* ==============================
   FAQ 내용 영역
   ============================== */
.wbk-faq-item-content {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.4s ease-in-out;
	background-color: #ffffff;
}

.wbk-faq-item.active .wbk-faq-item-content {
	max-height: 1000px;
}

.wbk-faq-content-inner {
	padding: 24px;
	border-top: 1px solid #e2e8f0;
}

/* 메타 정보 그리드 */
.wbk-faq-content-meta {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 12px;
	margin-bottom: 24px;
	padding: 16px;
	background-color: #f7fafc;
	font-size: 14px;
}

.wbk-faq-meta-row {
	display: flex;
	align-items: center;
	gap: 8px;
}

.wbk-faq-meta-label {
	font-weight: 600;
	color: #2d3748;
	min-width: 60px;
}

.wbk-faq-meta-value {
	color: #4a5568;
}

/* 내용 본문 */
.wbk-faq-content-body {
	line-height: 1.7;
	color: #2d3748;
	font-size: 1rem;
}

.wbk-faq-content-body p {
	margin-bottom: 16px;
}

.wbk-faq-content-body p:last-child {
	margin-bottom: 0;
}

.wbk-faq-content-body h1,
.wbk-faq-content-body h2,
.wbk-faq-content-body h3,
.wbk-faq-content-body h4,
.wbk-faq-content-body h5,
.wbk-faq-content-body h6 {
	margin-top: 24px;
	margin-bottom: 12px;
	font-weight: 600;
	color: #1a202c;
}

.wbk-faq-content-body ul,
.wbk-faq-content-body ol {
	margin-bottom: 16px;
	padding-left: 24px;
}

.wbk-faq-content-body li {
	margin-bottom: 4px;
}

.wbk-faq-content-body img {
	max-width: 100%;
	height: auto;
	border-radius: 8px;
	margin: 16px 0;
}

.wbk-faq-content-body blockquote {
	border-left: 4px solid #195851;
	padding-left: 16px;
	margin: 16px 0;
	font-style: italic;
	color: #4a5568;
}

/* ==============================
   페이지네이션
   ============================== */
.wbk-faq-pagination {
	display: flex;
	justify-content: center;
	margin-top: 40px;
	gap: 8px;
}

.wbk-faq-pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 10px 16px;
	min-width: 44px;
	height: 44px;
	border: 1px solid #e2e8f0;
	border-radius: 8px;
	background-color: #ffffff;
	color: #4a5568;
	text-decoration: none;
	font-weight: 500;
	transition: all 0.2s ease;
}

.wbk-faq-pagination .page-numbers:hover {
	background-color: #f7fafc;
	border-color: #cbd5e0;
	color: #2d3748;
}

.wbk-faq-pagination .page-numbers.current {
	background-color: #195851;
	border-color: #195851;
	color: #ffffff;
}

.wbk-faq-pagination .page-numbers.current:hover {
	background-color: #3182ce;
	border-color: #3182ce;
}

/* ==============================
   빈 상태 (No Posts)
   ============================== */
.wbk-faq-no-posts {
	text-align: center;
	padding: 60px 20px;
	background-color: #f7fafc;
	border-radius: 12px;
}

.wbk-faq-no-posts-icon {
	margin: 0 auto 20px;
	width: 64px;
	height: 64px;
	color: #a0aec0;
}

.wbk-faq-no-posts-icon svg {
	width: 100%;
	height: 100%;
}

.wbk-faq-no-posts p {
	color: #718096;
	font-size: 1rem;
	margin: 0;
}

/* ==============================
   반응형 디자인
   ============================== */
@media (max-width: 768px) {
	.wbk-faq-container {
		padding: 16px;
	}

	.wbk-faq-page-title {
		font-size: 2rem;
	}

	.wbk-faq-description {
		font-size: 1rem;
	}

	.wbk-faq-item-header {
		padding: 16px 18px;
	}

	.wbk-faq-title {
		font-size: 1.125rem;
	}

	.wbk-faq-meta-info {
		flex-direction: column;
		align-items: flex-start;
		gap: 8px;
	}

	.wbk-faq-content-inner {
		padding: 20px 18px;
	}

	.wbk-faq-content-meta {
		grid-template-columns: 1fr;
		gap: 8px;
	}

	.wbk-faq-meta-row {
		flex-direction: column;
		align-items: flex-start;
		gap: 4px;
	}

	.wbk-faq-meta-label {
		min-width: auto;
	}
}

@media (max-width: 480px) {
	.wbk-faq-container {
		padding: 12px;
	}

	.wbk-faq-page-title {
		font-size: 1.75rem;
	}

	.wbk-faq-item-header {
		padding: 14px 16px;
	}

	.wbk-faq-title {
		font-size: 1rem;
		line-height: 1.3;
	}

	.wbk-faq-content-inner {
		padding: 16px;
	}

	.wbk-faq-toggle-icon {
		margin-left: 8px;
	}

	.wbk-faq-pagination .page-numbers {
		padding: 8px 12px;
		min-width: 40px;
		height: 40px;
		font-size: 0.875rem;
	}
}

/* ==============================
   접근성 개선
   ============================== */
@media (prefers-reduced-motion: reduce) {

	.wbk-faq-item-content,
	.wbk-faq-toggle-icon svg,
	.wbk-faq-item-header,
	.wbk-faq-item {
		transition: none;
	}
}

/* 다크 모드 지원 */
@media (prefers-color-scheme: dark) {
	.wbk-faq-container {
		color: #e2e8f0;
	}

	.wbk-faq-page-title {
		color: #f7fafc;
	}

	.wbk-faq-description {
		color: #a0aec0;
	}

	.wbk-faq-item {
		background-color: #2d3748;
	}

	.wbk-faq-item-header {
		background-color: #2d3748;
	}

	.wbk-faq-item-header:hover {
		background-color: #4a5568;
	}

	.wbk-faq-item.active .wbk-faq-item-header {
		background-color: #2c5282;
	}

	.wbk-faq-title {
		color: #f7fafc;
	}

	.wbk-faq-content-meta {
		background-color: #4a5568;
	}

	.wbk-faq-content-body {
		color: #e2e8f0;
	}
}

/* ==============================
   FAQ 상세 페이지 스타일
   ============================== */
.wbk-faq-detail-container {
	max-width: 800px;
	margin: 0 auto;
	padding: 20px;
	font-family: 'Noto Sans KR', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* 상세 페이지 헤더 */
.wbk-faq-detail-header {
	margin-bottom: 32px;
}

.wbk-faq-detail-breadcrumb {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 24px;
	font-size: 0.875rem;
}

.wbk-faq-breadcrumb-link {
	display: flex;
	align-items: center;
	gap: 4px;
	color: #195851;
	text-decoration: none;
	transition: color 0.2s ease;
}

.wbk-faq-breadcrumb-link:hover {
	color: #144540;
}

.wbk-faq-breadcrumb-icon {
	width: 16px;
	height: 16px;
}

.wbk-faq-breadcrumb-separator {
	color: #a0aec0;
}

.wbk-faq-breadcrumb-current {
	color: #718096;
}

/* 제목 섹션 */
.wbk-faq-detail-title-section {
	margin-bottom: 24px;
}

.wbk-faq-detail-meta-top {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 12px;
}

.wbk-faq-detail-type {
	background-color: #195851;
	color: #ffffff;
	padding: 6px 16px;
	border-radius: 20px;
	font-size: 0.875rem;
	font-weight: 500;
}

.wbk-faq-detail-date {
	color: #718096;
	font-size: 0.875rem;
}

.wbk-faq-detail-title {
	font-size: 2rem;
	font-weight: 700;
	color: #1a202c;
	line-height: 1.3;
	margin: 0;
}

/* 메타 정보 */
.wbk-faq-detail-meta {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 16px;
	padding: 20px;
	background-color: #f7fafc;
	border-radius: 12px;
	border-left: 4px solid #195851;
}

.wbk-faq-detail-meta-item {
	display: flex;
	align-items: center;
	gap: 8px;
}

.wbk-faq-detail-meta-label {
	display: flex;
	align-items: center;
	gap: 6px;
	font-weight: 600;
	color: #2d3748;
	font-size: 0.875rem;
}

.wbk-faq-detail-meta-icon {
	width: 16px;
	height: 16px;
	color: #195851;
}

.wbk-faq-detail-meta-value {
	color: #4a5568;
	font-size: 0.875rem;
}

/* 내용 */
.wbk-faq-detail-content {
	margin-bottom: 40px;
}

.wbk-faq-detail-content-header {
	margin-bottom: 20px;
	padding-bottom: 16px;
	border-bottom: 2px solid #e2e8f0;
}

.wbk-faq-detail-content-title {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 1.5rem;
	font-weight: 600;
	color: #1a202c;
	margin: 0;
}

.wbk-faq-detail-content-icon {
	width: 24px;
	height: 24px;
	color: #195851;
}

.wbk-faq-detail-content-body {
	line-height: 1.7;
	color: #2d3748;
	font-size: 1rem;
}

.wbk-faq-detail-content-body p {
	margin-bottom: 16px;
}

.wbk-faq-detail-content-body p:last-child {
	margin-bottom: 0;
}

.wbk-faq-detail-content-body h1,
.wbk-faq-detail-content-body h2,
.wbk-faq-detail-content-body h3,
.wbk-faq-detail-content-body h4,
.wbk-faq-detail-content-body h5,
.wbk-faq-detail-content-body h6 {
	margin-top: 24px;
	margin-bottom: 12px;
	font-weight: 600;
	color: #1a202c;
}

.wbk-faq-detail-content-body ul,
.wbk-faq-detail-content-body ol {
	margin-bottom: 16px;
	padding-left: 24px;
}

.wbk-faq-detail-content-body li {
	margin-bottom: 4px;
}

.wbk-faq-detail-content-body img {
	max-width: 100%;
	height: auto;
	border-radius: 8px;
	margin: 16px 0;
}

/* 하단 액션 */
.wbk-faq-detail-footer {
	padding-top: 32px;
	border-top: 1px solid #e2e8f0;
}

.wbk-faq-detail-actions {
	margin-bottom: 24px;
}

.wbk-faq-detail-back-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 12px 24px;
	background-color: #195851;
	color: #ffffff;
	text-decoration: none;
	border-radius: 8px;
	font-weight: 500;
	transition: background-color 0.2s ease;
}

.wbk-faq-detail-back-btn:hover {
	background-color: #144540;
	color: #ffffff;
}

.wbk-faq-detail-btn-icon {
	width: 20px;
	height: 20px;
}

/* 공유 기능 */
.wbk-faq-detail-share {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 16px;
	background-color: #f7fafc;
	border-radius: 8px;
}

.wbk-faq-detail-share-label {
	font-size: 0.875rem;
	color: #4a5568;
	font-weight: 500;
}

.wbk-faq-detail-share-buttons {
	display: flex;
	gap: 8px;
}

.wbk-faq-share-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	background-color: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 6px;
	cursor: pointer;
	transition: all 0.2s ease;
}

.wbk-faq-share-btn:hover {
	background-color: #edf2f7;
	border-color: #cbd5e0;
}

.wbk-faq-share-btn svg {
	width: 18px;
	height: 18px;
	color: #4a5568;
}

/* 상세 페이지 반응형 */
@media (max-width: 768px) {
	.wbk-faq-detail-container {
		padding: 16px;
	}

	.wbk-faq-detail-title {
		font-size: 1.5rem;
	}

	.wbk-faq-detail-meta {
		grid-template-columns: 1fr;
		gap: 12px;
	}

	.wbk-faq-detail-meta-item {
		flex-direction: column;
		align-items: flex-start;
		gap: 4px;
	}

	.wbk-faq-detail-share {
		flex-direction: column;
		align-items: flex-start;
		gap: 8px;
	}
}

@media (max-width: 480px) {
	.wbk-faq-detail-container {
		padding: 12px;
	}

	.wbk-faq-detail-title {
		font-size: 1.25rem;
	}

	.wbk-faq-detail-meta-top {
		flex-direction: column;
		align-items: flex-start;
		gap: 8px;
	}

	.wbk-faq-detail-back-btn {
		padding: 10px 20px;
		font-size: 0.875rem;
	}
}