.a4y-personalization {
	margin: 24px 0;
	padding: clamp(20px, 3vw, 30px);
	border: 1px solid rgba(29, 63, 50, .14);
	border-radius: 22px;
	background: #faf8f2;
}
.a4y-personalization__heading {
	margin-bottom: 22px;
}
.a4y-personalization__heading span {
	font-size: 11px;
	font-weight: 800;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: #25745a;
}
.a4y-personalization__heading h3 {
	margin: 4px 0 0;
	font-size: clamp(22px, 3vw, 30px);
}
.a4y-option {
	min-width: 0;
	margin: 0 0 20px;
	padding: 0;
	border: 0;
}
.a4y-option:last-child {
	margin-bottom: 0;
}
.a4y-option legend {
	margin-bottom: 9px;
	font-size: 14px;
	font-weight: 750;
	color: #1a2b24;
}
.a4y-option .required {
	color: #b53c30;
}
.a4y-option select,
.a4y-option input[type="text"] {
	width: 100%;
	min-height: 48px;
	padding: 10px 13px;
	border: 1px solid #d6ddd8;
	border-radius: 12px;
	background: #fff;
}
.a4y-choice-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(92px, 1fr));
	gap: 9px;
}
.a4y-choice {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 7px;
	min-width: 0;
	padding: 9px;
	border: 1px solid #dfe3df;
	border-radius: 13px;
	background: #fff;
	cursor: pointer;
	transition: .2s ease;
}
.a4y-choice:hover {
	transform: translateY(-1px);
	border-color: #71a58f;
}
.a4y-choice:has(input:checked) {
	border-color: #1c6b51;
	box-shadow: 0 0 0 2px rgba(28, 107, 81, .13);
}
.a4y-choice input {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}
.a4y-choice__visual {
	display: grid;
	place-items: center;
	aspect-ratio: 1.4;
	overflow: hidden;
	border-radius: 8px;
	background: #f1f2ef;
}
.a4y-choice__visual img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.a4y-choice__visual i {
	display: block;
	width: 30px;
	height: 30px;
	border: 1px solid rgba(0, 0, 0, .12);
	border-radius: 50%;
	background: var(--swatch);
}
.a4y-choice__label {
	font-size: 12px;
	line-height: 1.25;
	text-align: center;
}
.a4y-choice__label small {
	display: block;
	margin-top: 3px;
	color: #63716a;
	font-size: 10px;
}
.a4y-file {
	display: grid;
	gap: 4px;
	padding: 17px;
	border: 1px dashed #8ca499;
	border-radius: 13px;
	background: #fff;
	cursor: pointer;
}
.a4y-file input {
	max-width: 100%;
	margin-bottom: 5px;
}
.a4y-file span {
	font-weight: 700;
}
.a4y-file small {
	color: #6b756f;
}
