body {
	font-family: 'Public Sans', sans-serif;
	background-color: #ffffff;
	color: #334155;
}

.btn-wealth {
	background: var(--wealth-primary);
	color: #fff;
	font-weight: 600;
	border-radius: 4px;
	padding: 12px 28px;
	border: none;
	transition: 0.2s;
}

.btn-wealth:hover {
	opacity: 0.95;
	color: #fff;
}

.portfolio-card {
	border: none;
	background: #fff;
	border-radius: 6px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
	border-left: 3px solid transparent;
	transition: 0.2s;
}

.portfolio-card:hover {
	border-left-color: var(--wealth-primary);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.text-white {
	--bs-text-opacity: 1;
	color: white !important;
}