.selection-help-primary-section {
	display: flex;
	flex-flow: column;
	gap: 16px;
	padding: 20px;
	margin: 32px 16px 0;
	border-radius: 28px;
	background-color: $color-green;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	background-image: url('/images/embedded/components-selection-help-primary-section-inline-1.png');
	color: $color-white;
	box-sizing: border-box;

	@include retina {
		background-image: url('/images/embedded/components-selection-help-primary-section-inline-2.png');
	}

	@include desktop {
		flex-flow: row nowrap;
		align-items: center;
		align-self: center;
		margin-top: 80px;
		width: calc(100% - 32px);
		max-width: $width-desktop;
		padding: 40px;
		border-radius: 32px;
		background-image: url('/images/embedded/components-selection-help-primary-section-inline-3.png');

		@include retina {
			background-image: url('/images/embedded/components-selection-help-primary-section-inline-4.png');
		}
	}
}

.selection-help-primary-section__main {
	display: flex;
	flex-flow: column;
	gap: 10px;

	@include desktop {
		flex: 1;
		gap: 12px;
	}

	b {
		font-size: 24px;
		font-weight: 700;
		letter-spacing: -0.03em;

		@include desktop {
			font-size: 38px;
		}
	}

	p {
		font-size: 14px;
		line-height: 16px;

		@include desktop {
			font-size: 16px;
			line-height: 18px;
		}
	}
}

.selection-help-primary-section__footer {
	display: flex;
	flex-flow: column;
	gap: 8px;

	@include desktop {
		flex-flow: row nowrap;
		gap: 10px;
	}
}

.selection-help-primary-section__btn {
	$self: &;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 54px;
	padding: 0px 18px;
	border-radius: 14px;
	font-weight: 500;
	font-size: 14px;
	line-height: 16px;
	color: $color-white;
	box-sizing: border-box;

	&:not(#{ $self }--primary) {
		background-color: #f57c00;

		@include desktop {
			&:hover {
				background-color: darken(#f57c00, 2.5);
			}
		}
	}

	@include desktop {
		min-height: 64px;
		padding: 0px 24px;
		border-radius: 16px;
		font-size: 16px;
		line-height: 18px;
	}

	&--primary {
		border: 1px solid $color-white;
	}
}
