.radio-item {
    display: flex;
    align-items: center;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 12px;
    font-size: 1.2rem;
    background: #f8fafc;
    margin-bottom: 8px;
    cursor: pointer;
}
.radio-item:has(input:checked) {
	border-color: #10b981;
	background: #f0fdf4;
	color: #065f46;
}
.radio-item input {
    width: 28px;
    height: 28px;
    margin-right: 20px;
}