/* 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;
	}
}
