.bestie-case-grid {
	display: flex;
	flex-direction: column;
	gap: 16px;
	max-width: 720px;
	margin: 24px 0;
}

.bestie-case-card {
	border: 1px solid #e2ded4;
	border-radius: 12px;
	padding: 18px 20px;
	background: #FFFDF7;
	box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}

.bestie-case-toggle {
	cursor: pointer;
	margin: 4px 0 0;
	font-size: 1.1em;
}

.bestie-toggle-arrow {
	color: #DF8431;
}

.bestie-difficulty {
	display: inline-block;
	font-size: 0.75em;
	font-weight: 600;
	padding: 2px 10px;
	border-radius: 999px;
	text-transform: uppercase;
	letter-spacing: 0.03em;
}
.bestie-diff-foundational { background: #E4F3EA; color: #1F6B44; }
.bestie-diff-intermediate { background: #FDF0DA; color: #A5641A; }
.bestie-diff-advanced { background: #FBE3E3; color: #A33232; }

.bestie-solved-badge {
	margin-left: 8px;
	font-size: 0.8em;
	color: #1F6B44;
	font-weight: 600;
}

.bestie-case-wrapper {
	margin-top: 12px;
	border-top: 1px solid #efe9dc;
	padding-top: 12px;
}

.bestie-scenario {
	line-height: 1.5;
	color: #2E2824;
}

.bestie-choices {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin: 12px 0;
}

.bestie-choice-option {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	padding: 10px 12px;
	border: 1px solid #e2ded4;
	border-radius: 8px;
	cursor: pointer;
	background: #fff;
}
.bestie-choice-option:hover {
	border-color: #DF8431;
}

.bestie-btn {
	display: inline-block;
	background: #DF8431;
	color: #fff;
	border: none;
	border-radius: 8px;
	padding: 10px 18px;
	font-weight: 600;
	cursor: pointer;
	text-decoration: none;
}
.bestie-btn:hover {
	background: #C56F24;
	color: #fff;
}

.bestie-result {
	margin-top: 14px;
	padding: 14px 16px;
	border-radius: 8px;
}

.bestie-correct { background: #E4F3EA; border: 1px solid #B7DFC5; }
.bestie-incorrect { background: #FBE3E3; border: 1px solid #F0BABA; }

.bestie-result-headline {
	font-weight: 700;
	margin: 0 0 8px;
}

.bestie-source {
	font-size: 0.9em;
	color: #555;
}

.bestie-disclaimer {
	font-size: 0.8em;
	color: #888;
	font-style: italic;
	margin-top: 10px;
}

.bestie-progress {
	display: flex;
	gap: 24px;
	margin: 20px 0;
}
.bestie-progress-stat {
	text-align: center;
	background: #FFF5DA;
	border-radius: 10px;
	padding: 14px 20px;
}
.bestie-progress-stat strong {
	display: block;
	font-size: 1.6em;
	color: #DF8431;
}
