.tibettour-qna {
	--qna-question: #173f98;
	--qna-answer: #ff6b35;
	--qna-title: #ef4f00;
	max-width: 1120px;
	margin: 0 auto;
	padding: 0;
	color: #171717;
	font-family: "Noto Sans KR", "Apple SD Gothic Neo", "Malgun Gothic", sans-serif;
	box-sizing: border-box;
}

.tibettour-qna *,
.tibettour-qna *::before,
.tibettour-qna *::after {
	box-sizing: inherit;
}

.tibettour-qna__header {
	display: grid;
	grid-template-columns: 128px minmax(0, 1fr) 128px;
	align-items: center;
	gap: 18px;
	margin-bottom: 42px;
	text-align: center;
}

.tibettour-qna__heading {
	min-width: 0;
}

.tibettour-qna__icon {
	display: block;
	width: 100%;
	max-width: 128px;
	height: 128px;
	margin: 0 auto;
	object-fit: contain;
}

.tibettour-qna__title {
	margin: 0;
	color: var(--qna-title) !important;
	font-size: clamp(52px, 6.2vw, 78px) !important;
	font-weight: 800 !important;
	line-height: 1.08 !important;
	letter-spacing: -0.045em;
	word-break: keep-all;
}

.tibettour-qna__subtitle {
	margin: 16px 0 0;
	color: #3d241a !important;
	font-size: clamp(18px, 2vw, 25px) !important;
	font-weight: 400;
	line-height: 1.55;
	word-break: keep-all;
}

.tibettour-qna__list {
	display: grid;
	gap: 34px;
}

.tibettour-qna__question-wrap {
	margin: 0 0 12px;
}

.tibettour-qna__question,
.tibettour-qna__question:hover,
.tibettour-qna__question:focus,
.tibettour-qna__question:active,
.tibettour-qna__question:visited {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 14px;
	max-width: calc(100% - 28px);
	min-height: 58px;
	padding: 12px 52px 12px 22px;
	border: 2px solid var(--qna-question) !important;
	border-radius: 15px;
	background: #fff !important;
	background-image: none !important;
	color: var(--qna-question) !important;
	-webkit-text-fill-color: var(--qna-question) !important;
	font: inherit;
	font-size: clamp(19px, 2vw, 30px);
	font-weight: 800;
	line-height: 1.3;
	text-align: left;
	text-decoration: none !important;
	box-shadow: none !important;
	cursor: pointer;
	appearance: none;
	-webkit-appearance: none;
	transition: none;
}

.tibettour-qna__question::after {
	content: "";
	position: absolute;
	left: 26px;
	bottom: -12px;
	width: 20px;
	height: 20px;
	background: #fff;
	border-right: 2px solid var(--qna-question);
	border-bottom: 2px solid var(--qna-question);
	transform: rotate(45deg);
}

.tibettour-qna__question:hover,
.tibettour-qna__question:focus-visible {
	background: #fff !important;
	color: var(--qna-question) !important;
	-webkit-text-fill-color: var(--qna-question) !important;
}

.tibettour-qna__question:focus-visible {
	outline: 3px solid rgba(23, 63, 152, 0.22);
	outline-offset: 3px;
}

.tibettour-qna__question span,
.tibettour-qna__question:hover span,
.tibettour-qna__question:focus span,
.tibettour-qna__question:active span {
	color: var(--qna-question) !important;
	-webkit-text-fill-color: var(--qna-question) !important;
}

.tibettour-qna__number {
	flex: 0 0 auto;
}

.tibettour-qna__question-text {
	word-break: keep-all;
}

.tibettour-qna__toggle {
	position: absolute;
	right: 20px;
	top: 50%;
	width: 18px;
	height: 18px;
	transform: translateY(-50%);
}

.tibettour-qna__toggle::before,
.tibettour-qna__toggle::after {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	width: 16px;
	height: 2px;
	background: var(--qna-question) !important;
	transform: translate(-50%, -50%);
	transition: transform 0.2s ease, opacity 0.2s ease;
}

.tibettour-qna__toggle::after {
	transform: translate(-50%, -50%) rotate(90deg);
}

.tibettour-qna__item.is-open .tibettour-qna__toggle::after {
	opacity: 0;
	transform: translate(-50%, -50%) rotate(0);
}

.tibettour-qna__answer {
	overflow: hidden;
	border: 2px solid var(--qna-answer);
	border-radius: 16px;
	background: #fff;
}

.tibettour-qna__answer[hidden] {
	display: none;
}

.tibettour-qna__answer-inner {
	padding: 20px 26px;
	font-size: clamp(16px, 1.6vw, 22px);
	line-height: 1.65;
	word-break: keep-all;
}

@media (max-width: 900px) {
	.tibettour-qna__header {
		grid-template-columns: 96px minmax(0, 1fr) 96px;
	}

	.tibettour-qna__icon {
		max-width: 96px;
		height: 96px;
	}

	.tibettour-qna__title {
		font-size: clamp(40px, 6vw, 58px) !important;
	}
}

@media (max-width: 767px) {
	.tibettour-qna {
		padding: 0 14px;
	}

	.tibettour-qna__header {
		grid-template-columns: 68px minmax(0, 1fr) 68px;
		gap: 10px;
		margin-bottom: 30px;
	}

	.tibettour-qna__icon {
		max-width: 68px;
		height: 68px;
	}

	.tibettour-qna__title {
		font-size: clamp(31px, 8vw, 44px) !important;
	}

	.tibettour-qna__subtitle {
		margin-top: 10px;
		font-size: 16px !important;
	}

	.tibettour-qna__list {
		gap: 24px;
	}

	.tibettour-qna__question,
	.tibettour-qna__question:hover,
	.tibettour-qna__question:focus,
	.tibettour-qna__question:active {
		width: 100%;
		max-width: 100%;
		min-height: 52px;
		padding: 11px 44px 11px 16px;
		border-radius: 12px;
		gap: 8px;
	}

	.tibettour-qna__question::after {
		left: 20px;
		bottom: -10px;
		width: 16px;
		height: 16px;
	}

	.tibettour-qna__answer-inner {
		padding: 17px 18px;
	}
}

@media (max-width: 480px) {
	.tibettour-qna__header {
		grid-template-columns: 52px minmax(0, 1fr) 52px;
	}

	.tibettour-qna__icon {
		max-width: 52px;
		height: 52px;
	}

	.tibettour-qna__title {
		font-size: 29px !important;
	}

	.tibettour-qna__subtitle {
		font-size: 15px !important;
	}

	.tibettour-qna__question,
	.tibettour-qna__question:hover,
	.tibettour-qna__question:focus,
	.tibettour-qna__question:active {
		font-size: 18px;
	}

	.tibettour-qna__answer-inner {
		font-size: 15px;
		line-height: 1.7;
	}
}

@media (prefers-reduced-motion: reduce) {
	.tibettour-qna__toggle::before,
	.tibettour-qna__toggle::after {
		transition: none;
	}
}