/* =========================
   Dream Tour FAQ Archive
========================= */

.dreamtour-faq-list {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.dreamtour-faq-item {
	background: #fff;
	border: 1px solid #e7e7e7;
	border-radius: 18px;
	overflow: hidden;
	box-shadow: 0 8px 24px rgba(0,0,0,0.04);
}

.dreamtour-faq-question {
	width: 100%;
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 22px 22px;
	border: 0;
	background: #fff;
	cursor: pointer;
	text-align: left;
}

.dreamtour-faq-question:hover {
	background: #fafafa;
}

.dreamtour-faq-q {
	flex: 0 0 auto;
	font-size: 18px;
	font-weight: 800;
	color: #1565d8;
}

.dreamtour-faq-question-text {
	flex: 1;
	font-size: 18px;
	line-height: 1.5;
	font-weight: 700;
	color: #111;
}

.dreamtour-faq-icon {
	flex: 0 0 auto;
	width: 12px;
	height: 12px;
	border-right: 2px solid #555;
	border-bottom: 2px solid #555;
	transform: rotate(45deg);
	transition: transform .2s ease;
	margin-top: -4px;
}

.dreamtour-faq-question[aria-expanded="true"] .dreamtour-faq-icon {
	transform: rotate(225deg);
	margin-top: 4px;
}

.dreamtour-faq-answer {
	border-top: 1px solid #efefef;
	background: #fcfcfc;
}

.dreamtour-faq-answer-inner {
	display: grid;
	grid-template-columns: 34px minmax(0, 1fr);
	gap: 14px;
	padding: 22px;
}

.dreamtour-faq-a {
	font-size: 18px;
	font-weight: 800;
	color: #111;
}

.dreamtour-faq-content {
	font-size: 15px;
	line-height: 1.9;
	color: #555;
}

.dreamtour-faq-content p:last-child {
	margin-bottom: 0;
}

@media (max-width: 768px) {
	.dreamtour-faq-question {
		padding: 18px 16px;
	}

	.dreamtour-faq-question-text {
		font-size: 16px;
	}

	.dreamtour-faq-answer-inner {
		grid-template-columns: 28px minmax(0, 1fr);
		padding: 18px 16px;
	}
}

