/* 메인페이지 FAQ 래퍼 */
.main-faq-wrap {
	width: 100%;
	padding: 60px 0;
	background: #fafafa; /* 섹션 구분용 */
}

/* FAQ 내부 정렬 */
.main-faq-wrap .faq-section {
	max-width: 1200px;   /* 사이트 공통 콘텐츠 폭 */
	margin: 0 auto;
	padding: 0 20px;     /* 좌우 여백 */
}

/* 메인 FAQ 제목 */
.main-faq-wrap .faq-title {
	text-align: center;
	font-size: 26px;
	margin-bottom: 30px;
}

/* 메인 FAQ는 조금 더 시원하게 */
.main-faq-wrap .faq-list dt {
	font-size: 17px;
}

.main-faq-wrap .faq-list dd {
	font-size: 15px;
}


/* FAQ SECTION */
.faq-section {
	margin: 60px 0;
}

.faq-title {
	font-size: 24px;
	font-weight: 700;
	margin-bottom: 20px;
}

/* FAQ LIST */
.faq-list {
	border-top: 2px solid #222;
}

.faq-list dt {
	position: relative;
	padding: 18px 44px 18px 10px;
	cursor: pointer;
	font-size: 16px;
	font-weight: 600;
	border-bottom: 1px solid #ddd;
	background: #fff;
}

.faq-list dt:hover {
	background: #f7f7f7;
}

/* 화살표 */
.faq-list dt::after {
	content: "＋";
	position: absolute;
	right: 15px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 18px;
	color: #333;
	transition: transform 0.2s ease;
}

/* 열림 상태 */
.faq-list dt.active::after {
	content: "－";
	color: #cb001f; /* 포인트 컬러 */
}

/* 답변 */
.faq-list dd {
	margin: 0;
	padding: 0 10px;
	font-size: 15px;
	line-height: 1.7;
	color: #555;
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
	background: #fafafa;
}

.faq-list dd.open {
	padding: 15px 10px 20px;
}

/* 모바일 최적화 */
@media (max-width: 768px) {
	.faq-title {
		font-size: 20px;
	}

	.faq-list dt {
		font-size: 15px;
	}

	.faq-list dd {
		font-size: 14px;
	}
}
