@charset "UTF-8";

:root {
	--red: #FF2233;
	--gray-bg: #f5f6fa;
	--gray-light: #F0F1F4;
	--gray-border: #E2E5EC;
	--gray-mid: #C8CDD8;
	--gray-text: #6B7280;
	--gray-dark: #374151;
	--text: #111827;
	--white: #FFFFFF;
	--green: #12B76A;
	--blue: #2563EB;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
.blind { position: absolute; clip: rect(0 0 0 0); width: 1px; height: 1px; margin: -1px; overflow: hidden; }
/* iOS Safari 러버밴딩(스크롤 바운스) 제거 · 페이지 끝 당김 효과 차단 */
html, body { overscroll-behavior-y: none; -webkit-overflow-scrolling: auto; }
body {
	font-family: 'Pretendard', 'Noto Sans KR', -apple-system, sans-serif;overscroll-behavior-x: none; /* iOS 가로 스크롤 끝 바운스(고무줄) 제거 · iOS16+ */
	background: var(--white);
	color: var(--text);
	font-size: 14px;
	line-height: 1.5;
	word-break: keep-all;
	display: flex;
	flex-direction: column;
	min-height: 100vh;
	height: auto !important;
}

/* ── 모바일 헤더 ── */
.m-header {
	display: none;
	position: sticky;
	top: 0;
	height: 48px;
	background: var(--white);
	border-bottom: 1px solid var(--gray-border);
	text-align: center;
	z-index: 10;
}
.m-header-logo {
	display: inline-block;
	height: 48px;
	text-decoration: none;
}
.m-header-logo .sp-main {
	display: inline-block;
	width: 84px;
	height: 19px;
	margin: 15px 0 0;
	background: url(../img/logo_payco.svg) no-repeat;
	background-size: 84px auto;
	font-size: 0;
	line-height: 999px;
	overflow: hidden;
	vertical-align: top;
}
.m-header-menu {
	position: absolute;
	top: 0;
	right: 0;
	width: 48px;
	height: 48px;
	border: none;
	background: none;
	cursor: pointer;
}
.m-header-menu .sp-main {
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	width: 18px;
	height: 14px;
	transform: translate(-50%, -50%);
	background: linear-gradient(
		to bottom,
		var(--text) 0, var(--text) 2px,
		transparent 2px, transparent 6px,
		var(--text) 6px, var(--text) 8px,
		transparent 8px, transparent 12px,
		var(--text) 12px, var(--text) 14px
	);
	font-size: 0;
	line-height: 999px;
	overflow: hidden;
}
.m-header-nav {
	display: none;
	position: absolute;
	top: 48px;
	left: 0;
	right: 0;
	background: var(--white);
	border-bottom: 1px solid var(--gray-border);
	box-shadow: 0 4px 12px rgba(0,0,0,0.08);
	z-index: 20;
}
.m-header.is-open .m-header-nav {
	display: block;
}
.m-header-nav a {
	display: block;
	padding: 14px 20px;
	font-size: 15px;
	font-weight: 600;
	color: var(--text);
	text-decoration: none;
	border-bottom: 1px solid var(--gray-border);
}
.m-header-nav a:last-child {
	border-bottom: none;
}
.m-header-nav a.active {
	color: var(--red);
}

/* ── 글로벌 헤더 (PC) ── */
.payco-header {
	position: sticky;
	top: 0;
	z-index: 10;
	background: var(--white);
}
.payco-header .wrap {
	position: relative;
	padding: 0 24px;
	height: 84px;
	border-bottom: 1px solid var(--gray-border);
}
.payco-header .wrap::after { display: block; clear: both; content: ''; }
.payco-header .payco {
	float: left;
	margin: 30px 0 0;
}
.payco-header .payco-logo {
	display: block;
	width: 104px;
	height: 24px;
	background: url(../img/logo_payco.svg) no-repeat;
	background-size: 104px auto;
	font-size: 0;
	line-height: 999px;
	overflow: hidden;
}
.payco-header nav {
	overflow: visible;
	float: left;
	margin-left: 48px;
	padding: 28px 0;
}
.payco-header nav a {
	float: left;
	margin-left: 48px;
	font-family: 'Pretendard', 'Noto Sans KR', sans-serif;
	font-weight: 700;
	font-size: 18px;
	color: #000;
	text-decoration: none;
	line-height: 28px;
	transition: color 0.15s;
}
.payco-header nav a:first-child { margin-left: 0; }
.payco-header nav a:hover { color: var(--red); text-decoration: none; }
.payco-header nav a.active { color: var(--red); }

/* ── 브레드크럼 ── */
.breadcrumb {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 12px 24px;
	font-size: 13px;
	color: var(--gray-text);
	background: #FAFBFC;
	border-bottom: 1px solid var(--gray-border);
	position: sticky;
	top: 84px;
	z-index: 9;
}
.breadcrumb a {
	text-decoration: none;
	font-weight: 500;
	transition: color 0.15s;
	color: var(--red);
}
.breadcrumb-sep { color: var(--gray-mid); }
.breadcrumb-current { font-weight: 700; color: var(--text); }

/* ── 컨텐츠 래퍼 ── */
.payco-content {
	padding: 0 0 60px;
	flex: 1;
	background: var(--white);
}
/* ── 페이지 타이틀 영역 ── */
.page-hero {
	padding: 20px 24px 0;
	background: var(--gray-light);
}
.page-hero-top {
	display: flex;
	flex-direction: column;
	align-items: left;
	gap: 12px;
	margin-bottom: 10px;
}
.page-hero h1 {
	font-size: 18px;
	font-weight: 800;
	color: var(--text);
}
.update-badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 11px;
	color: var(--gray-text);
	padding: 3px 0;
}
.update-badge::before {
	content: '';
	width: 4px;
	height: 4px;
	background: var(--green);
	border-radius: 50%;
}
.notice-text {
	font-size: 11px;
	color: var(--gray-text);
	line-height: 1.8;
	list-style: none;
}
.notice-text li::before {
	content: '※ ';
}

/* ── 검색/필터 ── */
.search-wrap {
	display: flex;
	gap: 10px;
	align-items: center;
	flex-wrap: wrap;
	padding: 20px 24px;
	border-bottom: 1px solid var(--gray-border);
	background: #FAFBFC;
}
.search-input-wrap {
	flex: 1;
	min-width: 240px;
	display: flex;
	align-items: stretch;
	position: relative;
}
.search-input {
	flex: 1;
	height: 40px;
	padding: 0 14px;
	border: 1.5px solid var(--gray-border);
	border-right: none;
	border-radius: 7px 0 0 7px;
	font-size: 13px;
	color: var(--text);
	font-family: inherit;
	background: var(--white);
	outline: none;
	transition: border-color 0.15s;
	padding-right: 32px;
}
/* 브라우저 기본 X 버튼 제거 (Chrome/Edge 등 중복 노출 방지) */
.search-input::-webkit-search-cancel-button,
.search-input::-webkit-search-decoration {
  -webkit-appearance: none;
  appearance: none;
}
/* 커스텀 X 버튼 */
.search-clear {
  position: absolute;
  right: 60px;        /* ← search-btn 실제 너비에 맞춰 미세조정 (50~65px 사이) */
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: var(--gray-mid);
  color: var(--white);
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.search-clear:hover { opacity: 0.85; }
.search-clear[hidden] { display: none; }
.search-input:focus { border-color: var(--gray-mid); }
.search-input::placeholder { color: var(--gray-mid); }
.search-btn {
	height: 40px;
	padding: 0 18px;
	background: var(--red);
	color: var(--white);
	border: 1.5px solid var(--red);
	border-radius: 0 7px 7px 0;
	font-size: 13px;
	font-weight: 700;
	cursor: pointer;
	font-family: inherit;
	transition: background 0.15s;
}
/* ── 커스텀 드롭다운 ── */
.dropdown {
	position: relative;
	min-width: 140px;
}
.dropdown-trigger {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
	width: 100%;
	height: 40px;
	padding: 0 14px;
	border: 1.5px solid var(--gray-border);
	border-radius: 7px;
	font-size: 13px;
	font-family: inherit;
	font-weight: 500;
	color: var(--text);
	background: var(--white);
	cursor: pointer;
	outline: none;
	transition: border-color 0.15s;
}
.dropdown.is-open .dropdown-trigger {
	border-color: var(--gray-mid);
}
.dropdown-arrow {
	flex-shrink: 0;
	color: var(--gray-text);
	transition: transform 0.2s;
}
.dropdown.is-open .dropdown-arrow {
	transform: rotate(180deg);
}
.dropdown-menu {
	display: none;
	position: absolute;
	top: calc(100% + 4px);
	left: 0;
	min-width: 100%;
	background: var(--white);
	border: 1px solid var(--gray-border);
	border-radius: 8px;
	box-shadow: 0 4px 16px rgba(0,0,0,0.08);
	list-style: none;
	z-index: 20;
}
.dropdown.is-open .dropdown-menu {
	display: block;
}
.dropdown-item {
	padding: 10px 16px;
	font-size: 13px;
	color: var(--text);
	cursor: pointer;
	transition: background 0.1s;
	white-space: nowrap;
}
.dropdown-item:hover {
	background: var(--gray-bg);
}
.dropdown-item.is-selected {
	font-weight: 700;
	color: var(--gray-mid);
}
/* ── 쿠폰 테이블 ── */
.table-section { padding: 16px 20px; }
.coupon-table-header-wrap { display: none; }
.coupon-table-wrap {
	border: 1px solid var(--gray-border);
	border-radius: 8px;
}
.coupon-table {
	width: 100%;
	min-width: 900px;
	border-collapse: collapse;
}
.coupon-table colgroup col:nth-child(1) { width: 130px; }
.coupon-table colgroup col:nth-child(2) { width: 80px; }
.coupon-table colgroup col:nth-child(3) { width: 120px; }
.coupon-table colgroup col:nth-child(4) { width: 90px; }
.coupon-table colgroup col:nth-child(5) { width: 100px; }
.coupon-table colgroup col:nth-child(6) { width: 60px; }
.coupon-table colgroup col:nth-child(7) { width: 80px; }
.coupon-table colgroup col:nth-child(8) { width: 140px; }
.coupon-table colgroup col:nth-child(9) { width: 90px; }

.table-header-row { background: var(--gray-light); }
.table-header-row th {
	height: 44px;
	padding: 0 24px;
	font-size: 13px;
	font-weight: 700;
	color: #334155;
	text-align: center;
	border-right: 1px solid var(--gray-border);
	letter-spacing: 0.3px;
	word-break: keep-all;
	white-space: nowrap;
	position: sticky;
	top: 84px;
	z-index: 5;
	background: var(--gray-light);
}
.table-header-row th:first-child { text-align: left; }
.table-header-row th:last-child { border-right: none; }
.coupon-table thead.is-stuck .table-header-row th {
	box-shadow: 0 6px 6px -6px rgba(0,0,0,0.12);
}

/* ── 쿠폰 행 ── */
.coupon-row td {
	height: 54px;
	max-width: 0;
	padding: 0 24px;
	border-right: 1px solid var(--gray-border);
	border-bottom: 1px solid var(--gray-border);
	text-align: center;
	vertical-align: middle;
	font-size: 14px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.coupon-row td:last-child { border-right: none; }
.coupon-row.bg-a { background: #FFFFFF; }
.coupon-row.bg-b { background: #F8F9FB; }
.coupon-row:hover td { background: #EEF0F5; }

.td-merchant { text-align: left; padding-left: 12px; }
.td-merchant-inner { display: flex; align-items: center; gap: 8px; min-width: 0; }
.merchant-logo {
	width: 28px;
	height: 28px;
	border-radius: 50%;
	object-fit: cover;
	flex-shrink: 0;
}
.merchant-name-link {
	font-size: 14px;
	font-weight: 700;
	color: var(--text);
	text-decoration: underline;
	text-underline-offset: 2px;
	text-decoration-color: var(--text);
	cursor: pointer;
	line-height: 1.4;
	display: block;
	flex: 1;
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

/* 할인율 */
.rate-val {
	font-size: 20px;
	font-weight: 800;
	color: var(--red);
	letter-spacing: -0.5px;
}
.rate-unit { font-size: 14px; font-weight: 500; color: var(--gray-text); }

/* 바로가기 버튼 */
.btn-goto {
	display: inline-block;
	background: var(--red);
	color: var(--white);
	padding: 7px 16px;
	border-radius: 6px;
	font-size: 14px;
	font-weight: 700;
	text-decoration: none;
	white-space: nowrap;
	transition: background 0.15s, transform 0.1s;
	letter-spacing: 0.2px;
}

/* ── 무한 스크롤 ── */
.scroll-sentinel { height: 1px; }
.scroll-loader {
	display: none;
	justify-content: center;
	align-items: center;
	gap: 10px;
	padding: 24px 0;
}
.scroll-loader.active { display: flex; }
.scroll-loader-spinner {
	width: 20px;
	height: 20px;
	border: 2.5px solid var(--gray-border);
	border-top-color: var(--red);
	border-radius: 50%;
	animation: spin 0.7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.scroll-loader-text {
	font-size: 12px;
	color: var(--gray-text);
}
.scroll-end {
	text-align: center;
	padding: 20px 0;
	font-size: 12px;
	color: var(--gray-mid);
}

/* ── 검색 결과 없음 ── */
.empty-state {
	padding: 80px 24px;
	text-align: center;
}
.empty-state-msg {
	font-size: 14px;
	color: var(--gray-text);
	margin-bottom: 16px;
}
.empty-state-link {
	font-size: 13px;
	font-weight: 600;
	color: var(--red);
	text-decoration: none;
}

/* ── 케이스뷰 ── */
.caseview {
	position: fixed;
	right: 20px;
	bottom: 20px;
	z-index: 9999;
}
.caseview-trigger {
	display: flex;
	align-items: center;
	gap: 6px;
	padding: 8px 16px;
	font-size: 11px;
	font-weight: 700;
	font-family: inherit;
	color: var(--white);
	background: var(--text);
	border: none;
	border-radius: 6px;
	cursor: pointer;
	letter-spacing: 0.5px;
	box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.caseview-menu {
	display: none;
	position: absolute;
	bottom: calc(100% + 6px);
	right: 0;
	min-width: 180px;
	background: var(--white);
	border: 1px solid var(--gray-border);
	border-radius: 8px;
	box-shadow: 0 4px 16px rgba(0,0,0,0.12);
	padding: 4px 0;
	list-style: none;
}
.caseview.is-open .caseview-menu { display: block; }
.caseview-item {
	padding: 9px 14px;
	font-size: 12px;
	color: var(--text);
	cursor: pointer;
	white-space: nowrap;
	transition: background 0.1s;
}
.caseview-item.is-active {
	font-weight: 700;
	color: var(--red);
}

/* ── 푸터 ── */
.footer {
	padding: 14px 24px;
	background: var(--gray-light);
	font-size: 11px;
	color: var(--gray-text);
	line-height: 1.8;
	text-align: center;
}

/* ── 모바일 반응형 ── */
@media screen and (max-width: 767px) {
	.pc-header { display: none; }
	.m-header { display: block; }
	.breadcrumb { top: 48px; }

	.table-section { padding: 0; }

	/* 모바일 sticky 헤더 (JS가 thead 클론을 넣는 컨테이너) */
	.coupon-table-header-wrap {
		display: block;
		position: sticky;
		top: 48px;
		z-index: 5; /* m-header(10) 아래, PC thead sticky 와 동일 */
		overflow: hidden;
		background: var(--gray-light);
	}
	.coupon-table-header-wrap::after {
		content: '';
		position: absolute;
		left: 0;
		right: 0;
		bottom: -6px;
		height: 6px;
		background: linear-gradient(to bottom, rgba(0,0,0,0.06), transparent);
		pointer-events: none;
	}
	.coupon-table-header-wrap .coupon-table,
	.coupon-table-wrap .coupon-table {
		width: 750px;
		table-layout: fixed;
		border-collapse: separate;
		border-spacing: 0;
	}

	/* 원본 thead 숨김 */
	.coupon-table-wrap thead { display: none; }

	.coupon-table-wrap {
		overflow-x: auto;
		overscroll-behavior-x: none; /* iOS 가로 스크롤 끝 바운스(고무줄) 제거 · iOS16+ */
		border-radius: 0;
		border-left: none;
		border-right: none;
	}
	.table-header-row th,
	.coupon-row td { padding: 0 8px; }
	.coupon-table colgroup col:nth-child(1) { width: 100px; }
	.coupon-table colgroup col:nth-child(2) { width: 86px; }
	.coupon-table colgroup col:nth-child(3) { width: 120px; }
	.coupon-table colgroup col:nth-child(4) { width: 76px; }
	.coupon-table colgroup col:nth-child(5) { width: 76px; }
	.coupon-table colgroup col:nth-child(6) { width: 46px; }
	.coupon-table colgroup col:nth-child(7) { width: 68px; }
	.coupon-table colgroup col:nth-child(8) { width: 100px; }
	.coupon-table colgroup col:nth-child(9) { width: 78px; }
	.coupon-row td {
		max-width: none;
		white-space: nowrap;
		overflow: visible;
		text-overflow: clip;
	}
	.coupon-row td:nth-child(5),
	.coupon-row td:nth-child(7),
	.coupon-row td:nth-child(8) {
		overflow: hidden;
		text-overflow: ellipsis;
	}
}

/* ── 가이드 아코디언 ── */
.guide-accordion { padding: 0 24px; margin-top: 12px; }
.guide-group { border: none; border-radius: 0; }
.guide-group-title {
	display: flex;
	align-items: center;
	padding: 20px 24px;
	font-size: 20px;
	font-weight: 800;
	color: var(--text);
	border-bottom: 2px solid var(--gray-dark);
}
.guide-group-body { padding: 0; }
.guide-item { border-bottom: 1px solid var(--gray-border); }
.guide-item:last-child { border-bottom: none; }
.guide-steps { list-style: none; padding: 0; margin: 0; }
/* 아코디언 토글 버튼 공통 (Step 단계 + dl 정의 용어) */
.guide-step-title,
.guide-def-term {
	display: flex;
	align-items: center;
	gap: 8px;
	width: 100%;
	padding: 18px 24px;
	margin: 0;
	background: transparent;
	border: 0;
	font-family: inherit;
	font-size: 15px;
	font-weight: 700;
	color: var(--text);
	text-align: left;
	cursor: pointer;
	user-select: none;
}
.guide-step-title::after,
.guide-def-term::after {
	content: ''; margin-left: auto; flex-shrink: 0;
	width: 20px; height: 20px;
	background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='none'%3E%3Cpath d='M5 8l5 5 5-5' stroke='%236B7280' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
	transition: transform 0.2s;
}
.guide-item.is-open .guide-step-title::after,
.guide-item.is-open .guide-def-term::after { transform: rotate(180deg); }
/* JS 토글: 기본 접힘, .is-open 시 펼침 */
li.guide-item .guide-answer,
.guide-def-list .guide-item .guide-def-desc { display: none; }
li.guide-item.is-open .guide-answer,
.guide-def-list .guide-item.is-open .guide-def-desc { display: block; }
/* dl 정의 리스트 (용어/설명) */
.guide-def-list { margin: 0; padding: 0; }
.guide-def-list dt { margin: 0; }
.guide-def-desc {
	margin: 0;
	padding: 0 24px 20px;
	font-size: 14px;
	color: var(--gray-dark);
	line-height: 1.7;
}
.guide-step {
	display: inline-flex; align-items: center; justify-content: center;
	width: 24px; height: 24px; flex-shrink: 0;
	border-radius: 50%; background: var(--red); color: #fff;
	font-size: 12px; font-weight: 700;
}
.guide-answer {
	padding: 0 24px 20px 24px;
	font-size: 14px;
	color: var(--gray-dark);
	line-height: 1.7;
}
.guide-answer > img { display: block; margin: 0 auto; }
.guide-answer p {
	color: #111;
	text-align: center;
	font-feature-settings: 'liga' off, 'clig' off;
	font-family: "Pretendard Variable", 'Pretendard', sans-serif;
	font-size: 14px;
	font-style: normal;
	font-weight: 500;
	line-height: 22px;
	margin-top: 27px;
}
.guide-def-col-desc-ex { color: var(--red); font-weight: 700; }

/* 가이드 이미지 겹침 */
.guide-img-overlap {
	position: relative;
	display: block;
	max-width: 345px;
	margin: 0 auto;
}
.guide-img-overlap .guide-img-main {
	display: block;
	width: 56.5%;
	margin: 0 auto;
}
.guide-img-overlap .guide-img-zoom {
	position: absolute;
	right: 17%;
	bottom: 20%;
	width: 29%;
	filter: drop-shadow(0 2px 8px rgba(0,0,0,0.15));
}

/* ── 가이드 CTA ── */
.guide-cta {
	margin: 32px 24px 0;
	padding: 28px 24px;
	background: var(--gray-bg);
	border-radius: 12px;
	box-shadow: 0 7px 24px 0 rgba(0,0,0,0.04);
	text-align: center;
}
.guide-cta-text {
	font-size: 15px;
	font-weight: 600;
	color: var(--gray-dark);
	margin-bottom: 16px;
}
.guide-cta-btn {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 12px 32px;
	background: var(--red);
	color: var(--white);
	font-size: 15px;
	font-weight: 700;
	text-decoration: none;
	border-radius: 8px;
}

/* ── FAQ 필터 ── */
.faq-filter {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	padding: 16px 24px;
}
.faq-filter-btn {
	flex-shrink: 0;
	padding: 11px 16px 12px;
	border: none;
	border-radius: 99px;
	background: #ECEEF4;
	color: #111;
	font-family: "Pretendard Variable", 'Pretendard', sans-serif;
	font-size: 14px;
	font-weight: 400;
	line-height: 19px;
	letter-spacing: -0.1px;
	white-space: nowrap;
	cursor: pointer;
	transition: background 0.15s, color 0.15s;
}
.faq-filter-btn.is-active {
	background: #111;
	color: #fff;
	font-weight: 700;
}

/* ── FAQ 아코디언 ── */
.faq-accordion { padding: 0 24px; margin-top: 12px; }
.faq-group {
	border: none;
	border-radius: 0;
}
.faq-group-title {
	display: flex;
	align-items: center;
	padding: 20px 24px;
	font-size: 20px;
	font-weight: 800;
	color: var(--text);
	cursor: pointer;
	list-style: none;
	user-select: none;
	border-bottom: 2px solid var(--gray-dark);
}
.faq-group-title::-webkit-details-marker { display: none; }
.faq-group--static .faq-group-title { cursor: default; user-select: auto; }
.faq-group--static .faq-group-title::after { display: none; }
.faq-group-title::after {
	content: ''; margin-left: auto; flex-shrink: 0;
	width: 24px; height: 24px;
	background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none'%3E%3Cpath d='M6 9l6 6 6-6' stroke='%23111827' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
	transition: transform 0.2s;
}
.faq-group[open] > .faq-group-title::after { transform: rotate(180deg); }
.faq-group-body { padding: 0; }
.faq-item { border-bottom: 1px solid var(--gray-border); }
.faq-item:last-child { border-bottom: none; }
.faq-item summary {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 18px 24px;
	font-size: 15px;
	font-weight: 700;
	color: var(--text);
	cursor: pointer;
	list-style: none;
	user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
	content: ''; margin-left: auto; flex-shrink: 0;
	width: 20px; height: 20px;
	background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='none'%3E%3Cpath d='M5 8l5 5 5-5' stroke='%236B7280' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
	transition: transform 0.2s;
}
.faq-item[open] summary::after { transform: rotate(180deg); }
.faq-q {
	font-size: 15px;
	font-weight: 800;
	color: var(--text);
	flex-shrink: 0;
}
.faq-answer {
	padding: 0 24px 20px 24px;
	font-size: 14px;
	color: var(--gray-dark);
	line-height: 1.7;
}

@media screen and (max-width: 767px) {
	.faq-filter { padding: 12px 16px; gap: 6px; }
	.faq-filter-btn { padding: 9px 12px 10px; font-size: 13px; }
	.faq-accordion { padding: 0 16px; }
	.faq-group-title { padding: 16px; font-size: 18px; }
	.faq-item summary { padding: 14px 16px; font-size: 14px; }
	.faq-answer { padding: 10px 16px 30px 16px; font-size: 13px; }
	.guide-accordion { padding: 0 16px; }
	.guide-group-title { padding: 16px; font-size: 18px; }
	.guide-step-title,
	.guide-def-term { padding: 14px 16px; font-size: 14px; }
	.guide-answer { padding: 10px 16px 30px 16px; font-size: 13px; }
	.guide-def-desc { padding: 0 16px 16px; font-size: 13px; }
	.guide-cta { margin: 24px 16px 0; padding: 24px 16px; }
	.guide-cta-text { font-size: 14px; }
	.guide-cta-btn { padding: 11px 24px; font-size: 14px; width: 100%; justify-content: center; }
}

/* ── 커스텀 클래스 ── */
.bg-gray { background: #f3f3f3 !important; }
.bg-white { background: #fff !important; }