.pbc-preview {
	max-width: 920px;
}

.pbc-intro {
	margin-bottom: 30px;
}

.pbc-panel {
	padding: clamp(20px, 4vw, 36px);
	border: 1px solid rgba(75, 98, 110, .09);
	border-radius: 24px;
	background: #fffefa;
	box-shadow: 0 12px 36px rgba(67, 57, 40, .055);
}

.pbc-choices {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
}

.pbc-choice {
	display: flex;
	min-width: 0;
	min-height: 138px;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	gap: 10px;
	padding: 22px 24px;
	border: 1px solid rgba(75, 98, 110, .12);
	border-radius: 18px;
	background: #fff;
	color: #26323a;
	text-align: left;
	cursor: pointer;
	transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.pbc-choice:hover {
	transform: translateY(-2px);
	border-color: rgba(66, 109, 128, .42);
	box-shadow: 0 12px 28px rgba(67, 57, 40, .08);
}

.pbc-choice:focus-visible,
.pbc-change:focus-visible {
	outline: 3px solid #426d80;
	outline-offset: 3px;
}

.pbc-amount {
	color: #315f70;
	font-size: clamp(22px, 3vw, 30px);
	font-weight: 800;
	letter-spacing: -.025em;
	line-height: 1.15;
	white-space: nowrap;
}

.pbc-description {
	color: #69747a;
	font-size: 15px;
	line-height: 1.45;
}

.pbc-summary {
	text-align: center;
}

.pbc-summary-value {
	margin: 8px 0 12px;
	color: #315f70;
	font-size: clamp(24px, 4vw, 34px);
	font-weight: 750;
	line-height: 1.25;
}

.pbc-change {
	padding: 8px 12px;
	border: 0;
	background: transparent;
	color: #426d80;
	font: inherit;
	text-decoration: underline;
	text-underline-offset: 3px;
	cursor: pointer;
}

.pbc-developer-note {
	margin: 30px 0 4px;
	color: #69747a;
	font-size: 14px;
}

@media (max-width: 600px) {
	.pbc-preview {
		width: min(100% - 32px, 480px);
		padding-top: 36px;
	}

	.pbc-panel {
		padding: 16px;
		border-radius: 20px;
	}

	.pbc-choices {
		gap: 12px;
	}

	.pbc-choice {
		min-height: 126px;
		gap: 8px;
		padding: 16px 12px;
		border-radius: 16px;
	}

	.pbc-amount {
		font-size: clamp(17px, 5vw, 21px);
	}

	.pbc-description {
		font-size: 13px;
	}
}

@media (max-width: 350px) {
	.pbc-choices {
		grid-template-columns: minmax(0, 1fr);
	}

	.pbc-choice {
		min-height: 96px;
		padding: 18px;
	}

	.pbc-amount {
		font-size: 23px;
	}
}
