/* =========================================================
   자주묻는질문 (faq.php) — page.css 와 함께 로드
   ========================================================= */
.faq-sec { position: relative; padding-top: 36px; padding-bottom: 72px; }
.faq { position: relative; z-index: 1; }

.faq__item { border-bottom: 1px solid #eaedf0; }
.faq__item:first-child { border-top: 1px solid #eaedf0; }
.faq__item.is-open { background: #fbfcfd; }

.faq__q {
    width: 100%; display: flex; align-items: center; gap: 16px;
    padding: 22px 10px; background: none; border: 0; cursor: pointer; text-align: left;
}
.faq__num { flex-shrink: 0; width: 22px; text-align: center; font-size: 16px; font-weight: 700; color: #333d4b; }
.faq__q .tag { flex-shrink: 0; }
.faq__qtext { flex: 1; font-size: 16px; font-weight: 600; color: #333d4b; }
.faq__arrow { flex-shrink: 0; color: #b0b8c1; font-size: 18px; transition: transform .25s; }
.faq__item.is-open .faq__arrow { transform: rotate(180deg); color: #4e5968; }

.faq__a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq__item.is-open .faq__a { max-height: 360px; }
.faq__a p { margin: 0; padding: 2px 10px 24px 60px; font-size: 15px; line-height: 1.75; color: #4e5968; }

/* 워터마크 (브랜드 로고, 옅게) */
.faq-watermark {
    position: absolute; right: 0; bottom: 80px; width: 360px; max-width: 32%;
    opacity: .045; pointer-events: none; z-index: 0;
}
.faq-watermark img { width: 100%; display: block; }

@media (max-width: 640px) {
    .faq__q { gap: 9px; padding: 18px 4px; }
    .faq__num { display: none; }
    .faq__qtext { font-size: 14.5px; }
    .faq__a p { padding-left: 12px; font-size: 14px; }
}
