.pf-savings {
	box-sizing: border-box;
	width: 100%;
	padding: 0 0 1em;
	font-family: inherit;
}

.pf-savings * {
	box-sizing: border-box;
}

.pf-savings__header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 12px;
}

.pf-savings__heading {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 15px;
	font-weight: bold;
	color: #0e2321;
}

.pf-savings__subtext {
	font-size: 11px;
	color: #666;
	font-weight: 400;
}

/* 3-Column Compact Grid */
.pf-savings__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 6px;
}

.pf-savings__card {
	position: relative;
	border-radius: 10px;
	padding: 12px 4px 10px;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

/* Tier 1: Light & Subtle */
.pf-savings__card--1 {
	background-color: #f2f7f4;
	border: 1px solid #cce3d4;
	color: #1e3d28;
}

/* Tier 2: Mid-tone Forest (Popular) */
.pf-savings__card--2 {
	background: linear-gradient(145deg, #386646, #294e34);
	border: 1px solid #294e34;
	color: #ffffff;
}

/* Tier 3: Deep Forest Accent (Best Value) */
.pf-savings__card--3 {
	background: linear-gradient(145deg, #1d3624, #122217);
	border: 1px solid #122217;
	color: #ffffff;
}

/* Badges */
.pf-savings__badge {
	position: absolute;
	top: -9px;
	background-color: #ffffff;
	color: #294e34;
	font-size: 9px;
	font-weight: 800;
	padding: 2px 6px;
	border-radius: 20px;
	letter-spacing: 0.3px;
	text-transform: uppercase;
	box-shadow: 0 2px 4px rgba(0,0,0,0.12);
	white-space: nowrap;
}

.pf-savings__badge--gold {
	background-color: #f7d070;
	color: #122217;
}

.pf-savings__amount {
	font-family: 'Lora', Georgia, serif;
	font-size: 20px;
	font-weight: bold;
	line-height: 1.1;
	white-space: nowrap;
	margin-bottom: 3px;
	margin-top: 5px;
}

.pf-savings__amount small {
	font-family: 'Lora', Georgia, serif;
	font-size: 14px;
	font-weight: 600;
}

.pf-savings__condition {
	font-family: 'Lora', Georgia, serif;
	font-size: 12px;
	line-height: 1.25;
	font-weight: 600;
	opacity: 0.9;
}