/* MTT Gift Aid — Frontend styles */

.mtt-gift-aid {
	background: #263765;
	padding: 90px 0;
	position: relative;
	overflow: hidden;
}

.mtt-gift-aid::before {
	content: "";
	position: absolute;
	top: -200px;
	right: -200px;
	width: 600px;
	height: 600px;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
	pointer-events: none;
}

.mtt-gift-aid::after {
	content: "";
	position: absolute;
	bottom: -200px;
	left: -200px;
	width: 600px;
	height: 600px;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
	pointer-events: none;
}

.mtt-ga-inner {
	position: relative;
	z-index: 1;
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 32px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: center;
}

/* ===== Content column ===== */
.mtt-ga-eyebrow {
	display: inline-block;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.9);
	padding: 6px 14px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 999px;
	margin-bottom: 20px;
	font-family: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
}

.mtt-ga-title {
	font-family: 'Fraunces', Georgia, serif;
	font-size: clamp(30px, 3.4vw, 44px);
	font-weight: 400;
	line-height: 1.15;
	color: #fff;
	margin: 0 0 20px;
}

.mtt-ga-title em {
	font-style: normal;
	color: oklch(0.78 0.12 75);
}

.mtt-ga-content p {
	color: rgba(255, 255, 255, 0.8);
	font-size: 16px;
	line-height: 1.75;
	margin: 0 0 18px;
	font-family: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
}

.mtt-ga-content p:last-of-type {
	margin-bottom: 28px;
}

.mtt-ga-content p strong {
	color: #fff;
	font-weight: 600;
}

/* ===== CTA button ===== */
.mtt-ga-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 12px 22px;
	border-radius: 999px;
	font-size: 14.5px;
	font-weight: 700;
	letter-spacing: 0.01em;
	transition: all 0.2s;
	border: 1.5px solid transparent;
	cursor: pointer;
	text-decoration: none;
	font-family: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
	background: #fff;
	color: #263765;
}

.mtt-ga-btn:hover {
	background: #f3f5fb;
	text-decoration: none;
}

.mtt-ga-arr {
	transition: transform 0.2s;
}

.mtt-ga-btn:hover .mtt-ga-arr {
	transform: translateX(3px);
}

/* ===== Calculator card ===== */
.mtt-ga-calc {
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 22px;
	padding: 36px 32px;
}

.mtt-ga-calc-title {
	font-family: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.6);
	margin: 0 0 24px;
}

.mtt-ga-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 14px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mtt-ga-row:last-of-type {
	border-bottom: none;
	padding-bottom: 0;
}

.mtt-ga-row.total {
	margin-top: 4px;
}

.mtt-ga-row-label {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.75);
	font-weight: 500;
	font-family: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
	display: flex;
	align-items: center;
	gap: 6px;
	flex-wrap: wrap;
}

.mtt-ga-row-value {
	font-family: 'Fraunces', Georgia, serif;
	font-size: 26px;
	font-weight: 500;
	color: #fff;
	letter-spacing: -0.01em;
}

.mtt-ga-row.total .mtt-ga-row-label {
	color: #fff;
	font-weight: 700;
	font-size: 15px;
}

.mtt-ga-row.total .mtt-ga-row-value {
	color: oklch(0.78 0.12 75);
	font-size: 34px;
}

/* Badge (e.g. "+ 25%") */
.mtt-ga-badge {
	font-family: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
	font-size: 14px;
	font-weight: 700;
	color: oklch(0.78 0.12 75);
	background: rgba(210, 168, 90, 0.15);
	padding: 4px 10px;
	border-radius: 6px;
	display: inline-flex;
	align-items: center;
	gap: 4px;
	vertical-align: middle;
}

.mtt-ga-disclaimer {
	margin: 18px 0 0;
	font-size: 12.5px;
	color: rgba(255, 255, 255, 0.5);
	line-height: 1.55;
	text-align: center;
	font-family: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
	.mtt-ga-inner {
		grid-template-columns: 1fr;
		gap: 40px;
	}
}

@media (max-width: 640px) {
	.mtt-gift-aid {
		padding: 70px 0;
	}

	.mtt-ga-inner {
		padding: 0 20px;
	}

	.mtt-ga-calc {
		padding: 28px 24px;
	}

	.mtt-ga-row-value {
		font-size: 22px;
	}

	.mtt-ga-row.total .mtt-ga-row-value {
		font-size: 28px;
	}
}
