.setr-combined,
.setr-combined * {
	box-sizing: border-box;
}

.setr-combined {
	width: 100%;
	max-width: 100%;
	min-width: 0;
	overflow-wrap: anywhere;
}

.setr-combined__chooser {
	padding: clamp(1.35rem, 3.5vw, 2.35rem);
	border: 1px solid #d9e2ec;
	border-radius: 16px;
	background: #fff;
	box-shadow: 0 14px 38px rgba(0, 11, 88, 0.1);
	color: #1b252f;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
	text-align: center;
}

.setr-combined__chooser h2 {
	margin: 0;
	color: #000b58;
	font-family: Montserrat, Arial, sans-serif;
	font-size: clamp(1.65rem, 4vw, 2.25rem);
	font-weight: 800;
	line-height: 1.2;
}

.setr-combined__chooser > p {
	margin: 0.55rem auto 1.5rem;
	max-width: 48rem;
	color: #526173;
	line-height: 1.55;
}

.setr-combined__choices {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem;
	max-width: 52rem;
	margin: 0 auto;
}

.setr-combined .setr-combined__choice {
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
	align-items: center;
	justify-content: center;
	min-width: 0;
	min-height: 128px;
	height: auto;
	padding: 1.2rem;
	border: 2px solid #3442a3;
	border-radius: 10px;
	background: #f4f8ff;
	color: #000b58;
	font: inherit;
	line-height: 1.35;
	text-align: center;
	white-space: normal;
	cursor: pointer;
}

.setr-combined__choice strong {
	font-family: Montserrat, Arial, sans-serif;
	font-size: 1.1rem;
	font-weight: 800;
}

.setr-combined__choice span {
	color: #526173;
}

.setr-combined .setr-combined__choice:hover,
.setr-combined .setr-combined__choice:focus-visible {
	border-color: #ff5a0f;
	background: #fff2ec;
	outline: none;
	box-shadow: 0 0 0 3px rgba(255, 90, 15, 0.2);
}

.setr-combined__panel[hidden],
.setr-combined__chooser[hidden] {
	display: none !important;
}

.setr-combined .setr-combined__back {
	display: inline-flex;
	max-width: 100%;
	min-height: 44px;
	height: auto;
	margin: 0 0 0.75rem;
	padding: 0.45rem 0;
	border: 0;
	background: transparent;
	color: #3442a3;
	font: inherit;
	font-weight: 700;
	line-height: 1.3;
	text-decoration: underline;
	white-space: normal;
	cursor: pointer;
}

@media (max-width: 767px) {
	.setr-combined__choices {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 479px) {
	.setr-combined__chooser {
		padding: 1.25rem 1rem;
		border-radius: 12px;
	}

	.setr-combined .setr-combined__choice,
	.setr-combined .setr-combined__back {
		width: 100%;
	}
}
