/**
 * Wrapper
 */

.wrc-wrapper {

	max-width: 900px;
	margin: 0 auto;
	padding: 40px 20px;

}

/**
 * Header
 */

.wrc-header {

	margin-bottom: 50px;
	text-align: center;

}

.wrc-header h2 {

	margin-bottom: 15px;
	font-size: clamp(2rem, 4vw, 3rem);
	line-height: 1.2;

}

.wrc-header p {

	margin: 0;
	font-size: 1.1rem;
	opacity: 0.8;

}

/**
 * Formular
 */

.wrc-form {

	display: flex;
	flex-direction: column;
	gap: 30px;

}

/**
 * Fragen
 */

.wrc-question {

	padding: 30px;
	border: 1px solid #e5e5e5;
	border-radius: 20px;
	background: #ffffff;
	transition: all 0.3s ease;

}

.wrc-question:hover {

	border-color: #cccccc;

}

.wrc-question h3 {

	margin-top: 0;
	margin-bottom: 25px;
	font-size: 1.25rem;
	line-height: 1.4;

}

/**
 * Antworten
 */

.wrc-answers {

	display: flex;
	flex-direction: column;
	gap: 15px;

}

.wrc-answer {

	display: flex;
	align-items: center;
	gap: 12px;
	cursor: pointer;
	padding: 14px 16px;
	border-radius: 12px;
	background: #f7f7f7;
	transition: all 0.2s ease;

}

.wrc-answer:hover {

	background: #efefef;

}

.wrc-answer input[type="radio"] {

	margin: 0;
	transform: scale(1.2);
	cursor: pointer;

}

.wrc-answer span {

	line-height: 1.4;

}

/**
 * Fehlerzustand
 */

.wrc-error {

	border-color: #d63638;

}

/**
 * Button Bereich
 */

.wrc-submit {

	margin-top: 10px;
	text-align: center;

}

/**
 * Buttons
 */

.wrc-button,
#wrc-evaluate {

	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 16px 28px;
	border: none;
	border-radius: 14px;
	background: #111111;
	color: #ffffff;
	font-size: 1rem;
	font-weight: 600;
	text-decoration: none;
	cursor: pointer;
	transition: all 0.3s ease;

}

.wrc-button:hover,
#wrc-evaluate:hover {

	transform: translateY(-2px);
	opacity: 0.92;

}

/**
 * Ergebnisbox
 */

.wrc-result {

	margin-top: 50px;

}

.wrc-result-inner {

	padding: 40px;
	border-radius: 24px;
	background: #f4f4f4;
	text-align: center;

}

.wrc-result-inner h3 {

	margin-top: 0;
	margin-bottom: 20px;
	font-size: clamp(1.8rem, 3vw, 2.4rem);
	line-height: 1.2;

}

.wrc-result-inner p {

	max-width: 700px;
	margin: 0 auto 30px;
	font-size: 1.1rem;
	line-height: 1.7;

}

/**
 * CTA
 */

.wrc-cta {

	margin-top: 20px;

}

/**
 * Responsive
 */

@media (max-width: 767px) {

	.wrc-wrapper {

		padding: 20px 15px;

	}

	.wrc-question {

		padding: 22px;

	}

	.wrc-answer {

		align-items: flex-start;

	}

	.wrc-result-inner {

		padding: 30px 20px;

	}

}