/**
 * Q&A page styles
 */

.qa-page-wrap {
	max-width: 42rem;
	margin: 0 auto;
	text-align: center;
}
.qa-page-wrap h1 {
	font-family: 'Orbitron', monospace;
}
.qa-page-wrap .qa-list {
	list-style: none;
	padding: 0;
	margin: 2rem 0 0;
	text-align: left;
	display: flex;
	flex-direction: column;
	gap: 3rem;
}
.qa-item {
	background: rgba(191, 0, 255, 0.06);
	overflow: hidden;
	box-shadow: 0 0 12px rgba(197, 132, 219, 0.15);
}
.qa-question {
	display: flex;
	font-family: 'Orbitron', monospace;
	align-items: flex-start;
	gap: 1rem;
	padding: 1.5rem 1.75rem;
	border-bottom: 2px solid rgba(191, 0, 255, 0.2);
}
.qa-q-badge {
	flex-shrink: 0;
	width: 40px;
	height: 40px;
	border-radius: 10px;
	background: rgba(191, 0, 255, 0.2);
	display: flex;
	align-items: center;
	justify-content: center;
}
.qa-q-badge svg {
	width: 22px;
	height: 22px;
	stroke: #c753ed;
}
.qa-question-text {
	font-weight: 900;
	color: var(--color-fg-default);
	line-height: 1.55;
	margin: 0;
	font-size: 1.2rem !important;
	color:#1cffb3;
}
.qa-answer {
	font-weight: 700;
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	padding: 1.5rem 1.75rem;
	font-size: 0.9rem !important;
}
.qa-a-badge {
	flex-shrink: 0;
	width: 40px;
	height: 40px;
	border-radius: 10px;
	background: rgba(191, 0, 255, 0.12);
	display: flex;
	align-items: center;
	justify-content: center;
}
.qa-a-badge svg {
	width: 22px;
	height: 22px;
	stroke: #c753ed;
}
.qa-answer-text {
	color: var(--color-fg-muted);
	line-height: 1.7;
	margin: 0;
}
