.wp-block-new-theme-bonus-tiers.nt-bonus-tiers {
	box-sizing: border-box;
	margin: 24px 0;
}

.nt-bonus-tiers__title {
	color: var(--new-theme-color-ink, #1a4a66);
	font-family: var(--new-theme-font-heading, sans-serif);
	font-size: 24px;
	font-weight: 700;
	line-height: 1.2;
	margin: 0 0 24px;
}

.nt-bonus-tiers__grid {
	display: grid;
	gap: 16px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.nt-bonus-tier {
	background: var(--new-theme-color-bg-card, #f5fbff);
	border: 1px solid var(--new-theme-color-border, rgba(120, 180, 220, .45));
	border-radius: 16px;
	box-shadow: 0 4px 16px rgba(120, 190, 230, .12);
	padding: 24px 20px;
	text-align: center;
}

.nt-bonus-tier--featured {
	background: var(--new-theme-color-bg-deep, #c5e4f7);
	border-color: var(--new-theme-color-sky, #2b8fc4);
	border-width: 2px;
}

.nt-bonus-tier__number {
	background: var(--new-theme-color-sky, #2b8fc4);
	border-radius: 9999px;
	color: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 13px;
	font-weight: 700;
	height: 32px;
	margin-bottom: 14px;
	width: 32px;
}

.nt-bonus-tier__label {
	color: var(--new-theme-color-text-muted, #356b87);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: .04em;
	margin: 0 0 6px;
	text-transform: uppercase;
}

.nt-bonus-tier__amount {
	color: var(--new-theme-color-ink, #1a4a66);
	font-size: 28px;
	font-weight: 700;
	line-height: 1.1;
	margin: 0 0 4px;
}

.nt-bonus-tier__percent {
	color: var(--new-theme-color-sky, #2b8fc4);
	font-size: 18px;
	font-weight: 700;
	margin: 0 0 12px;
}

.nt-bonus-tier__details {
	border-top: 1px solid var(--new-theme-color-border, rgba(120, 180, 220, .45));
	list-style: none;
	margin: 12px 0 0;
	padding: 12px 0 0;
}

.nt-bonus-tier__details li {
	color: var(--new-theme-color-text-muted, #356b87);
	font-size: 13px;
	line-height: 1.5;
	margin: 0 0 4px;
	padding: 0;
}

.nt-bonus-tier__details li:last-child {
	margin: 0;
}

.nt-bonus-tier__details strong {
	color: var(--new-theme-color-ink, #1a4a66);
}

.nt-bonus-tier__cta {
	background: var(--new-theme-color-peach, #ffd4b8);
	border-radius: 9999px;
	color: var(--new-theme-color-peach-text, #7a4e2e);
	display: inline-block;
	font-size: 14px;
	font-weight: 700;
	margin-top: 18px;
	padding: 10px 24px;
	text-decoration: none;
	transition: background .2s;
}

.nt-bonus-tier__cta:hover {
	background: var(--new-theme-color-peach-hover, #ffe2cc);
	color: var(--new-theme-color-peach-text, #7a4e2e);
}

@media (max-width: 1024px) {
	.nt-bonus-tiers__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 767px) {
	.nt-bonus-tiers__title {
		font-size: 20px;
	}

	.nt-bonus-tiers__grid {
		grid-template-columns: 1fr;
	}
}
