.faq-page {
	padding: 72px 0 110px;
	background: #fff;
	color: #111;
}

.faq-inner {
	width: min(1120px, calc(100% - 48px));
	margin: 0 auto;
}

.faq-heading { margin-bottom: 38px; }
.faq-heading__eyebrow { margin: 0 0 10px; color: #777; font-size: 14px; font-weight: 700; letter-spacing: .12em; }
.faq-heading h1 { margin: 0; font-family: 'ONE-Mobile-Title', 'Noto Sans KR', sans-serif; font-size: clamp(34px, 4vw, 52px); line-height: 1.2; letter-spacing: -.045em; }
.faq-heading p { margin: 16px 0 0; color: #666; font-size: 17px; line-height: 1.7; word-break: keep-all; }

.faq-tools {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 20px;
}

.faq-search {
	position: relative;
	flex: 1 1 580px;
	max-width: 640px;
}

.faq-search svg { position: absolute; top: 50%; left: 18px; width: 21px; height: 21px; fill: none; stroke: #777; stroke-linecap: round; stroke-width: 1.8; transform: translateY(-50%); pointer-events: none; }
.faq-search input { width: 100%; height: 56px; padding: 0 48px 0 52px; border: 1px solid #ccc; border-radius: 4px; outline: 0; background: #fff; color: #111; font-family: inherit; font-size: 16px; transition: border-color .2s, box-shadow .2s; }
.faq-search input:focus { border-color: #111; box-shadow: 0 0 0 3px rgba(0, 0, 0, .08); }
.faq-search__clear { position: absolute; top: 50%; right: 13px; display: none; width: 32px; height: 32px; padding: 0; border: 0; border-radius: 2px; background: #eee; color: #444; font-size: 20px; cursor: pointer; transform: translateY(-50%); }
.faq-search.has-value .faq-search__clear { display: block; }

.faq-count { flex: 0 0 auto; color: #777; font-size: 14px; }
.faq-count strong { color: #111; font-size: 20px; }

.faq-list { border-top: 2px solid #111; }
.faq-item { border-bottom: 1px solid #ddd; }
.faq-item h2 { margin: 0; }
.faq-question { display: grid; width: 100%; min-height: 82px; padding: 18px 10px; border: 0; background: transparent; color: #111; font-family: inherit; text-align: left; cursor: pointer; grid-template-columns: 28px 1fr 32px; align-items: center; gap: 13px; }
.faq-question:hover { background: #fafafa; }
.faq-question__mark { display: block; width: auto; height: auto; color: #111; font-size: 18px; font-weight: 800; }
.faq-question__text { font-size: 18px; font-weight: 700; line-height: 1.5; letter-spacing: -.025em; word-break: keep-all; transition: color .2s; }
.faq-question__toggle { position: relative; width: 32px; height: 32px; background: transparent; }
.faq-question__toggle::before,
.faq-question__toggle::after { position: absolute; top: 50%; left: 50%; width: 12px; height: 2px; background: #555; content: ''; transform: translate(-50%, -50%); transition: transform .2s; }
.faq-question__toggle::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-question[aria-expanded="true"] .faq-question__toggle::after { transform: translate(-50%, -50%) rotate(0); }
.faq-question[aria-expanded="true"] .faq-question__text { color: #111; }

.faq-answer { overflow: hidden; border-top: 1px solid #eee; background: #f7f7f7; }
.faq-answer[hidden] { display: none; }
.faq-answer__inner { display: grid; padding: 26px 62px 30px 51px; color: #555; font-size: 16px; line-height: 1.85; grid-template-columns: 28px 1fr; gap: 13px; }
.faq-answer__mark { color: #111; font-size: 18px; font-weight: 800; }
.faq-answer p { margin: 0; word-break: keep-all; }
.faq-answer p + p { margin-top: 10px; }
.faq-answer ul { margin: 15px 0 0; padding: 0; list-style: none; }
.faq-answer li { position: relative; margin-top: 8px; padding-left: 17px; }
.faq-answer li::before { position: absolute; top: .78em; left: 2px; width: 4px; height: 4px; border-radius: 50%; background: #555; content: ''; }
.faq-answer .faq-note { margin-top: 16px; padding: 12px 15px; border-left: 2px solid #777; border-radius: 0; background: #eee; color: #666; font-size: 14px; }

.faq-empty { display: none; padding: 70px 20px; color: #777; text-align: center; }
.faq-empty.is-visible { display: block; }

.faq-question:focus-visible,
.faq-search button:focus-visible { outline: 2px solid #111; outline-offset: 3px; }

@media screen and (max-width: 768px) {
	.faq-page { padding: 48px 0 78px; }
	.faq-inner { width: calc(100% - 32px); }
	.faq-heading { margin-bottom: 28px; }
	.faq-heading__eyebrow { font-size: 12px; }
	.faq-heading p { margin-top: 12px; font-size: 15px; }
	.faq-tools { align-items: flex-start; flex-direction: column; gap: 12px; }
	.faq-search { flex-basis: auto; width: 100%; max-width: none; }
	.faq-search input { height: 52px; font-size: 15px; }
	.faq-count { align-self: flex-end; }
	.faq-question { min-height: 74px; padding: 15px 2px; grid-template-columns: 24px 1fr 30px; gap: 9px; }
	.faq-question__mark { font-size: 16px; }
	.faq-question__text { font-size: 16px; }
	.faq-question__toggle { width: 30px; height: 30px; }
	.faq-answer__inner { padding: 22px 16px 25px 35px; font-size: 15px; grid-template-columns: 24px 1fr; gap: 9px; }
}
