/**
 * Zakat giving page (slug `zakat`). Loaded only where the marker class `ab-zk-`
 * appears in the content (inc/enqueue.php) — never site-wide. Distinct from the
 * Zakat Policy page (marker `ab-zakat-`): this is the donor-facing giving page.
 *
 * Values follow the Figma "Zakat CHILD" frame. Brand colours use the theme.json
 * presets; literal hexes are the design's exact values where they sit between
 * tokens. The hero give-form is self-contained (ab-zk-form + zakat-child.js); it
 * does not reuse the ab-giv-form components.
 */

/* Shared rail + heading atoms ---------------------------------------------- */
.ab-zk-elig__inner,
.ab-zk-story__inner,
.ab-zk-policy__inner,
.ab-zk-calc__inner,
.ab-zk-impact__inner,
.ab-zk-faq__inner,
.ab-zk-cta__inner {
	max-width: var(--wp--style--global--wide-size, 1200px);
	margin-inline: auto;
	padding-inline: clamp(1.25rem, 5vw, 3.75rem);
}

.ab-zk-eyebrow {
	margin: 0;
	font-family: var(--wp--preset--font-family--sans);
	font-size: 0.875rem;
	font-weight: 500;
	line-height: 1;
	letter-spacing: 1.4px;
	text-transform: uppercase;
}
.ab-zk-eyebrow--blue { color: var(--wp--preset--color--ab-blue); }
.ab-zk-eyebrow--white { color: #fff; }

.ab-zk-h2 {
	margin: 0;
	font-family: var(--wp--preset--font-family--serif);
	font-size: clamp(1.875rem, 1.3rem + 2vw, 2.625rem);
	line-height: 1.15;
	font-weight: 600;
	text-transform: capitalize;
	color: var(--wp--preset--color--ab-navy);
}
.ab-zk-h2--white { color: #fff; }
.ab-zk-h2--center { text-align: center; }
.ab-zk-h2--sans { font-family: var(--wp--preset--font-family--sans); font-weight: 600; }

.ab-zk-link {
	display: inline-block;
	font-family: var(--wp--preset--font-family--sans);
	font-size: 1rem;
	font-weight: 500;
	text-decoration: none;
	color: #0a5a95;
}
.ab-zk-link:hover,
.ab-zk-link:focus-visible { text-decoration: underline; }

/* 1. Hero ------------------------------------------------------------------ */
.ab-zk-hero {
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: stretch;
}
/* The panel + photo are direct children of a wp-block-group, so WordPress's
   global block-gap rule (:where(.wp-block-group) > * + *) stamps a margin on the
   second child. In a grid that pushes it off its row — zero it out. */
.ab-zk-hero > * { margin-block: 0; }

.ab-zk-hero__panel {
	background: #faf8f4;
	padding: clamp(2.5rem, 4vw, 6.25rem) clamp(1.25rem, 5vw, 6.25rem);
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.ab-zk-hero__inner {
	width: 100%;
	max-width: 600px;
	margin-inline: auto;
	display: flex;
	flex-direction: column;
	gap: 2.5rem;
}
.ab-zk-hero__text {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
	text-align: center;
}
.ab-zk-hero__title {
	margin: 0;
	font-family: var(--wp--preset--font-family--serif);
	font-size: clamp(2.5rem, 1.6rem + 3.4vw, 4rem);
	line-height: 1.08;
	font-weight: 700;
	text-transform: capitalize;
	color: var(--wp--preset--color--ab-navy);
}
.ab-zk-hero__desc {
	margin: 0;
	font-family: var(--wp--preset--font-family--sans);
	font-size: 1.25rem;
	line-height: 1.5;
	color: #52525b;
}
.ab-zk-hero__pledge {
	margin: 0;
	padding: 0.75rem 2.5rem;
	background: #f5fffe;
	border-left: 4px solid var(--wp--preset--color--ab-green);
	border-radius: 4px;
	font-family: var(--wp--preset--font-family--sans);
	font-size: 1.125rem;
	line-height: 1.6;
	color: #334e68;
}
.ab-zk-hero__media {
	position: relative;
	background: var(--wp--preset--color--ab-navy);
	min-height: 320px;
}
.ab-zk-hero__media img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.ab-zk-hero__media img[src=""] { display: none; }

/* Hero give-form ----------------------------------------------------------- */
.ab-zk-form {
	background: #fff;
	border: 0.6px solid #d4d4d8;
	border-radius: 4px;
	padding: 1.5625rem;
	display: flex;
	flex-direction: column;
	gap: 0.9375rem;
	text-align: left;
}
.ab-zk-form__freq { margin: 0; padding: 0; border: 0; }
.ab-zk-seg {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0;
	padding: 4px;
	background: #f5f2ed;
	border-radius: 4px;
}
.ab-zk-seg__opt {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0.625rem;
	border-radius: 3px;
	font-family: var(--wp--preset--font-family--sans);
	font-size: 0.9375rem;
	font-weight: 500;
	color: #2c2c33;
	cursor: pointer;
}
.ab-zk-seg__opt input { position: absolute; opacity: 0; inset: 0; margin: 0; cursor: pointer; }
.ab-zk-seg__opt:has(input:checked),
.ab-zk-seg__opt.is-active { background: var(--wp--preset--color--ab-green); color: #fff; }

.ab-zk-form__label {
	margin: 0;
	font-family: var(--wp--preset--font-family--sans);
	font-size: 0.8125rem;
	font-weight: 400;
	letter-spacing: 0.4px;
	text-transform: uppercase;
	color: #52525b;
}
.ab-zk-form__amounts { display: flex; flex-direction: column; gap: 0.9375rem; }
.ab-zk-amtgrid {
	margin: 0;
	padding: 0;
	border: 0;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0.625rem;
}
.ab-zk-amt {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 2px;
	padding: 0.8125rem 0.625rem;
	background: #faf8f4;
	border: 0.6px solid #d4d4d8;
	border-radius: 4px;
	font-family: var(--wp--preset--font-family--sans);
	font-size: 1rem;
	color: #a1a1aa;
	cursor: pointer;
	text-align: center;
}
.ab-zk-amt input[type="radio"] { position: absolute; opacity: 0; inset: 0; margin: 0; cursor: pointer; }
.ab-zk-amt:has(input:checked),
.ab-zk-amt.is-active {
	background: var(--wp--preset--color--ab-green);
	border-color: var(--wp--preset--color--ab-green);
	color: #fff;
}
.ab-zk-amt--feature { grid-row: 1; grid-column: 3; font-weight: 600; }
.ab-zk-amt__big { font-size: 1rem; font-weight: 600; }
.ab-zk-amt__note { font-size: 0.8125rem; line-height: 1.1; }
.ab-zk-amt:nth-of-type(4) { grid-row: 2; grid-column: 1; }
.ab-zk-amt--other {
	grid-row: 2;
	grid-column: 2 / 4;
	flex-direction: row;
	gap: 0.25rem;
	cursor: text;
}
.ab-zk-amt__prefix { color: #a1a1aa; }
.ab-zk-amt--other:has(.ab-zk-amt__other:focus),
.ab-zk-amt--other.is-active { background: #faf8f4; border-color: var(--wp--preset--color--ab-green); color: #52525b; }
.ab-zk-amt--other.is-active .ab-zk-amt__prefix { color: #52525b; }
.ab-zk-amt__other {
	width: 100%;
	border: 0;
	background: transparent;
	font: inherit;
	color: #52525b;
	text-align: left;
}
.ab-zk-amt__other:focus { outline: none; }
.ab-zk-amt__other::placeholder { color: #a1a1aa; }

.ab-zk-form__submit {
	appearance: none;
	border: 0;
	border-radius: 4px;
	padding: 0.8125rem 1.25rem;
	background: var(--wp--preset--color--ab-green);
	color: #fff;
	font-family: var(--wp--preset--font-family--sans);
	font-size: 1rem;
	font-weight: 500;
	letter-spacing: 0.4px;
	text-transform: uppercase;
	cursor: pointer;
	transition: background-color 0.15s ease;
}
.ab-zk-form__submit:hover,
.ab-zk-form__submit:focus-visible { background: #0c5c4f; }
.ab-zk-form__disclaimer { display: flex; flex-direction: column; gap: 0; text-align: center; }
.ab-zk-form__disclaimer p {
	margin: 0;
	font-family: var(--wp--preset--font-family--sans);
	font-size: 0.8125rem;
	line-height: 1.5;
	letter-spacing: 1.4px;
	color: #a1a1aa;
}

/* 2. Eligibility ----------------------------------------------------------- */
.ab-zk-elig { background: #fff; padding-block: clamp(3rem, 6vw, 6.25rem); }
.ab-zk-elig__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2.5rem;
	align-items: center;
}
.ab-zk-elig__body { display: flex; flex-direction: column; gap: 1.875rem; }
.ab-zk-elig__head { display: flex; flex-direction: column; gap: 1rem; }
.ab-zk-elig__intro {
	margin: 0;
	font-family: var(--wp--preset--font-family--sans);
	font-size: 1.125rem;
	line-height: 1.55;
	color: #555;
}
.ab-zk-elig__list { margin: 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 1.875rem; }
.ab-zk-elig__item { display: flex; gap: 1rem; align-items: flex-start; }
.ab-zk-elig__dot {
	flex: none;
	width: 12px;
	height: 12px;
	margin-top: 0.45rem;
	border-radius: 999px;
	background: var(--wp--preset--color--ab-green);
}
.ab-zk-elig__itemtext { display: flex; flex-direction: column; gap: 5px; }
.ab-zk-elig__itemtitle {
	margin: 0;
	font-family: var(--wp--preset--font-family--sans);
	font-size: 1.125rem;
	font-weight: 500;
	color: #52525b;
}
.ab-zk-elig__itemtext p {
	margin: 0;
	font-family: var(--wp--preset--font-family--sans);
	font-size: 1rem;
	line-height: 1.55;
	color: #52525b;
}
.ab-zk-elig__media { border-radius: 8px; overflow: hidden; background: var(--wp--preset--color--ab-navy); aspect-ratio: 58 / 60; }
.ab-zk-elig__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ab-zk-elig__media img[src=""] { display: none; }

/* 3. Story ----------------------------------------------------------------- */
.ab-zk-story { background: #f5f2ed; padding-block: clamp(3rem, 6vw, 6.25rem); }
.ab-zk-story__grid {
	display: grid;
	grid-template-columns: 56fr 60fr;
	gap: 2.5rem;
	align-items: center;
}
.ab-zk-story__media { border-radius: 8px; overflow: hidden; background: var(--wp--preset--color--ab-navy); aspect-ratio: 56 / 30; }
.ab-zk-story__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ab-zk-story__media img[src=""] { display: none; }
.ab-zk-story__body { display: flex; flex-direction: column; gap: 1.875rem; }
.ab-zk-story__head { display: flex; flex-direction: column; gap: 1rem; }
.ab-zk-story__quote { margin: 0; }
.ab-zk-story__quote p {
	margin: 0;
	font-family: var(--wp--preset--font-family--sans);
	font-size: 1rem;
	line-height: 1.6;
	color: #2c2c33;
}

/* 4. Policy (green band) --------------------------------------------------- */
.ab-zk-policy { background: var(--wp--preset--color--ab-green); padding-block: clamp(3rem, 6vw, 6.25rem); }
.ab-zk-policy__head { display: flex; flex-direction: column; gap: 1.5625rem; margin-bottom: 2.5rem; }
.ab-zk-policy__intro {
	margin: 0;
	max-width: 800px;
	font-family: var(--wp--preset--font-family--sans);
	font-size: 1.125rem;
	line-height: 1.55;
	color: #fff;
}
.ab-zk-policy__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.5625rem;
	margin-bottom: 2.5rem;
}
.ab-zk-policy__card {
	border: 1px solid rgba(255, 255, 255, 0.6);
	border-radius: 4px;
	padding: 1.875rem;
	display: flex;
	flex-direction: column;
	gap: 0.625rem;
}
.ab-zk-policy__badge {
	align-self: flex-start;
	padding: 4px 10px;
	background: #fff;
	border-radius: 4px;
	font-family: var(--wp--preset--font-family--sans);
	font-size: 0.75rem;
	font-weight: 500;
	letter-spacing: 0.4px;
	text-transform: uppercase;
	color: var(--wp--preset--color--ab-green);
}
.ab-zk-policy__cardtitle {
	margin: 0;
	font-family: var(--wp--preset--font-family--sans);
	font-size: 1.25rem;
	font-weight: 500;
	color: #fff;
}
.ab-zk-policy__cardtext {
	margin: 0;
	font-family: var(--wp--preset--font-family--sans);
	font-size: 0.9375rem;
	line-height: 1.55;
	color: #fff;
}
.ab-zk-policy__foot {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 3.125rem;
	align-items: center;
	padding-top: 2.5rem;
	border-top: 1px solid rgba(255, 255, 255, 0.25);
}
.ab-zk-policy__scholars {
	margin: 0;
	font-family: var(--wp--preset--font-family--sans);
	font-size: 1rem;
	line-height: 1.5;
	color: #fff;
}
.ab-zk-policy__btn {
	flex: none;
	white-space: nowrap;
	display: inline-block;
	padding: 0.75rem 1.875rem;
	background: #fff;
	border-radius: 4px;
	font-family: var(--wp--preset--font-family--sans);
	font-size: 1rem;
	font-weight: 500;
	text-decoration: none;
	color: var(--wp--preset--color--ab-green);
	box-shadow: 0 10px 30px rgba(247, 147, 31, 0.12);
}
.ab-zk-policy__btn:hover,
.ab-zk-policy__btn:focus-visible { background: #f3faf8; }

/* 5. Calculator ------------------------------------------------------------ */
.ab-zk-calc { background: #fff; padding-block: clamp(3rem, 6vw, 6.25rem); }
.ab-zk-calc__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2.5rem;
	align-items: start;
}
.ab-zk-calc__body { display: flex; flex-direction: column; gap: 1.875rem; }
.ab-zk-calc__head { display: flex; flex-direction: column; gap: 1rem; }
.ab-zk-calc__intro {
	margin: 0;
	font-family: var(--wp--preset--font-family--sans);
	font-size: 1.125rem;
	line-height: 1.55;
	color: #555;
}
.ab-zk-calc__fields {
	border: 0.6px solid #d4d4d8;
	border-radius: 8px;
	padding: 2.5rem 1.5625rem;
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}
.ab-zk-calc__row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding-bottom: 1.25rem;
	border-bottom: 0.6px solid #d4d4d8;
}
.ab-zk-calc__row:last-child { border-bottom-width: 1.4px; padding-bottom: 1.25rem; }
.ab-zk-calc__label {
	font-family: var(--wp--preset--font-family--sans);
	font-size: 1.0625rem;
	color: #52525b;
	text-transform: capitalize;
}
.ab-zk-calc__inputwrap {
	position: relative;
	flex: none;
	width: 150px;
	border: 0.6px solid #d4d4d8;
	border-radius: 4px;
}
.ab-zk-calc__prefix {
	position: absolute;
	left: 10px;
	top: 50%;
	transform: translateY(-50%);
	color: #52525b;
	font-family: var(--wp--preset--font-family--sans);
}
.ab-zk-calc__input {
	width: 100%;
	border: 0;
	background: transparent;
	padding: 0.4375rem 0.625rem 0.4375rem 1.5rem;
	font-family: var(--wp--preset--font-family--sans);
	font-size: 1.0625rem;
	color: #52525b;
}
.ab-zk-calc__input:focus { outline: none; }
.ab-zk-calc__inputwrap:focus-within { border-color: var(--wp--preset--color--ab-green); }

.ab-zk-calc__result {
	position: sticky;
	top: 1.5rem;
	border: 0.6px solid var(--wp--preset--color--ab-green);
	border-radius: 8px;
	padding: 2.5rem;
	display: flex;
	flex-direction: column;
	gap: 2.5rem;
	min-height: 400px;
	justify-content: space-between;
}
.ab-zk-calc__resulthead { display: flex; flex-direction: column; gap: 0.5rem; }
.ab-zk-calc__resultlabel {
	margin: 0;
	font-family: var(--wp--preset--font-family--sans);
	font-size: 1.125rem;
	font-weight: 500;
	color: var(--wp--preset--color--ab-green);
}
.ab-zk-calc__total {
	margin: 0;
	font-family: var(--wp--preset--font-family--serif);
	font-size: clamp(3rem, 2rem + 3vw, 4rem);
	line-height: 1;
	color: var(--wp--preset--color--ab-green);
}
.ab-zk-calc__note {
	margin: 0.5rem 0 0;
	font-family: var(--wp--preset--font-family--sans);
	font-size: 1rem;
	line-height: 1.5;
	color: #52525b;
}
.ab-zk-calc__btn {
	display: block;
	text-align: center;
	padding: 0.75rem 1.875rem;
	background: var(--wp--preset--color--ab-green);
	border-radius: 4px;
	font-family: var(--wp--preset--font-family--sans);
	font-size: 1rem;
	font-weight: 500;
	letter-spacing: 1.4px;
	text-transform: uppercase;
	text-decoration: none;
	color: #fff;
	transition: background-color 0.15s ease;
}
.ab-zk-calc__btn:hover,
.ab-zk-calc__btn:focus-visible { background: #0c5c4f; }

/* 6. Impact tiers ---------------------------------------------------------- */
.ab-zk-impact { background: #f5f2ed; padding-block: clamp(3rem, 6vw, 6.25rem); }
.ab-zk-impact__head { display: flex; flex-direction: column; gap: 1rem; align-items: center; text-align: center; margin-bottom: 2.5rem; }
.ab-zk-impact__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.9375rem; }
.ab-zk-impact__card {
	background: #fff;
	border: 0.5px solid #d4d4d8;
	border-radius: 8px;
	padding: 2.1875rem 1.5625rem;
	display: flex;
	flex-direction: column;
	gap: 1.5625rem;
}
.ab-zk-impact__card--feature { border: 1px solid var(--wp--preset--color--ab-blue); }
.ab-zk-impact__amount {
	margin: 0;
	font-family: var(--wp--preset--font-family--sans);
	font-size: 2.5rem;
	font-weight: 500;
	line-height: 1;
	color: var(--wp--preset--color--ab-green);
}
.ab-zk-impact__text { display: flex; flex-direction: column; gap: 0.625rem; flex: 1 1 auto; }
.ab-zk-impact__cardtitle {
	margin: 0;
	font-family: var(--wp--preset--font-family--sans);
	font-size: 1.25rem;
	font-weight: 500;
	color: #52525b;
}
.ab-zk-impact__text p {
	margin: 0;
	font-family: var(--wp--preset--font-family--sans);
	font-size: 1rem;
	line-height: 1.55;
	color: #52525b;
}
.ab-zk-impact__btn {
	display: block;
	text-align: center;
	padding: 0.75rem 1.875rem;
	background: var(--wp--preset--color--ab-green);
	border-radius: 4px;
	font-family: var(--wp--preset--font-family--sans);
	font-size: 1rem;
	font-weight: 500;
	text-decoration: none;
	color: #fff;
	transition: background-color 0.15s ease;
}
.ab-zk-impact__btn:hover,
.ab-zk-impact__btn:focus-visible { background: #0c5c4f; }

/* 7. FAQ ------------------------------------------------------------------- */
.ab-zk-faq { background: #f7f9fb; border-top: 1px solid #e1e1e1; padding-block: clamp(3rem, 6vw, 6.25rem); }
.ab-zk-faq__head { display: flex; flex-direction: column; gap: 1rem; align-items: center; text-align: center; margin-bottom: 2.5rem; }
.ab-zk-faq__list { display: flex; flex-direction: column; gap: 0.9375rem; max-width: 1200px; margin-inline: auto; }
.ab-zk-faq__item {
	background: #fff;
	border: 1px solid #e1e1e1;
	border-radius: 8px;
	padding: 0 1.5625rem;
}
.ab-zk-faq__q {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 1.5625rem 0;
	cursor: pointer;
	list-style: none;
}
.ab-zk-faq__q::-webkit-details-marker { display: none; }
.ab-zk-faq__qtext {
	font-family: var(--wp--preset--font-family--sans);
	font-size: 1.25rem;
	font-weight: 500;
	color: var(--wp--preset--color--ab-blue);
}
.ab-zk-faq__icon {
	position: relative;
	flex: none;
	width: 20px;
	height: 20px;
}
.ab-zk-faq__icon::before,
.ab-zk-faq__icon::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 16px;
	height: 2px;
	background: #1f2933;
	transform: translate(-50%, -50%);
	transition: opacity 0.15s ease, transform 0.15s ease;
}
.ab-zk-faq__icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.ab-zk-faq__item[open] .ab-zk-faq__icon::before { background: var(--wp--preset--color--ab-blue); }
.ab-zk-faq__item[open] .ab-zk-faq__icon::after { opacity: 0; }
.ab-zk-faq__a { padding: 0 0 1.5625rem; border-top: 1px solid rgba(136, 136, 136, 0.3); }
.ab-zk-faq__a p {
	margin: 1.25rem 0 0;
	font-family: var(--wp--preset--font-family--sans);
	font-size: 1.125rem;
	line-height: 1.6;
	color: #555;
}

/* 8. Closing CTA (green band) ---------------------------------------------- */
.ab-zk-cta { background: var(--wp--preset--color--ab-green); padding-block: clamp(3rem, 6vw, 6.25rem); }
.ab-zk-cta__inner { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 1.875rem; }
.ab-zk-cta__text {
	margin: 0;
	max-width: 800px;
	font-family: var(--wp--preset--font-family--sans);
	font-size: 1.125rem;
	line-height: 1.5;
	color: #fff;
}
.ab-zk-cta__actions { display: flex; flex-wrap: wrap; gap: 1.25rem; justify-content: center; }
.ab-zk-cta__btn {
	display: inline-block;
	padding: 0.75rem 1.875rem;
	border-radius: 4px;
	font-family: var(--wp--preset--font-family--sans);
	font-size: 1rem;
	font-weight: 500;
	letter-spacing: 1.4px;
	text-transform: capitalize;
	text-decoration: none;
	transition: background-color 0.15s ease, color 0.15s ease;
}
.ab-zk-cta__btn--solid { background: #fff; color: var(--wp--preset--color--ab-green); }
.ab-zk-cta__btn--solid:hover,
.ab-zk-cta__btn--solid:focus-visible { background: #f3faf8; }
.ab-zk-cta__btn--ghost { border: 1px solid #fff; color: #fff; }
.ab-zk-cta__btn--ghost:hover,
.ab-zk-cta__btn--ghost:focus-visible { background: rgba(255, 255, 255, 0.12); }
.ab-zk-cta__trust {
	margin: 0;
	font-family: var(--wp--preset--font-family--sans);
	font-size: 1rem;
	font-style: italic;
	color: rgba(255, 255, 255, 0.75);
}

/* Responsive --------------------------------------------------------------- */
@media (max-width: 980px) {
	.ab-zk-hero { grid-template-columns: 1fr; }
	.ab-zk-hero__media { order: -1; min-height: 260px; }
	.ab-zk-elig__grid,
	.ab-zk-story__grid,
	.ab-zk-calc__grid { grid-template-columns: 1fr; }
	.ab-zk-story__media { order: -1; }
	.ab-zk-policy__grid { grid-template-columns: 1fr; }
	.ab-zk-policy__foot { grid-template-columns: 1fr; gap: 1.5rem; }
	.ab-zk-impact__grid { grid-template-columns: 1fr; max-width: 440px; margin-inline: auto; }
	.ab-zk-calc__result { position: static; min-height: 0; }
}

@media (max-width: 560px) {
	.ab-zk-hero__pledge { padding-inline: 1.25rem; }
	.ab-zk-calc__row { flex-direction: column; align-items: stretch; gap: 0.5rem; }
	.ab-zk-calc__inputwrap { width: 100%; }
	.ab-zk-faq__qtext { font-size: 1.125rem; }
	.ab-zk-cta__actions { flex-direction: column; align-items: stretch; }
}
