@charset "utf-8";

.faq {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    box-sizing: border-box;
}

/* 헤더 */
.faq__head {
    text-align: center;
    margin-bottom: 50px;
    font-family: 'Noto Serif KR', serif;
}
.faq__cate {
    font-size: 30px;
    font-weight: 400;
    color: #bb7c5d;
    margin-bottom: 6px;
}
.faq__title {
    font-size: 30px;
    font-weight: 400;
    color: #bb7c5d;
}
/* 리스트 */
.faq__list {
    padding: 0;
    margin: 0;
    list-style: none;
}
.faq__item {
    margin-bottom: 18px;
    border: 0;
}

/* 질문 (배경 이미지) */
.faq__q {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 26px 40px;
    border: 0;
    cursor: pointer;
    text-align: left;
    background: url('/skin/latest/basic/img/faq_bg.png') no-repeat center / cover;
    border-radius: 4px;
    transition: 0.3s;
}
.faq__q:hover {
    filter: brightness(1.02);
}
.faq__qtxt {
    font-family: 'Noto Serif KR', serif;
    font-size: 20px;
    font-weight: 400;
    color: #bb7c5d;
}

/* Q. A. 마크 */
.faq__mark {
    flex-shrink: 0;
    font-family: 'Noto Serif KR', serif;
    font-size: 20px;
    font-weight: 400;
    color: #bb7c5d;
}

/* 답변 */
/* 답변 */
.faq__a {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    padding: 0 40px;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.4s ease, padding 0.4s ease;
}
.faq__item.--active .faq__a {
    max-height: 500px;
    opacity: 1;
    padding: 22px 40px 30px;
}
.faq__atxt {
    font-family: 'Pretendard', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #c49f84;
    line-height: 1.8;
}
.faq__atxt p {
    margin: 0;
}

/* 빈 목록 */
.faq__empty {
    text-align: center;
    padding: 60px 0;
    color: #999;
    list-style: none;
}