/**
 * Sabbaticals Page Styles
 *
 * Prefixed with .sab- to avoid collisions.
 * Depends on base classes from custom.css (section, container, btn, reveal).
 * Sabbatical brand color: #7E72AF (purple).
 */

/* ==============================
   Hero — Light Interior
   ============================== */

.sab-hero {
	background: var(--wp--preset--color--primary-dark, #2A2F42);
	padding: 8rem 1.5rem 5rem;
	text-align: center;
}

.sab-hero__content {
	position: relative;
}

.sab-hero .section__eyebrow,
.sab-hero__title,
.sab-hero__subtitle {
	opacity: 0;
	animation: heroFadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.sab-hero .section__eyebrow {
	animation-delay: 0.15s;
	color: #7E72AF !important;
}

.sab-hero__title {
	font-family: 'Source Serif 4', Georgia, serif;
	font-size: clamp(2rem, 4vw, 3.3rem);
	font-weight: 600;
	line-height: 1.25;
	color: #fff;
	margin-bottom: 1.25rem;
	animation-delay: 0.35s;
}

.sab-hero__subtitle {
	font-size: 1.125rem;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.85);
	max-width: 620px;
	margin: 0 auto;
	animation-delay: 0.55s;
}

.sab-hero__buttons {
	display: flex;
	gap: 1rem;
	justify-content: center;
	flex-wrap: wrap;
	margin-top: 2rem;
	opacity: 0;
	animation: heroFadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.75s forwards;
}

/* ==============================
   The Need (Problem section)
   ============================== */

.sab-need__lead {
	font-size: 1.125rem;
	line-height: 1.85;
	color: var(--wp--preset--color--body-text, #1A1A2E);
	max-width: 640px;
	margin-bottom: 1.5rem;
}

.sab-need__body {
	font-size: 1.0625rem;
	line-height: 1.8;
	color: var(--wp--preset--color--secondary-text, #6B7280);
	max-width: 640px;
	margin: 0 auto 1.5rem;
}

.sab-need__bridge {
	text-align: center;
	padding: 2.5rem 0 0;
}

.sab-need__bridge p {
	font-family: 'Source Serif 4', Georgia, serif;
	font-size: 1.375rem;
	font-weight: 600;
	font-style: italic;
	color: #7E72AF;
	margin: 0;
}

/* ==============================
   Feature Cards (Partnership)
   ============================== */

.sab-features {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.5rem;
	margin-top: 0.5rem;
}

/* 6-up partnership grid (mirrors cp-features) — used on /sabbaticals/ for the
   six core inclusions plus a full-width "Relationship Beyond the Grant" card. */
.sab-features--six {
	grid-template-columns: repeat(3, 1fr);
}

.sab-feature {
	background: #fff;
	border-radius: 16px;
	padding: 2.5rem 2rem 2rem;
	border-top: 4px solid #7E72AF;
	box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.sab-feature:hover {
	transform: translateY(-6px);
	box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
}

.sab-feature__icon {
	width: 64px;
	height: 64px;
	border-radius: 50%;
	background: rgba(126, 114, 175, 0.12);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.25rem;
	color: #7E72AF;
	transition: transform 0.3s ease;
}

.sab-feature:hover .sab-feature__icon {
	transform: scale(1.1);
}

.sab-feature h3 {
	font-size: 1.25rem;
	color: #7E72AF;
	margin-bottom: 0.75rem;
}

.sab-feature p {
	color: var(--wp--preset--color--body-text, #1A1A2E);
	margin-bottom: 1.25rem;
	font-size: 0.9375rem;
	line-height: 1.7;
}

.sab-feature__stat {
	display: inline-block;
	font-family: 'Source Serif 4', Georgia, serif;
	font-size: 1rem;
	font-weight: 600;
	color: #7E72AF;
	padding-top: 0.75rem;
	border-top: 1px solid rgba(126, 114, 175, 0.2);
}

/* Stagger card reveals */
.sab-features .reveal:nth-child(2) { transition-delay: 0.1s; }
.sab-features .reveal:nth-child(3) { transition-delay: 0.2s; }
.sab-features .reveal:nth-child(4) { transition-delay: 0.3s; }

/* ==============================
   What Makes This Different
   ============================== */

.sab-diff {
	margin-top: 1rem;
}

.sab-diff__item {
	display: flex;
	gap: 1.5rem;
	align-items: flex-start;
	padding: 1.75rem 0;
	border-bottom: 1px solid rgba(93, 121, 146, 0.15);
}

.sab-diff__item:last-child {
	border-bottom: none;
}

.sab-diff__marker {
	flex-shrink: 0;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: #7E72AF;
	margin-top: 0.5rem;
	position: relative;
}

.sab-diff__marker::after {
	content: '';
	position: absolute;
	inset: -4px;
	border-radius: 50%;
	border: 2px solid rgba(126, 114, 175, 0.25);
}

.sab-diff__text h3 {
	font-size: 1.25rem;
	color: var(--wp--preset--color--primary-dark, #2A2F42);
	margin-bottom: 0.5rem;
}

.sab-diff__text p {
	color: var(--wp--preset--color--secondary-text, #6B7280);
	font-size: 0.9375rem;
	line-height: 1.7;
	margin: 0;
}

/* Stagger diff items */
.sab-diff .reveal:nth-child(2) { transition-delay: 0.08s; }
.sab-diff .reveal:nth-child(3) { transition-delay: 0.16s; }
.sab-diff .reveal:nth-child(4) { transition-delay: 0.24s; }

/* ==============================
   Who This Is For (Criteria)
   ============================== */

.sab-criteria {
	max-width: 640px;
	margin: 0 auto;
}

.sab-criteria__list {
	list-style: none;
	padding: 0;
	margin: 0 0 2rem;
}

.sab-criteria__list li {
	display: flex;
	align-items: flex-start;
	gap: 0.875rem;
	padding: 0.875rem 0;
	border-bottom: 1px solid rgba(0, 0, 0, 0.06);
	font-size: 1rem;
	line-height: 1.6;
	color: var(--wp--preset--color--body-text, #1A1A2E);
}

.sab-criteria__list li:last-child {
	border-bottom: none;
}

.sab-criteria__list li svg {
	flex-shrink: 0;
	color: #7E72AF;
	margin-top: 0.15rem;
}

.sab-criteria__note {
	background: #fff;
	border-radius: 16px;
	padding: 1.5rem 2rem;
	border-left: 4px solid #7E72AF;
	box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
}

.sab-criteria__note p {
	margin: 0 0 0.75rem;
	font-size: 0.9375rem;
	color: var(--wp--preset--color--secondary-text, #6B7280);
	line-height: 1.7;
}

.sab-criteria__note .card__link {
	font-weight: 600;
	color: #7E72AF;
}

.sab-criteria__note .card__link:hover {
	color: #6a5f9a;
}

/* Dark section overrides for criteria */
.section--dark .sab-criteria__list li {
	color: rgba(255, 255, 255, 0.9);
	border-bottom-color: rgba(255, 255, 255, 0.1);
}

.section--dark .sab-criteria__list li svg {
	color: #7E72AF;
}

.section--dark .sab-criteria__note {
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
}

/* ==============================
   Testimonial
   ============================== */

.sab-testimonial {
	text-align: center;
	max-width: 640px;
	margin: 0 auto;
	padding: 1rem 0;
}

.sab-testimonial__icon {
	width: 72px;
	height: 72px;
	border-radius: 50%;
	background: rgba(126, 114, 175, 0.12);
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1.75rem;
	color: #7E72AF;
}

.sab-testimonial__quote {
	margin: 0 0 1.5rem;
	padding: 0;
	border: none;
}

.sab-testimonial__quote p {
	font-family: 'Source Serif 4', Georgia, serif;
	font-size: 1.375rem;
	font-weight: 400;
	font-style: italic;
	line-height: 1.65;
	color: var(--wp--preset--color--primary-dark, #2A2F42);
	margin: 0;
}

.sab-testimonial__cite {
	font-style: normal;
	font-size: 0.9375rem;
	font-weight: 600;
	color: #7E72AF;
	letter-spacing: 0.02em;
}

/* ==============================
   CTA Section (Dark)
   ============================== */

.sab-cta {
	text-align: center;
	position: relative;
	overflow: hidden;
}

.sab-cta__content {
	position: relative;
	z-index: 1;
}

.sab-cta__icon {
	width: 72px;
	height: 72px;
	border-radius: 50%;
	background: rgba(126, 114, 175, 0.2);
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1.75rem;
	color: #fff;
}

.sab-cta h2 {
	color: #fff;
	margin-bottom: 1rem;
}

.sab-cta p {
	color: rgba(255, 255, 255, 0.85);
	max-width: 560px;
	margin: 0 auto 2rem;
	font-size: 1.0625rem;
	line-height: 1.7;
}

.sab-cta__actions {
	display: flex;
	gap: 1rem;
	justify-content: center;
	flex-wrap: wrap;
}

/* ==============================
   Responsive — Tablet (768px)
   ============================== */

@media (max-width: 768px) {
	.sab-hero {
		padding: 4rem 1.25rem 3.5rem;
	}

	.sab-hero__title {
		font-size: clamp(1.75rem, 5vw, 2.25rem);
	}

	.sab-features {
		grid-template-columns: 1fr;
		max-width: 480px;
		margin-left: auto;
		margin-right: auto;
	}

	.sab-diff__item {
		gap: 1rem;
	}

	.sab-need__bridge p {
		font-size: 1.25rem;
	}

	.sab-testimonial__quote p {
		font-size: 1.1875rem;
	}

	.sab-cta__actions {
		flex-direction: column;
		align-items: center;
	}

	.sab-cta__actions .btn {
		width: 100%;
		max-width: 320px;
	}
}

/* ==============================
   Responsive — Mobile (480px)
   ============================== */

@media (max-width: 480px) {
	.sab-hero {
		padding: 3rem 1rem 2.5rem;
	}

	.sab-hero__subtitle {
		font-size: 1rem;
	}

	.sab-feature {
		padding: 2rem 1.5rem 1.75rem;
	}

	.sab-diff__marker {
		width: 10px;
		height: 10px;
	}

	.sab-diff__marker::after {
		inset: -3px;
	}

	.sab-criteria__note {
		padding: 1.25rem 1.5rem;
	}

	.sab-testimonial__icon {
		width: 56px;
		height: 56px;
	}

	.sab-testimonial__icon svg {
		width: 28px;
		height: 28px;
	}

	.sab-cta__icon {
		width: 56px;
		height: 56px;
	}

	.sab-cta__icon svg {
		width: 28px;
		height: 28px;
	}
}

/* ==============================
   Program Color Overrides — Purple (#7E72AF)
   EVERYTHING on this page uses purple. No gold. No grey.
   ============================== */

/* ALL section eyebrows → purple (light and dark) */
body.page-sabbaticals .section__eyebrow {
	color: #7E72AF;
}

/* ALL title underline bars → purple */
body.page-sabbaticals .section__title::after {
	background: #7E72AF;
}

/* Glass card icons → purple (dark and light) */
.sab-feature__icon {
	background: rgba(126, 114, 175, 0.1);
	color: #7E72AF;
}

.section--dark .sab-feature__icon {
	background: rgba(126, 114, 175, 0.2);
	color: #7E72AF;
}

/* Feature stat numbers → purple */
.sab-feature__stat,
.section--dark .sab-feature__stat {
	color: #7E72AF;
}

/* Criteria check icons → purple */
.sab-criteria__list li svg {
	color: #7E72AF;
}

/* CTA section icon → purple */
.sab-cta__icon {
	background: rgba(126, 114, 175, 0.15);
	color: #7E72AF;
}

/* Testimonial icon → purple */
.sab-testimonial__icon {
	background: rgba(126, 114, 175, 0.1);
	color: #7E72AF;
}

/* Difference markers → purple */
.sab-diff__marker {
	background: #7E72AF;
}

.sab-diff__marker::after {
	border-color: rgba(126, 114, 175, 0.2);
}

/* Need bridge quote bar → purple */
body.page-sabbaticals .sab-need__bridge p {
	border-left-color: #7E72AF;
}

/* Links and inline accents → purple */
.sab-feature a,
.section--dark .sab-feature a {
	color: #7E72AF;
}

/* Criteria note card link → purple */
.sab-criteria__note .card__link {
	color: #7E72AF;
}

/* Process step markers → purple */
body.page-sabbaticals .process-step__marker {
	background: #7E72AF;
}

/* ==============================
   Reduced Motion
   ============================== */

@media (prefers-reduced-motion: reduce) {
	.sab-hero .section__eyebrow,
	.sab-hero__title,
	.sab-hero__subtitle {
		opacity: 1;
		transform: none;
		animation: none;
	}

	.sab-feature,
	.sab-feature__icon {
		transition: none;
	}

	.sab-feature:hover {
		transform: none;
	}

	.sab-feature:hover .sab-feature__icon {
		transform: none;
	}
}

/* ==============================
   Grant Highlight Banner (sabbatical variant)
   Big amount + a "+ ~8 months coaching" addon to reinforce that this is
   more than a check.
   ============================== */

.sab-grant-highlight {
	background: #fff;
	border-radius: 16px;
	padding: 2.5rem 2rem;
	text-align: center;
	margin-bottom: 2.5rem;
	box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
	border-top: 4px solid #7E72AF;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1.5rem;
}

.sab-grant-highlight__total {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.sab-grant-highlight__amount {
	font-family: 'Source Serif 4', Georgia, serif;
	font-size: clamp(2.25rem, 4.5vw, 3.25rem);
	font-weight: 700;
	color: #7E72AF;
	line-height: 1.1;
	letter-spacing: -0.01em;
}

.sab-grant-highlight__label {
	font-size: 0.9375rem;
	font-weight: 600;
	color: var(--wp--preset--color--secondary-text, #6B7280);
	margin-top: 0.5rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.sab-grant-highlight__addon {
	display: inline-flex;
	align-items: center;
	gap: 0.875rem;
	padding: 0.75rem 1.5rem 0.75rem 1rem;
	background: rgba(126, 114, 175, 0.08);
	border-radius: 999px;
	border: 1px solid rgba(126, 114, 175, 0.18);
}

.sab-grant-highlight__addon-plus {
	font-family: 'Source Serif 4', Georgia, serif;
	font-size: 1.5rem;
	font-weight: 700;
	color: #7E72AF;
	line-height: 1;
}

.sab-grant-highlight__addon-text {
	display: flex;
	align-items: baseline;
	gap: 0.5rem;
	flex-wrap: wrap;
	justify-content: center;
}

.sab-grant-highlight__addon-amount {
	font-family: 'Source Serif 4', Georgia, serif;
	font-size: 1.125rem;
	font-weight: 700;
	color: var(--wp--preset--color--primary-dark, #2A2F42);
}

.sab-grant-highlight__addon-label {
	font-size: 0.9375rem;
	color: var(--wp--preset--color--secondary-text, #6B7280);
}

/* Full-width card for "A Relationship That Outlasts the Grant" */
.sab-feature--full {
	grid-column: 1 / -1;
	max-width: 640px;
	margin: 0 auto;
	text-align: center;
}

/* When the 6-up layout is in use, the icon should center-align like cp-feature */
.sab-features--six .sab-feature {
	text-align: center;
}

.sab-features--six .sab-feature__icon {
	margin-left: auto;
	margin-right: auto;
}

/* Stagger 5th + 6th + 7th items in the 6-up grid */
.sab-features--six .reveal:nth-child(5) { transition-delay: 0.2s; }
.sab-features--six .reveal:nth-child(6) { transition-delay: 0.3s; }
.sab-features--six .reveal:nth-child(7) { transition-delay: 0.1s; }

/* ==============================
   Requirements (mirrors cp-requirements with purple)
   ============================== */

.sab-requirements {
	padding-top: 5rem;
	padding-bottom: 5rem;
}

.sab-requirements__list {
	list-style: none;
	margin: 3.5rem 0 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1.25rem;
}

.sab-requirements__item:last-child {
	grid-column: 1 / -1;
}

.sab-requirements__item {
	display: flex;
	align-items: flex-start;
	gap: 1.5rem;
	background: #fff;
	border: 1px solid rgba(126, 114, 175, 0.12);
	border-radius: 16px;
	padding: 1.75rem 1.75rem 1.75rem 1.25rem;
	box-shadow: 0 2px 12px rgba(42, 47, 66, 0.04);
	transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1),
	            box-shadow 0.25s ease,
	            border-color 0.25s ease;
}

.sab-requirements__item:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 24px rgba(42, 47, 66, 0.08);
	border-color: rgba(126, 114, 175, 0.3);
}

.sab-requirements__marker {
	flex-shrink: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.5rem;
	padding-top: 0.125rem;
}

.sab-requirements__number {
	font-family: 'Source Serif 4', Georgia, serif;
	font-size: 0.875rem;
	font-weight: 600;
	font-style: italic;
	color: rgba(126, 114, 175, 0.75);
	letter-spacing: 0.04em;
}

.sab-requirements__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	border-radius: 14px;
	background: linear-gradient(135deg, rgba(126, 114, 175, 0.14) 0%, rgba(126, 114, 175, 0.06) 100%);
	color: #7E72AF;
	box-shadow: inset 0 0 0 1px rgba(126, 114, 175, 0.16);
}

.sab-requirements__body {
	flex: 1;
	min-width: 0;
	padding-top: 0.25rem;
}

.sab-requirements__body h3 {
	font-family: 'Source Serif 4', Georgia, serif;
	font-size: 1.25rem;
	font-weight: 600;
	line-height: 1.3;
	color: var(--wp--preset--color--primary-dark, #2A2F42);
	margin: 0 0 0.5rem;
	letter-spacing: -0.005em;
}

.sab-requirements__body p {
	font-size: 0.9375rem;
	line-height: 1.65;
	color: var(--wp--preset--color--secondary-text, #6B7280);
	margin: 0;
}

.sab-requirements__body a {
	color: #7E72AF;
	font-weight: 600;
	text-decoration: none;
	border-bottom: 1px solid rgba(126, 114, 175, 0.35);
	transition: color 0.2s ease, border-color 0.2s ease;
}

.sab-requirements__body a:hover {
	color: #5F548F;
	border-bottom-color: #5F548F;
}

/* ==============================
   FAQ (mirrors cp-faq with purple)
   ============================== */

.sab-faq {
	padding-top: 5rem;
	padding-bottom: 5rem;
}

.sab-faq__groups {
	display: grid;
	gap: 3rem;
	margin-top: 3.5rem;
}

.sab-faq__group {
	background: #fff;
	border-radius: 20px;
	padding: 2.5rem 2.25rem 1.5rem;
	box-shadow: 0 2px 16px rgba(42, 47, 66, 0.05);
}

.sab-faq__group-header {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding-bottom: 1.25rem;
	margin-bottom: 0.5rem;
	border-bottom: 1px solid rgba(126, 114, 175, 0.18);
}

.sab-faq__group-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border-radius: 10px;
	background: linear-gradient(135deg, #7E72AF 0%, #5F548F 100%);
	color: #fff;
	font-family: 'Inter', sans-serif;
	font-size: 0.8125rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	flex-shrink: 0;
	box-shadow: 0 6px 14px -6px rgba(126, 114, 175, 0.55);
}

.sab-faq__group-title {
	font-family: 'Source Serif 4', Georgia, serif;
	font-size: 1.375rem;
	font-weight: 600;
	line-height: 1.25;
	color: var(--wp--preset--color--primary-dark, #2A2F42);
	margin: 0;
	letter-spacing: -0.005em;
}

.sab-faq__item {
	border-bottom: 1px solid rgba(42, 47, 66, 0.06);
	padding: 0;
}

.sab-faq__item:last-child {
	border-bottom: none;
}

.sab-faq__question {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
	padding: 1.25rem 0.25rem;
	font-family: 'Inter', sans-serif;
	font-size: 1rem;
	font-weight: 600;
	line-height: 1.45;
	color: var(--wp--preset--color--primary-dark, #2A2F42);
	cursor: pointer;
	list-style: none;
	transition: color 0.2s ease;
}

.sab-faq__question::-webkit-details-marker {
	display: none;
}

.sab-faq__question::after {
	content: "";
	flex-shrink: 0;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: rgba(126, 114, 175, 0.12);
	background-image:
		linear-gradient(to right, #7E72AF 0 100%),
		linear-gradient(to bottom, #7E72AF 0 100%);
	background-repeat: no-repeat;
	background-position: center;
	background-size: 12px 2px, 2px 12px;
	transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1),
	            background-color 0.2s ease;
}

.sab-faq__item[open] .sab-faq__question {
	color: #7E72AF;
}

.sab-faq__item[open] .sab-faq__question::after {
	background-size: 12px 2px, 0 0;
	transform: rotate(180deg);
}

.sab-faq__question:hover {
	color: #7E72AF;
}

.sab-faq__answer {
	padding: 0 0.25rem 1.5rem;
	animation: sabFaqReveal 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.sab-faq__answer p {
	font-size: 0.9375rem;
	line-height: 1.7;
	color: var(--wp--preset--color--secondary-text, #6B7280);
	margin: 0;
}

.sab-faq__answer a {
	color: #7E72AF;
	font-weight: 600;
	text-decoration: none;
	border-bottom: 1px solid rgba(126, 114, 175, 0.35);
	transition: color 0.2s ease, border-color 0.2s ease;
}

.sab-faq__answer a:hover {
	color: #5F548F;
	border-bottom-color: #5F548F;
}

@keyframes sabFaqReveal {
	from { opacity: 0; transform: translateY(-4px); }
	to   { opacity: 1; transform: translateY(0); }
}

/* ==============================
   Guide cards on /sabbaticals/ — purple icon override
   ============================== */

body.page-sabbaticals .section--dark .guide-card__icon {
	background: rgba(126, 114, 175, 0.22);
	color: #C8BEEC;
}

body.page-sabbaticals .guide-card__icon {
	background: rgba(126, 114, 175, 0.12);
	color: #7E72AF;
}

/* ==============================
   Need-bridge quote bar (already exists for cp; ensure sab variant uses purple)
   The CP CSS file currently sets sab-need__bridge to teal under
   body.page-church-planting. Override here for /sabbaticals/. */

body.page-sabbaticals .sab-need__bridge p {
	border-left-color: #7E72AF;
}

/* ==============================
   Responsive — Tablet and below
   ============================== */

@media (max-width: 992px) {
	.sab-features--six {
		grid-template-columns: repeat(2, 1fr);
	}

	.sab-feature--full {
		grid-column: 1 / -1;
	}

	.sab-grant-highlight {
		padding: 2rem 1.5rem;
	}
}

@media (max-width: 768px) {
	.sab-features--six {
		grid-template-columns: 1fr;
		max-width: 480px;
		margin-left: auto;
		margin-right: auto;
		gap: 1rem;
	}

	.sab-feature--full {
		max-width: none;
	}

	.sab-grant-highlight__addon {
		flex-direction: row;
		flex-wrap: wrap;
		justify-content: center;
	}

	.sab-requirements {
		padding-top: 3.5rem;
		padding-bottom: 3.5rem;
	}

	.sab-requirements__list {
		grid-template-columns: 1fr;
		gap: 1rem;
		margin-top: 2.5rem;
	}

	.sab-requirements__item:last-child {
		grid-column: 1;
	}

	.sab-requirements__item {
		padding: 1.5rem 1.25rem;
		gap: 1.125rem;
	}

	.sab-requirements__icon {
		width: 44px;
		height: 44px;
	}

	.sab-requirements__body h3 {
		font-size: 1.125rem;
	}

	.sab-faq {
		padding-top: 3.5rem;
		padding-bottom: 3.5rem;
	}

	.sab-faq__groups {
		gap: 2rem;
		margin-top: 2.5rem;
	}

	.sab-faq__group {
		padding: 2rem 1.5rem 1rem;
	}

	.sab-faq__question {
		font-size: 0.9375rem;
		gap: 1rem;
		padding: 1rem 0.125rem;
	}
}

@media (max-width: 640px) {
	.sab-grant-highlight__amount {
		font-size: 2.25rem;
	}
}

@media (prefers-reduced-motion: reduce) {
	.sab-requirements__item {
		transition: none;
	}

	.sab-requirements__item:hover {
		transform: none;
	}
}
