/**
 * Apply Page Styles
 *
 * Builds on existing .apply-checklist, .apply-countdown, .apply-notify
 * base styles defined in custom.css (lines 1462-1492).
 *
 * @package flavor23
 */

/* ==============================
   Keyframes
   ============================== */

@keyframes applyFadeUp {
	from { opacity: 0; transform: translateY(30px); }
	to   { opacity: 1; transform: translateY(0); }
}

@keyframes countdownPulse {
	0%, 100% { transform: scale(1); }
	50%      { transform: scale(1.04); }
}

/* ==============================
   Hero
   ============================== */

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

.apply-hero__content {
	position: relative;
}

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

.apply-hero .section__eyebrow { animation-delay: 0.15s; }
.apply-hero__title            { animation-delay: 0.35s; }
.apply-hero__subtitle         { animation-delay: 0.55s; }

.apply-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;
}

.apply-hero__subtitle {
	font-size: 1.125rem;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.85);
	max-width: 600px;
	margin: 0 auto;
}

/* ==============================
   Countdown
   ============================== */

.apply-countdown-section {
	padding-top: 3rem;
	padding-bottom: 3rem;
}

.apply-countdown-wrap {
	text-align: center;
}

.apply-countdown {
	display: flex;
	justify-content: center;
	gap: 2rem;
	margin: 0 auto 1rem;
	font-family: 'Source Serif 4', Georgia, serif;
}

.apply-countdown__unit {
	display: flex;
	flex-direction: column;
	align-items: center;
	min-width: 80px;
}

.apply-countdown__number {
	font-size: clamp(2.5rem, 6vw, 4rem);
	font-weight: 700;
	color: var(--wp--preset--color--accent, #DD9F33);
	line-height: 1;
	transition: transform 0.3s ease;
}

.apply-countdown__label {
	font-family: 'Inter', sans-serif;
	font-size: 0.8125rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--wp--preset--color--secondary-text, #6B7280);
	margin-top: 0.5rem;
}

.apply-countdown__note {
	font-size: 1rem;
	color: var(--wp--preset--color--secondary-text, #6B7280);
	margin: 0;
}

/* Pulse on tick (added via JS) */
.apply-countdown__number.is-ticking {
	animation: countdownPulse 0.4s ease;
}

/* ==============================
   Deadline Reminder (Open State)
   ============================== */

.apply-deadline-section {
	padding-top: 0;
	padding-bottom: 2rem;
}

.apply-deadline {
	display: flex;
	align-items: center;
	gap: 1rem;
	background: rgba(221, 159, 51, 0.08);
	border: 1px solid rgba(221, 159, 51, 0.25);
	border-left: 4px solid var(--wp--preset--color--accent, #DD9F33);
	border-radius: 6px;
	padding: 1.25rem 1.5rem;
}

.apply-deadline__icon {
	flex-shrink: 0;
	color: var(--wp--preset--color--accent, #DD9F33);
}

.apply-deadline p {
	margin: 0;
	font-weight: 500;
	color: var(--wp--preset--color--body-text, #1A1A2E);
}

/* ==============================
   Preparation Checklist
   ============================== */

.apply-prepare {
	padding-top: 4rem;
	padding-bottom: 4rem;
}

.apply-checklist {
	background: #fff;
	border-radius: 16px;
	padding: 0;
	margin: 0;
	box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
}

.apply-checklist__list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.apply-checklist__item {
	display: flex;
	align-items: flex-start;
	gap: 1.25rem;
	padding: 1.5rem 2rem;
	border-bottom: 1px solid #F7F8FA;
	transition: background-color 0.2s ease;
}

.apply-checklist__item:last-child {
	border-bottom: none;
}

.apply-checklist__item:hover {
	background-color: #F7F8FA;
}

.apply-checklist__icon {
	flex-shrink: 0;
	width: 44px;
	height: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 10px;
	margin-top: 0.125rem;
}

.apply-checklist__icon--church-plant {
	background: rgba(47, 173, 193, 0.1);
	color: var(--wp--preset--color--church-plant, #2FADC1);
}

.apply-checklist__icon--sabbatical {
	background: rgba(126, 114, 175, 0.1);
	color: var(--wp--preset--color--sabbatical, #7E72AF);
}

.apply-checklist__icon--criteria {
	background: rgba(47, 173, 193, 0.1);
	color: var(--wp--preset--color--primary, #5D7992);
}

.apply-checklist__icon--mou {
	background: rgba(221, 159, 51, 0.1);
	color: var(--wp--preset--color--accent, #DD9F33);
}

.apply-checklist__icon--process {
	background: rgba(42, 47, 66, 0.08);
	color: var(--wp--preset--color--primary-dark, #2A2F42);
}

.apply-checklist__body h3 {
	font-family: 'Inter', sans-serif;
	font-size: 1.25rem;
	font-weight: 600;
	margin: 0 0 0.25rem;
	color: var(--wp--preset--color--primary-dark, #2A2F42);
}

.apply-checklist__body h3 a {
	color: inherit;
	text-decoration: none;
	transition: color 0.2s ease;
}

.apply-checklist__body h3 a:hover {
	color: var(--wp--preset--color--primary, #5D7992);
}

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

.apply-checklist__links {
	display: flex;
	gap: 1rem;
	margin-top: 0.5rem;
}

.apply-checklist__link {
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--wp--preset--color--primary, #5D7992);
	text-decoration: none;
	transition: color 0.2s ease;
}

.apply-checklist__link:hover {
	color: var(--wp--preset--color--primary-mid, #4A5F72);
	text-decoration: underline;
}

/* Dark section overrides — glass checklist */
.section--dark .apply-checklist {
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.08);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	box-shadow: none;
}

.section--dark .apply-checklist__item {
	border-bottom-color: rgba(255, 255, 255, 0.06);
}

.section--dark .apply-checklist__item:hover {
	background-color: rgba(255, 255, 255, 0.04);
}

.section--dark .apply-checklist__body h3,
.section--dark .apply-checklist__body h3 a {
	color: #fff;
}

.section--dark .apply-checklist__body h3 a:hover {
	color: var(--wp--preset--color--accent, #DD9F33);
}

.section--dark .apply-checklist__body p {
	color: rgba(255, 255, 255, 0.7);
}

.section--dark .apply-checklist__link {
	color: var(--wp--preset--color--accent, #DD9F33);
}

.section--dark .apply-checklist__link:hover {
	color: #e8ad4a;
}

.section--dark .apply-checklist__icon--church-plant {
	background: rgba(47, 173, 193, 0.2);
}

.section--dark .apply-checklist__icon--sabbatical {
	background: rgba(126, 114, 175, 0.2);
}

.section--dark .apply-checklist__icon--criteria {
	background: rgba(47, 173, 193, 0.2);
}

.section--dark .apply-checklist__icon--mou {
	background: rgba(221, 159, 51, 0.2);
}

.section--dark .apply-checklist__icon--process {
	background: rgba(255, 255, 255, 0.1);
	color: #fff;
}

/* ==============================
   Application Form (Open State)
   ============================== */

/* .apply-form-section + .apply-form are defined in the Application Form
   block below so the warm card styling lives with the rest of the form
   rules. */

/* ==============================
   Get Notified (Countdown + Closed)
   ============================== */

.apply-notify-section {
	padding-top: 4rem;
	padding-bottom: 4rem;
}

.apply-notify {
	background: #F7F8FA;
	border-radius: 16px;
	padding: 3rem 2.5rem;
	text-align: center;
	max-width: 600px;
	margin: 0 auto;
}

.apply-notify__icon {
	color: var(--wp--preset--color--accent, #DD9F33);
	margin-bottom: 1rem;
}

.apply-notify__title {
	font-family: 'Source Serif 4', Georgia, serif;
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--wp--preset--color--primary-dark, #2A2F42);
	margin: 0 0 0.75rem;
}

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

.apply-notify__form {
	max-width: 420px;
	margin: 0 auto;
}

/* ==============================
   FAQ Section
   ============================== */

.apply-faq {
	padding-top: 4rem;
	padding-bottom: 4rem;
}

.apply-faq__list {
	max-width: 640px;
	margin: 0 auto;
}

.apply-faq__item {
	border-bottom: 1px solid rgba(47, 173, 193, 0.15);
	padding: 0;
}

.apply-faq__item:first-child {
	border-top: 1px solid rgba(47, 173, 193, 0.15);
}

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

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

.apply-faq__question::after {
	content: '+';
	flex-shrink: 0;
	font-size: 1.25rem;
	font-weight: 300;
	color: var(--wp--preset--color--secondary-text, #6B7280);
	margin-left: 1rem;
	transition: transform 0.2s ease;
}

.apply-faq__item[open] .apply-faq__question::after {
	content: '\2212';
	transform: rotate(180deg);
}

.apply-faq__question:hover {
	color: var(--wp--preset--color--primary, #5D7992);
}

.apply-faq__answer {
	padding: 0 0 1.25rem;
}

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

.apply-faq__answer a {
	color: var(--wp--preset--color--primary, #5D7992);
	text-decoration: underline;
	text-underline-offset: 2px;
}

.apply-faq__answer a:hover {
	color: var(--wp--preset--color--primary-mid, #4A5F72);
}

/* ==============================
   Bottom CTA
   ============================== */

.apply-cta {
	text-align: center;
	padding: 5rem 1.5rem;
}

.apply-cta__content {
	position: relative;
}

.apply-cta__icon {
	color: var(--wp--preset--color--accent, #DD9F33);
	margin-bottom: 1.5rem;
}

.apply-cta h2 {
	font-size: clamp(1.75rem, 3.5vw, 2.25rem);
	margin-bottom: 1rem;
}

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

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

/* ==============================
   Responsive — Tablet
   ============================== */

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

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

	.apply-countdown {
		gap: 1.25rem;
	}

	.apply-countdown__unit {
		min-width: 64px;
	}

	.apply-countdown__number {
		font-size: clamp(2rem, 8vw, 3rem);
	}

	.apply-checklist__item {
		padding: 1.25rem 1.5rem;
	}

	.apply-deadline {
		flex-direction: column;
		text-align: center;
	}

	.apply-notify {
		padding: 2.5rem 1.5rem;
	}

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

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

/* ==============================
   Responsive — Mobile
   ============================== */

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

	.apply-countdown {
		gap: 1rem;
	}

	.apply-countdown__unit {
		min-width: 56px;
	}

	.apply-countdown__number {
		font-size: 2rem;
	}

	.apply-countdown__label {
		font-size: 0.6875rem;
	}

	.apply-checklist__item {
		flex-direction: column;
		gap: 0.75rem;
		padding: 1.25rem 1.25rem;
	}

	.apply-checklist__links {
		flex-direction: column;
		gap: 0.5rem;
	}

	.apply-faq__question {
		font-size: 0.9375rem;
	}
}

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

@media (prefers-reduced-motion: reduce) {
	.apply-hero .section__eyebrow,
	.apply-hero__title,
	.apply-hero__subtitle,
	body.apply-template .apply-hero__alert {
		opacity: 1;
		transform: none;
		animation: none !important;
	}

	.apply-countdown__number.is-ticking {
		animation: none;
	}
}

/* ==============================
   Church Planting Application —
   Scope teal brand color to the
   dedicated church-planting-application
   page only. Beats global apply-hero
   eyebrow gold via body-class specificity.
   ============================== */

body.apply-template .apply-hero .section__eyebrow,
body.apply-template .section__eyebrow {
	color: #2FADC1 !important;
}

body.apply-template .apply-deadline__icon {
	color: #2FADC1;
}

body.apply-template .apply-notify__icon {
	color: #2FADC1;
}

/* ------------------------------
   In-hero alert — teal tint sitting on the dark navy hero.
   ------------------------------ */

body.apply-template .apply-hero__content {
	text-align: center;
	padding-left: 0;
	padding-right: 0;
}

body.apply-template .apply-hero__alert {
	width: max-content;
	max-width: 100%;
	margin: 2.25rem auto 0;
	background: rgba(47, 173, 193, 0.12);
	border: 1px solid rgba(47, 173, 193, 0.35);
	border-left: 4px solid #2FADC1;
	text-align: left;
	opacity: 0;
	animation: applyFadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
	animation-delay: 0.75s;
}

body.apply-template .apply-hero__alert p {
	color: #fff;
	white-space: nowrap;
}

body.apply-template .apply-hero__alert .apply-deadline__icon {
	display: inline-flex;
	align-items: center;
	line-height: 1;
	color: #2FADC1;
}

/* Let the alert wrap on narrow viewports instead of overflowing. */
@media (max-width: 640px) {
	body.apply-template .apply-hero__alert {
		width: auto;
	}

	body.apply-template .apply-hero__alert p {
		white-space: normal;
	}
}

/* Match the hero horizontal padding to the header's inset on very narrow
   viewports (the base _page-apply.css rule drops it to 1rem at ≤480px
   which is narrower than the 1.5rem the site header uses). */
@media (max-width: 480px) {
	body.apply-template .apply-hero {
		padding-left: 1.5rem !important;
		padding-right: 1.5rem !important;
	}
}

/* Keep the hero alert's icon left-aligned with the text on mobile.
   The base _page-apply.css @media ≤768px flips .apply-deadline to a
   stacked column layout with centered text; for the in-hero variant
   on this page we want the row layout at every viewport size. */
@media (max-width: 768px) {
	body.apply-template .apply-hero__alert.apply-deadline {
		flex-direction: row;
		text-align: left;
		align-items: center;
	}
}

/* ------------------------------
   Two-column Before You Start / Prepare layout.
   Intro text on the left, clickable cards on the right.
   ------------------------------ */

body.apply-template .apply-prepare--split .apply-prepare__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1.35fr);
	gap: 4rem;
	align-items: start;
}

body.apply-template .apply-prepare__intro {
	text-align: left;
}

body.apply-template .apply-prepare__intro .section__eyebrow,
body.apply-template .apply-prepare__intro .section__title,
body.apply-template .apply-prepare__intro .section__subtitle {
	text-align: left;
	margin-left: 0;
	margin-right: 0;
	max-width: none;
}

body.apply-template .apply-prepare__intro .section__title {
	margin-top: 0.5rem;
}

body.apply-template .apply-prepare__intro .section__subtitle {
	margin-top: 1rem;
}

/* Church Planting / Sabbatical Application pages: notify card is a true grid
   sibling. Place it in the left column under the intro on desktop; the items
   column spans both rows. Both program-application pages use the same layout. */
body.page-church-planting-application .apply-prepare--split .apply-prepare__grid > .apply-prepare__intro,
body.page-sabbatical-application .apply-prepare--split .apply-prepare__grid > .apply-prepare__intro {
	grid-column: 1;
	grid-row: 1;
}

body.page-church-planting-application .apply-prepare--split .apply-prepare__grid > .apply-prepare__notify,
body.page-sabbatical-application .apply-prepare--split .apply-prepare__grid > .apply-prepare__notify {
	grid-column: 1;
	grid-row: 2;
	margin-top: -1.75rem;
}

body.page-church-planting-application .apply-prepare--split .apply-prepare__grid > .apply-prepare__items,
body.page-sabbatical-application .apply-prepare--split .apply-prepare__grid > .apply-prepare__items {
	grid-column: 2;
	grid-row: 1 / span 2;
}

@media (max-width: 900px) {
	body.apply-template .apply-prepare--split .apply-prepare__grid {
		grid-template-columns: 1fr;
		gap: 2.25rem;
	}

	body.apply-template .apply-prepare__intro,
	body.apply-template .apply-prepare__intro .section__eyebrow,
	body.apply-template .apply-prepare__intro .section__title,
	body.apply-template .apply-prepare__intro .section__subtitle {
		text-align: center;
	}

	/* Mobile stack: intro → checklist items → notify/CTA card last. */
	body.page-church-planting-application .apply-prepare--split .apply-prepare__grid > .apply-prepare__intro,
	body.page-church-planting-application .apply-prepare--split .apply-prepare__grid > .apply-prepare__notify,
	body.page-church-planting-application .apply-prepare--split .apply-prepare__grid > .apply-prepare__items,
	body.page-sabbatical-application .apply-prepare--split .apply-prepare__grid > .apply-prepare__intro,
	body.page-sabbatical-application .apply-prepare--split .apply-prepare__grid > .apply-prepare__notify,
	body.page-sabbatical-application .apply-prepare--split .apply-prepare__grid > .apply-prepare__items {
		grid-column: 1;
		grid-row: auto;
	}

	body.page-church-planting-application .apply-prepare--split .apply-prepare__grid > .apply-prepare__items,
	body.page-sabbatical-application .apply-prepare--split .apply-prepare__grid > .apply-prepare__items {
		order: 1;
	}

	body.page-church-planting-application .apply-prepare--split .apply-prepare__grid > .apply-prepare__notify,
	body.page-sabbatical-application .apply-prepare--split .apply-prepare__grid > .apply-prepare__notify {
		order: 2;
		margin-top: 0;
	}
}

/* ------------------------------
   Fully-clickable checklist cards.
   Border-top lives on the link so the hover background wipes it
   cleanly edge-to-edge (instead of leaving a visible divider).
   ------------------------------ */

body.apply-template .apply-checklist__item {
	display: block;
	padding: 0;
	border: none;
	transition: none;
	margin-bottom: 0;
}

body.apply-template .apply-checklist__item:hover {
	background-color: transparent;
}

body.apply-template .apply-checklist__item-link {
	display: flex;
	align-items: center;
	gap: 1.25rem;
	padding: 1.5rem 1.75rem;
	color: inherit;
	text-decoration: none;
	border-top: 1px solid rgba(255, 255, 255, 0.06);
	transition: background-color 0.2s ease, border-color 0.2s ease;
}

body.apply-template .apply-checklist__item:first-child .apply-checklist__item-link {
	border-top: 1px solid transparent;
	border-top-left-radius: 16px;
	border-top-right-radius: 16px;
}

body.apply-template .apply-checklist__item:last-child .apply-checklist__item-link {
	border-bottom-left-radius: 16px;
	border-bottom-right-radius: 16px;
}

body.apply-template .apply-checklist__item-link:hover,
body.apply-template .apply-checklist__item-link:focus-visible {
	background-color: rgba(47, 173, 193, 0.1);
	border-top-color: transparent;
	outline: none;
}

/* When an item is hovered, hide the next item's top divider too so
   the hover fill appears flush against the following card. */
body.apply-template .apply-checklist__item:hover + .apply-checklist__item .apply-checklist__item-link {
	border-top-color: transparent;
}

body.apply-template .apply-checklist__body {
	flex: 1;
	min-width: 0;
}

body.apply-template .apply-checklist__body h3 {
	transition: color 0.2s ease;
}

body.apply-template .apply-checklist__item-link:hover .apply-checklist__body h3,
body.apply-template .apply-checklist__item-link:focus-visible .apply-checklist__body h3 {
	color: #2FADC1;
}

body.apply-template .apply-checklist__arrow {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	color: rgba(255, 255, 255, 0.45);
	transition: color 0.2s ease, transform 0.2s ease;
}

body.apply-template .apply-checklist__item-link:hover .apply-checklist__arrow,
body.apply-template .apply-checklist__item-link:focus-visible .apply-checklist__arrow {
	color: #2FADC1;
	transform: translateX(4px);
}

/* ------------------------------
   Light variant — used for "In the Meantime" on closed/countdown state.
   Pale-teal background with dark text, white cards, and a teal underline
   that left-aligns on desktop to match the left-aligned intro column.
   The Get Notified block is nested inside so it feels like one section.
   ------------------------------ */

body.apply-template .apply-prepare--light {
	background: #EBF4F6;
	padding: 5rem 0;
}

body.apply-template .apply-prepare--light .apply-prepare__intro .section__title,
body.apply-template .apply-prepare--light .apply-notify__title {
	color: var(--wp--preset--color--primary-dark, #2A2F42);
}

body.apply-template .apply-prepare--light .apply-prepare__intro .section__subtitle,
body.apply-template .apply-prepare--light .apply-notify__desc {
	color: var(--wp--preset--color--secondary-text, #6B7280);
}

/* Left-align the underline on desktop. Reveal animation transforms from left. */
body.apply-template .apply-prepare--light .apply-prepare__intro .section__title::after {
	background: #2FADC1;
	margin-left: 0;
	margin-right: auto;
}

body.apply-template .apply-prepare--light .reveal .apply-prepare__intro .section__title::after,
body.apply-template .apply-prepare--light .apply-prepare__intro.reveal .section__title::after {
	transform-origin: left;
}

@media (max-width: 900px) {
	body.apply-template .apply-prepare--light .apply-prepare__intro .section__title::after {
		margin-left: auto;
		margin-right: auto;
	}

	body.apply-template .apply-prepare--light .reveal .apply-prepare__intro .section__title::after,
	body.apply-template .apply-prepare--light .apply-prepare__intro.reveal .section__title::after {
		transform-origin: center;
	}
}

/* ------------------------------
   Mobile horizontal padding fix.
   custom.css:2929 reduces .container-wide padding to 0.25rem at ≤640px,
   which would let the .apply-prepare cards run edge-to-edge. The hero
   sidesteps this via its own padding; these interior sections need the
   same treatment so content inset matches the header/hero.
   ------------------------------ */
@media (max-width: 640px) {
	body.apply-template .apply-prepare {
		padding-left: 1.5rem;
		padding-right: 1.5rem;
	}

	body.apply-template .apply-prepare .container-wide {
		padding-left: 0 !important;
		padding-right: 0 !important;
	}
}

/* Cards: white surface, subtle shadow, dark text. */
body.apply-template .apply-prepare--light .apply-checklist {
	background: #fff;
	border: none;
	box-shadow: 0 4px 20px rgba(42, 47, 66, 0.06);
	backdrop-filter: none;
	-webkit-backdrop-filter: none;
}

body.apply-template .apply-prepare--light .apply-checklist__item-link {
	border-top-color: rgba(42, 47, 66, 0.07);
}

body.apply-template .apply-prepare--light .apply-checklist__item:first-child .apply-checklist__item-link,
body.apply-template .apply-prepare--light .apply-checklist__item:hover + .apply-checklist__item .apply-checklist__item-link,
body.apply-template .apply-prepare--light .apply-checklist__item-link:hover,
body.apply-template .apply-prepare--light .apply-checklist__item-link:focus-visible {
	border-top-color: transparent;
}

body.apply-template .apply-prepare--light .apply-checklist__item-link:hover,
body.apply-template .apply-prepare--light .apply-checklist__item-link:focus-visible {
	background-color: rgba(47, 173, 193, 0.08);
}

body.apply-template .apply-prepare--light .apply-checklist__body h3 {
	color: var(--wp--preset--color--primary-dark, #2A2F42);
}

body.apply-template .apply-prepare--light .apply-checklist__body p {
	color: var(--wp--preset--color--secondary-text, #6B7280);
}

body.apply-template .apply-prepare--light .apply-checklist__arrow {
	color: rgba(42, 47, 66, 0.35);
}

/* ------------------------------
   "Get Notified" card — lives in the left column beside the checklist.
   Intent: a warm, navy note-card. Layered depth (radial gradient + inner
   highlight), a teal-to-amber hairline that ties to the brand accent bar,
   and typographic restraint that fits the narrow column.
   ------------------------------ */
body.apply-template .apply-prepare__notify {
	margin-top: 2.75rem;
	padding: 2.5rem 2.25rem 2.25rem;
	border-radius: 18px;
	background:
		radial-gradient(140% 120% at 0% 0%, rgba(47, 173, 193, 0.18), transparent 55%),
		radial-gradient(120% 120% at 100% 100%, rgba(221, 159, 51, 0.08), transparent 50%),
		linear-gradient(155deg, #2C3348 0%, #1E2333 100%);
	box-shadow:
		0 24px 48px -24px rgba(13, 18, 36, 0.6),
		inset 0 1px 0 rgba(255, 255, 255, 0.06);
	position: relative;
	overflow: hidden;
	text-align: left;
}

/* Hairline accent rule at the top edge — small designer touch */
body.apply-template .apply-prepare__notify::before {
	content: "";
	position: absolute;
	top: 0;
	left: 2.25rem;
	width: 52px;
	height: 3px;
	background: linear-gradient(90deg, #2FADC1 0%, #DD9F33 100%);
	border-bottom-left-radius: 2px;
	border-bottom-right-radius: 2px;
}

body.apply-template .apply-prepare__notify-kicker {
	font-family: 'Inter', sans-serif;
	font-size: 0.6875rem;
	font-weight: 600;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: #2FADC1;
	margin: 0 0 0.625rem;
}

body.apply-template .apply-prepare__notify-title {
	font-family: 'Source Serif 4', Georgia, serif;
	font-size: 1.25rem;
	font-weight: 600;
	line-height: 1.2;
	letter-spacing: -0.005em;
	color: #fff;
	margin: 0 0 0.75rem;
	text-wrap: balance;
}

body.apply-template .apply-prepare__notify-desc {
	font-family: 'Inter', sans-serif;
	font-size: 0.9375rem;
	line-height: 1.65;
	color: rgba(255, 255, 255, 0.72);
	margin: 0 0 1.75rem;
}

/* Make the inline form markup pick up .newsletter--dark WPForms styles,
   but at the full width of the column card (not the 480px cap). */
body.apply-template .apply-prepare__notify .wpforms-container-full {
	max-width: 100% !important;
	margin: 0 !important;
	padding: 0 !important;
}

body.apply-template .apply-prepare__notify .wpforms-form {
	text-align: left;
}

body.apply-template .apply-prepare__notify .wpforms-field {
	margin-bottom: 1.125rem !important;
	padding: 0 !important;
}

body.apply-template .apply-prepare__notify .wpforms-field:last-of-type {
	margin-bottom: 1.375rem !important;
}

body.apply-template .apply-prepare__notify .wpforms-field-label {
	display: block;
	font-family: 'Inter', sans-serif;
	font-size: 0.875rem;
	font-weight: 600;
	color: #fff;
	margin: 0 0 0.5rem;
}

body.apply-template .apply-prepare__notify .wpforms-field-required {
	color: #DD9F33;
}

body.apply-template .apply-prepare__notify .wpforms-field-sublabel {
	display: block;
	font-family: 'Inter', sans-serif;
	font-size: 0.75rem;
	color: rgba(255, 255, 255, 0.5);
	margin-top: 0.375rem;
}

body.apply-template .apply-prepare__notify .wpforms-field-row {
	display: flex;
	gap: 0.75rem;
}

body.apply-template .apply-prepare__notify .wpforms-field-row-block {
	flex: 1;
	min-width: 0;
}

body.apply-template .apply-prepare__notify input[type="text"],
body.apply-template .apply-prepare__notify input[type="email"] {
	width: 100%;
	box-sizing: border-box;
	padding: 0.7rem 1rem;
	font-family: 'Inter', sans-serif;
	font-size: 0.9375rem;
	line-height: 1.4;
	color: #fff;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 999px;
	transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

body.apply-template .apply-prepare__notify input[type="text"]::placeholder,
body.apply-template .apply-prepare__notify input[type="email"]::placeholder {
	color: rgba(255, 255, 255, 0.35);
}

body.apply-template .apply-prepare__notify input[type="text"]:focus,
body.apply-template .apply-prepare__notify input[type="email"]:focus {
	outline: none;
	background: rgba(255, 255, 255, 0.09);
	border-color: #2FADC1;
	box-shadow: 0 0 0 3px rgba(47, 173, 193, 0.2);
}

body.apply-template .apply-prepare__notify .wpforms-submit-container {
	margin-top: 0.25rem;
	padding: 0;
}

body.apply-template .apply-prepare__notify .wpforms-submit {
	display: block;
	width: 100%;
	padding: 0.95rem 1.5rem;
	font-family: 'Inter', sans-serif;
	font-size: 0.9375rem;
	font-weight: 600;
	letter-spacing: 0.01em;
	color: #fff;
	background: #2FADC1;
	border: none;
	border-radius: 999px;
	cursor: pointer;
	transition: background-color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}

/* Override custom.css .newsletter wpforms-submit (gold) with teal.
   Needs !important + matching specificity because the newsletter rule
   locks the amber color with !important. */
body.apply-template .apply-prepare__notify.newsletter div.wpforms-container-full .wpforms-form .wpforms-submit,
body.apply-template .apply-prepare__notify.newsletter div.wpforms-container-full .wpforms-form button[type="submit"] {
	background-color: #2FADC1 !important;
	background: #2FADC1 !important;
}

body.apply-template .apply-prepare__notify.newsletter div.wpforms-container-full .wpforms-form .wpforms-submit:hover,
body.apply-template .apply-prepare__notify.newsletter div.wpforms-container-full .wpforms-form button[type="submit"]:hover {
	background-color: #34BFD4 !important;
	background: #34BFD4 !important;
	box-shadow: 0 10px 20px -10px rgba(47, 173, 193, 0.6);
}

body.apply-template .apply-prepare__notify .wpforms-submit:active {
	transform: translateY(0);
}

/* Mobile: give the card breathing room after the stacked checklist. */
@media (max-width: 900px) {
	body.apply-template .apply-prepare__notify {
		margin-top: 2rem;
		padding: 2rem 1.75rem 1.75rem;
		text-align: left;
	}

	body.apply-template .apply-prepare__notify::before {
		left: 1.75rem;
	}
}

/* ------------------------------
   Ready-to-apply variant of the notify card.
   Same navy surface and hairline accent — swaps the inline form for a
   single amber CTA that scrolls to the application form below.
   ------------------------------ */
body.apply-template .apply-prepare__notify--ready .apply-prepare__notify-desc {
	margin-bottom: 1.5rem;
}

body.apply-template .apply-prepare__notify-btn {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.85rem 1.5rem 0.85rem 1.65rem;
	font-family: 'Inter', sans-serif;
	font-size: 0.9375rem;
	font-weight: 600;
	letter-spacing: 0.01em;
	color: #fff;
	background: var(--wp--preset--color--church-plant, #2FADC1);
	border-radius: 999px;
	text-decoration: none;
	transition: background-color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
	box-shadow: 0 8px 18px -10px rgba(47, 173, 193, 0.55);
}

body.apply-template .apply-prepare__notify-btn span {
	transition: transform 0.2s ease;
}

body.apply-template .apply-prepare__notify-btn:hover,
body.apply-template .apply-prepare__notify-btn:focus-visible {
	background: #3cc0d4;
	transform: translateY(-1px);
	box-shadow: 0 12px 22px -10px rgba(47, 173, 193, 0.7);
	outline: none;
}

body.apply-template .apply-prepare__notify-btn:hover span,
body.apply-template .apply-prepare__notify-btn:focus-visible span {
	transform: translateX(3px);
}

/* ==============================
   Application Form — Warm, on-brand WPForms styling.
   Form sits in a white card on a warm off-white section background.
   Scoped to .apply-form so it never leaks into other WPForms instances
   on the site. Uses div.wpforms-container-full for specificity parity
   with WPForms' own defaults.
   ============================== */

.apply-form-section {
	background: #fff;
	padding-top: 5rem;
	padding-bottom: 6rem;
}

/* Title underline for the form intro — church-plant teal, matches buttons. */
.apply-form-section .section__title::after {
	background: var(--wp--preset--color--church-plant, #2FADC1) !important;
}

.apply-form-section__intro {
	text-align: center;
	max-width: 640px;
	margin: 0 auto;
}

.apply-form {
	width: 100%;
	margin: 3rem auto 0;
	--af-border: #D1D8DF;
	--af-border-soft: #E3E8ED;
	--af-ink: #2A2F42;             /* primary-dark — used for all form text */
	--af-body: #2A2F42;             /* same — unified */
	--af-muted: #6B7280;           /* secondary-text */
	--af-surface: #F4F7FA;
	--af-accent: #2FADC1;          /* church-plant teal (matches .btn--planting) */
	--af-accent-hover: #3cc0d4;
	--af-accent-soft: rgba(47, 173, 193, 0.10);
	--af-accent-ring: rgba(47, 173, 193, 0.22);
	--af-link: #2FADC1;            /* inline link color */
	--af-card-shadow: 0 1px 2px rgba(30, 45, 61, 0.04), 0 14px 32px -22px rgba(30, 45, 61, 0.18);

	background: #EEF2F5;
	border-radius: 16px;
	padding: 3rem 3.25rem;
	box-shadow: var(--af-card-shadow);
	border: 1px solid #E3E8ED;
	position: relative;
}

/* Hairline accent at the top of the form card — primary blue, matches the title rule. */
.apply-form::before {
	content: "";
	position: absolute;
	top: 0;
	left: 3.25rem;
	width: 48px;
	height: 3px;
	background: var(--af-accent);
	border-bottom-left-radius: 2px;
	border-bottom-right-radius: 2px;
}

@media (max-width: 720px) {
	.apply-form {
		padding: 2rem 1.5rem;
		border-radius: 12px;
	}
	.apply-form::before {
		left: 1.5rem;
	}
}

/* Let the form fill the card. WPForms sometimes injects container widths; override. */
.apply-form div.wpforms-container-full,
.apply-form div.wpforms-container-full .wpforms-form {
	max-width: 100% !important;
	width: 100% !important;
	margin: 0 !important;
	padding: 0 !important;
}

/* Override WPForms field-size constraints — fields always fill their row. */
.apply-form div.wpforms-container-full .wpforms-form .wpforms-field-medium,
.apply-form div.wpforms-container-full .wpforms-form .wpforms-field-large,
.apply-form div.wpforms-container-full .wpforms-form .wpforms-field-small,
.apply-form div.wpforms-container-full .wpforms-form input.wpforms-field-medium,
.apply-form div.wpforms-container-full .wpforms-form input.wpforms-field-large,
.apply-form div.wpforms-container-full .wpforms-form input.wpforms-field-small,
.apply-form div.wpforms-container-full .wpforms-form textarea.wpforms-field-medium,
.apply-form div.wpforms-container-full .wpforms-form textarea.wpforms-field-large,
.apply-form div.wpforms-container-full .wpforms-form textarea.wpforms-field-small,
.apply-form div.wpforms-container-full .wpforms-form select.wpforms-field-medium,
.apply-form div.wpforms-container-full .wpforms-form select.wpforms-field-large,
.apply-form div.wpforms-container-full .wpforms-form select.wpforms-field-small {
	max-width: 100% !important;
	width: 100% !important;
}

/* Reset WPForms default field margins/padding so we control spacing. */
.apply-form div.wpforms-container-full .wpforms-form .wpforms-field {
	padding: 0;
	margin: 0 0 1.75rem;
	border: none;
}

.apply-form div.wpforms-container-full .wpforms-form .wpforms-field:last-of-type {
	margin-bottom: 2.25rem;
}

/* Field labels */
.apply-form div.wpforms-container-full .wpforms-form .wpforms-field-label {
	display: block;
	font-family: 'Inter', sans-serif;
	font-size: 0.9375rem;
	font-weight: 600;
	color: var(--af-body);
	margin: 0 0 0.5rem;
	line-height: 1.45;
	letter-spacing: 0;
	text-transform: none;
}

.apply-form div.wpforms-container-full .wpforms-form .wpforms-field-sublabel {
	display: block;
	font-family: 'Inter', sans-serif;
	font-size: 0.75rem;
	font-weight: 500;
	color: var(--af-muted);
	margin-top: 0.4rem;
	letter-spacing: 0;
	text-transform: none;
	text-align: left;
}

.apply-form div.wpforms-container-full .wpforms-form .wpforms-field-required {
	color: var(--af-accent);
	font-weight: 600;
	margin-left: 0.2em;
}

/* Text-like inputs */
.apply-form div.wpforms-container-full .wpforms-form input[type="text"],
.apply-form div.wpforms-container-full .wpforms-form input[type="email"],
.apply-form div.wpforms-container-full .wpforms-form input[type="tel"],
.apply-form div.wpforms-container-full .wpforms-form input[type="url"],
.apply-form div.wpforms-container-full .wpforms-form input[type="number"],
.apply-form div.wpforms-container-full .wpforms-form input[type="date"],
.apply-form div.wpforms-container-full .wpforms-form select,
.apply-form div.wpforms-container-full .wpforms-form textarea {
	width: 100%;
	box-sizing: border-box;
	margin-left: 0 !important;
	margin-right: 0 !important;
	padding: 0.85rem 1.05rem;
	font-family: 'Inter', sans-serif;
	font-size: 1rem;
	line-height: 1.5;
	color: var(--af-body);
	background: #fff;
	border: 1px solid var(--af-border);
	border-radius: 10px;
	box-shadow: 0 1px 2px rgba(30, 45, 61, 0.03);
	transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

/* intl-tel-input wraps the tel input in a .iti container — zero its margins too
   so the phone field lines up with the rest of the inputs. */
.apply-form div.wpforms-container-full .wpforms-form .iti,
.apply-form div.wpforms-container-full .wpforms-form .iti--allow-dropdown {
	margin-left: 0 !important;
	margin-right: 0 !important;
	width: 100%;
}

.apply-form div.wpforms-container-full .wpforms-form textarea {
	min-height: 140px;
	resize: vertical;
	line-height: 1.6;
}

.apply-form div.wpforms-container-full .wpforms-form input[type="text"]::placeholder,
.apply-form div.wpforms-container-full .wpforms-form input[type="email"]::placeholder,
.apply-form div.wpforms-container-full .wpforms-form input[type="tel"]::placeholder,
.apply-form div.wpforms-container-full .wpforms-form textarea::placeholder {
	color: #A3ABB5;
}

.apply-form div.wpforms-container-full .wpforms-form input[type="text"]:focus,
.apply-form div.wpforms-container-full .wpforms-form input[type="email"]:focus,
.apply-form div.wpforms-container-full .wpforms-form input[type="tel"]:focus,
.apply-form div.wpforms-container-full .wpforms-form input[type="url"]:focus,
.apply-form div.wpforms-container-full .wpforms-form input[type="number"]:focus,
.apply-form div.wpforms-container-full .wpforms-form input[type="date"]:focus,
.apply-form div.wpforms-container-full .wpforms-form select:focus,
.apply-form div.wpforms-container-full .wpforms-form textarea:focus {
	outline: none;
	border-color: var(--af-accent);
	background: #fff;
	box-shadow: 0 0 0 4px var(--af-accent-ring);
}

/* Row layouts (first/last name, spouse name, etc.) */
.apply-form div.wpforms-container-full .wpforms-form .wpforms-field-row {
	display: flex;
	flex-wrap: wrap;
	gap: 0.875rem;
	margin: 0;
}

/* WPForms injects ::before and ::after on .wpforms-field-row to create
   a pseudo-gutter; it leaves visible gaps on either side of multi-field
   rows and forces h3s inside the row to appear centered. Disable both. */
.apply-form div.wpforms-container-full .wpforms-form .wpforms-field-row::before,
.apply-form div.wpforms-container-full .wpforms-form .wpforms-field-row::after {
	content: none !important;
	display: none !important;
}

/* Header rendered as an <h3> inside a .wpforms-field-row container
   (WPForms Section Divider field) — force left-align and full width. */
.apply-form div.wpforms-container-full .wpforms-form .wpforms-field-row > h1,
.apply-form div.wpforms-container-full .wpforms-form .wpforms-field-row > h2,
.apply-form div.wpforms-container-full .wpforms-form .wpforms-field-row > h3,
.apply-form div.wpforms-container-full .wpforms-form .wpforms-field-row > h4 {
	flex: 1 1 100%;
	width: 100%;
	text-align: left !important;
	margin: 0 !important;
	font-family: 'Source Serif 4', Georgia, serif !important;
	font-size: 1.375rem !important;
	font-weight: 600 !important;
	line-height: 1.25 !important;
	color: var(--af-ink) !important;
	letter-spacing: -0.005em !important;
}

/* Any empty display-helper div WPForms adds after the header. */
.apply-form div.wpforms-container-full .wpforms-form .wpforms-field-content-display-frontend-clear {
	display: none !important;
}

/* Paragraphs rendered directly inside a .wpforms-field-row (e.g. the
   "*Review our Types of Churches document here." inline note) inherit
   browser default bottom margin — strip it so they sit flush with the
   next field. */
.apply-form div.wpforms-container-full .wpforms-form .wpforms-field-row > p {
	margin-bottom: 0 !important;
}

.apply-form div.wpforms-container-full .wpforms-form .wpforms-field-row .wpforms-field-row-block,
.apply-form div.wpforms-container-full .wpforms-form .wpforms-field-row .wpforms-one-half {
	flex: 1 1 0;
	min-width: 0;
	padding: 0 !important;
	margin: 0 !important;
	width: auto !important;
}

/* First field inside the card — no top rule if it starts with an HTML divider. */
.apply-form div.wpforms-container-full .wpforms-form > .wpforms-field-container > .wpforms-field:first-child.wpforms-field-html {
	margin-top: 0;
	padding-top: 0;
	border-top: none;
}

/* Intl-tel-input phone flag dropdown — keep it aligned with our taller input. */
.apply-form .iti__flag-container {
	border-radius: 10px 0 0 10px;
}

.apply-form .iti input[type="tel"] {
	padding-left: 3.25rem !important;
}

/* ------------------------------
   HTML field used as an in-form section divider
   (e.g. "Tell us about yourself:", "Tell us about your church plant:")
   Rendered as a small eyebrow-style heading with a soft rule above.
   Site .section rules center-align headings — we have to override.
   ------------------------------ */
.apply-form-section .apply-form div.wpforms-container-full .wpforms-form .wpforms-field-html {
	margin-top: 2.75rem !important;
	margin-bottom: 1.25rem !important;
	padding: 1.5rem 0 0 !important;
	border-top: 1px solid var(--af-border-soft) !important;
	text-align: left !important;
}

.apply-form-section .apply-form div.wpforms-container-full .wpforms-form .wpforms-field-html h1,
.apply-form-section .apply-form div.wpforms-container-full .wpforms-form .wpforms-field-html h2,
.apply-form-section .apply-form div.wpforms-container-full .wpforms-form .wpforms-field-html h3,
.apply-form-section .apply-form div.wpforms-container-full .wpforms-form .wpforms-field-html h4,
.apply-form-section .apply-form div.wpforms-container-full .wpforms-form .wpforms-field-html > strong {
	display: block !important;
	font-family: 'Source Serif 4', Georgia, serif !important;
	font-size: 1.375rem !important;
	font-weight: 600 !important;
	line-height: 1.25 !important;
	color: var(--af-ink) !important;
	margin: 0 0 0.75rem !important;
	letter-spacing: -0.005em !important;
	text-align: left !important;
	text-transform: none !important;
	max-width: none !important;
	padding: 0 !important;
}

/* Kill any decorative ::after rule from .section__title global styles. */
.apply-form-section .apply-form div.wpforms-container-full .wpforms-form .wpforms-field-html h1::after,
.apply-form-section .apply-form div.wpforms-container-full .wpforms-form .wpforms-field-html h2::after,
.apply-form-section .apply-form div.wpforms-container-full .wpforms-form .wpforms-field-html h3::after,
.apply-form-section .apply-form div.wpforms-container-full .wpforms-form .wpforms-field-html h4::after {
	content: none !important;
	display: none !important;
}

.apply-form-section .apply-form div.wpforms-container-full .wpforms-form .wpforms-field-html p,
.apply-form-section .apply-form div.wpforms-container-full .wpforms-form .wpforms-field-html div {
	margin: 0 !important;
	font-size: 0.9375rem !important;
	line-height: 1.6 !important;
	color: var(--af-muted) !important;
	text-align: left !important;
	max-width: none !important;
}

/* A bolded-only section marker (no heading element) — e.g. when the HTML
   field contains just <strong>Tell us about yourself:</strong>. Pull those
   up to the same serif subhead treatment as the h1-h4 rule above. */
.apply-form-section .apply-form div.wpforms-container-full .wpforms-form .wpforms-field-html p strong:only-child,
.apply-form-section .apply-form div.wpforms-container-full .wpforms-form .wpforms-field-html > strong:only-child {
	display: block !important;
	font-family: 'Source Serif 4', Georgia, serif !important;
	font-size: 1.375rem !important;
	font-weight: 600 !important;
	line-height: 1.25 !important;
	color: var(--af-ink) !important;
	letter-spacing: -0.005em !important;
	text-align: left !important;
}

.apply-form div.wpforms-container-full .wpforms-form .wpforms-field-html p strong {
	font-weight: 600;
	color: var(--af-ink);
}

/* Link color inside HTML fields (e.g. "Review our Types of Churches document here.") */
.apply-form div.wpforms-container-full .wpforms-form .wpforms-field-html a {
	color: var(--af-link);
	text-decoration: underline;
	text-underline-offset: 2px;
	text-decoration-thickness: 1px;
	transition: color 0.15s ease;
}

.apply-form div.wpforms-container-full .wpforms-form .wpforms-field-html a:hover {
	color: var(--af-accent-hover);
}

/* ------------------------------
   Image-choice radios (the "Yes / No" card selectors)
   ------------------------------ */
.apply-form div.wpforms-container-full .wpforms-form .wpforms-image-choices {
	display: flex;
	flex-wrap: wrap;
	gap: 0.875rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.apply-form div.wpforms-container-full .wpforms-form .wpforms-image-choices-item {
	flex: 0 0 auto;
	margin: 0;
	padding: 0;
}

.apply-form div.wpforms-container-full .wpforms-form .wpforms-image-choices-item label,
.apply-form div.wpforms-container-full .wpforms-form .wpforms-image-choices-item .wpforms-image-choices-label {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: flex-start;
	gap: 0.625rem;
	min-width: 112px;
	padding: 0.75rem 1.25rem;
	font-family: 'Inter', sans-serif;
	font-size: 0.9375rem;
	font-weight: 600;
	color: var(--af-ink);
	background: #fff;
	border: 1.5px solid var(--af-border);
	border-radius: 10px;
	cursor: pointer;
	transition: border-color 0.18s ease, background-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease, color 0.18s ease;
	box-shadow: 0 1px 2px rgba(30, 45, 61, 0.03);
}

/* Hide native radios + WPForms' injected check/x SVG — we draw our own. */
.apply-form div.wpforms-container-full .wpforms-form .wpforms-image-choices input[type="radio"],
.apply-form div.wpforms-container-full .wpforms-form .wpforms-image-choices input[type="checkbox"] {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.apply-form div.wpforms-container-full .wpforms-form .wpforms-image-choices-image,
.apply-form div.wpforms-container-full .wpforms-form .wpforms-image-choices-item .wpforms-image-choices-image {
	width: 22px;
	height: 22px;
	margin: 0;
	padding: 0;
	border: none;
	background: none;
	border-radius: 0;
	color: #8A97A6;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: color 0.18s ease;
}

.apply-form div.wpforms-container-full .wpforms-form .wpforms-image-choices-image img,
.apply-form div.wpforms-container-full .wpforms-form .wpforms-image-choices-image svg {
	width: 22px;
	height: 22px;
	display: block;
	object-fit: contain;
}

/* Hover */
.apply-form div.wpforms-container-full .wpforms-form .wpforms-image-choices-item label:hover,
.apply-form div.wpforms-container-full .wpforms-form .wpforms-image-choices-item .wpforms-image-choices-label:hover {
	border-color: var(--af-accent);
	background: var(--af-accent-soft);
	transform: translateY(-1px);
	box-shadow: 0 6px 14px -8px rgba(47, 173, 193, 0.35);
}

.apply-form div.wpforms-container-full .wpforms-form .wpforms-image-choices-item label:hover .wpforms-image-choices-image,
.apply-form div.wpforms-container-full .wpforms-form .wpforms-image-choices-item .wpforms-image-choices-label:hover .wpforms-image-choices-image {
	color: var(--af-accent);
}

/* Selected state — uses WPForms' default .wpforms-selected hook. */
.apply-form div.wpforms-container-full .wpforms-form .wpforms-image-choices-item.wpforms-selected label,
.apply-form div.wpforms-container-full .wpforms-form .wpforms-image-choices-item label.wpforms-selected,
.apply-form div.wpforms-container-full .wpforms-form .wpforms-image-choices-item input:checked + label {
	border-color: var(--af-accent);
	background: var(--af-accent-soft);
	color: var(--af-ink);
	box-shadow:
		0 0 0 1px var(--af-accent) inset,
		0 6px 16px -10px rgba(47, 173, 193, 0.45);
}

.apply-form div.wpforms-container-full .wpforms-form .wpforms-image-choices-item.wpforms-selected .wpforms-image-choices-image,
.apply-form div.wpforms-container-full .wpforms-form .wpforms-image-choices-item input:checked + label .wpforms-image-choices-image {
	color: var(--af-accent);
}

/* ------------------------------
   File upload drop zones (family photo, resume)
   ------------------------------ */
.apply-form div.wpforms-container-full .wpforms-form .wpforms-uploader,
.apply-form div.wpforms-container-full .wpforms-form .dz-default.dz-message,
.apply-form div.wpforms-container-full .wpforms-form .modern-title {
	font-family: 'Inter', sans-serif;
}

.apply-form div.wpforms-container-full .wpforms-form .wpforms-uploader {
	border: 1.5px dashed var(--af-border);
	border-radius: 12px;
	background: var(--af-surface);
	padding: 1.5rem;
	margin-left: 0 !important;
	text-align: center;
	transition: border-color 0.2s ease, background-color 0.2s ease;
}

.apply-form div.wpforms-container-full .wpforms-form .wpforms-uploader:hover,
.apply-form div.wpforms-container-full .wpforms-form .wpforms-uploader.dz-drag-hover {
	border-color: var(--af-link);
	background: #fff;
}

.apply-form div.wpforms-container-full .wpforms-form .wpforms-uploader a,
.apply-form div.wpforms-container-full .wpforms-form .wpforms-uploader .modern-browse {
	color: var(--af-link);
	font-weight: 600;
	text-decoration: underline;
	text-underline-offset: 2px;
}

/* ------------------------------
   Signature + captcha
   ------------------------------ */
.apply-form div.wpforms-container-full .wpforms-form .wpforms-signature-wrap {
	border: 1px solid var(--af-border);
	border-radius: 10px;
	background: #fff;
	overflow: hidden;
}

.apply-form div.wpforms-container-full .wpforms-form .wpforms-captcha-question {
	font-family: 'Inter', sans-serif;
	font-weight: 500;
	color: var(--af-ink);
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.apply-form div.wpforms-container-full .wpforms-form .wpforms-captcha-question input {
	max-width: 120px;
}

/* ------------------------------
   Submit button — amber pill to match site CTAs.
   ------------------------------ */
.apply-form div.wpforms-container-full .wpforms-form .wpforms-submit-container {
	margin-top: 0;
	padding-top: 2rem;
	border-top: 1px solid var(--af-border-soft);
	text-align: center;
}

.apply-form div.wpforms-container-full .wpforms-form button[type="submit"],
.apply-form div.wpforms-container-full .wpforms-form .wpforms-submit {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 1.05rem 2.5rem;
	min-width: 220px;
	justify-content: center;
	font-family: 'Inter', sans-serif;
	font-size: 1rem;
	font-weight: 600;
	letter-spacing: 0.005em;
	color: #fff;
	background: var(--af-accent);
	border: none;
	border-radius: 999px;
	cursor: pointer;
	box-shadow: 0 12px 24px -12px rgba(47, 173, 193, 0.55);
	transition: background-color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}

.apply-form div.wpforms-container-full .wpforms-form button[type="submit"]:hover,
.apply-form div.wpforms-container-full .wpforms-form .wpforms-submit:hover {
	background: var(--af-accent-hover);
	transform: translateY(-1px);
	box-shadow: 0 18px 30px -14px rgba(47, 173, 193, 0.7);
}

.apply-form div.wpforms-container-full .wpforms-form button[type="submit"]:active,
.apply-form div.wpforms-container-full .wpforms-form .wpforms-submit:active {
	transform: translateY(0);
}

/* ------------------------------
   Inline error states
   ------------------------------ */
.apply-form div.wpforms-container-full .wpforms-form input.wpforms-error,
.apply-form div.wpforms-container-full .wpforms-form textarea.wpforms-error,
.apply-form div.wpforms-container-full .wpforms-form select.wpforms-error {
	border-color: #C4423B;
	box-shadow: 0 0 0 3px rgba(196, 66, 59, 0.12);
}

.apply-form div.wpforms-container-full .wpforms-form label.wpforms-error {
	display: block;
	margin-top: 0.4rem;
	font-family: 'Inter', sans-serif;
	font-size: 0.8125rem;
	font-weight: 500;
	color: #C4423B;
}

/* ------------------------------
   Mobile
   ------------------------------ */
@media (max-width: 560px) {
	.apply-form div.wpforms-container-full .wpforms-form .wpforms-field-row {
		flex-direction: column;
		gap: 1.25rem;
	}

	.apply-form div.wpforms-container-full .wpforms-form .wpforms-image-choices-item label,
	.apply-form div.wpforms-container-full .wpforms-form .wpforms-image-choices-item .wpforms-image-choices-label {
		min-width: 104px;
		padding: 1rem 1.25rem;
	}

	.apply-form div.wpforms-container-full .wpforms-form button[type="submit"],
	.apply-form div.wpforms-container-full .wpforms-form .wpforms-submit {
		width: 100%;
		justify-content: center;
	}
}

/* ==============================================================
   Apply — Gateway page
   (body.apply-template--gateway)
   Adds: two-CTA hero (teal + purple), track-tabbed prepare section,
   and sabbatical-purple overrides that flip the panel's accents
   when the sabbatical tab is active.
   ============================================================== */

/* ------------------------------
   Hero — dual CTA buttons.
   Stacked kicker + label inside each button so the hierarchy reads
   at a glance: "Church Planters" / "Apply for the Church Plant Grant".
   ------------------------------ */
body.apply-template--gateway .apply-hero__ctas {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1rem;
	margin: 2.25rem auto 0;
	max-width: 820px;
	opacity: 0;
	animation: applyFadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
	animation-delay: 0.7s;
}

body.apply-template--gateway .apply-hero__cta {
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	gap: 0.15rem;
	padding: 1.1rem 2rem;
	min-width: 280px;
	line-height: 1.25;
	text-align: center;
	box-shadow: 0 18px 32px -18px rgba(0, 0, 0, 0.55);
	transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

body.apply-template--gateway .apply-hero__cta:hover,
body.apply-template--gateway .apply-hero__cta:focus-visible {
	transform: translateY(-2px);
	box-shadow: 0 24px 40px -18px rgba(0, 0, 0, 0.65);
	filter: brightness(1.04);
}

body.apply-template--gateway .apply-hero__cta-kicker {
	font-size: 0.6875rem;
	font-weight: 600;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	opacity: 0.85;
}

body.apply-template--gateway .apply-hero__cta-label {
	font-size: 1.0625rem;
	font-weight: 600;
	letter-spacing: 0.01em;
}

@media (max-width: 640px) {
	body.apply-template--gateway .apply-hero__ctas {
		flex-direction: column;
		align-items: stretch;
		gap: 0.75rem;
	}
	body.apply-template--gateway .apply-hero__cta {
		min-width: 0;
		width: 100%;
	}
}

/* When the hero carries two CTAs, push the alert down a touch so it
   reads as a footnote to the choice rather than competing with it. */
body.apply-template--gateway .apply-hero__ctas + .apply-hero__alert {
	margin-top: 1.75rem;
}

/* ------------------------------
   Tabs — the track switcher.
   Pill-style tablist with a coloured underline indicator that matches
   the track (teal for planting, purple for sabbatical). Sits above the
   existing two-column prepare grid so no layout math changes.
   ------------------------------ */
body.apply-template--gateway .apply-tabs {
	--track-accent: #2FADC1;
	--track-accent-soft: rgba(47, 173, 193, 0.1);
}

body.apply-template--gateway .apply-tabs__header {
	text-align: center;
	max-width: 720px;
	margin: 0 auto 2.5rem;
}

body.apply-template--gateway .apply-tabs__tablist {
	display: inline-flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	padding: 0.5rem;
	margin: 0 auto 2.75rem;
	background: rgba(30, 45, 61, 0.04);
	border: 1px solid rgba(30, 45, 61, 0.08);
	border-radius: 999px;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);

	/* Make the list center-align inside the wrapper. */
	display: flex;
	width: fit-content;
}

body.apply-template--gateway .apply-tabs__header + .apply-tabs__tablist {
	margin-left: auto;
	margin-right: auto;
}

/* Wrapper to center the tablist even though it is display:flex width:fit-content */
body.apply-template--gateway .apply-tabs {
	text-align: center;
}

body.apply-template--gateway .apply-tabs__tablist {
	text-align: left;
}

body.apply-template--gateway .apply-tabs__tab {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	padding: 0.75rem 1.25rem;
	border: none;
	background: transparent;
	color: var(--wp--preset--color--secondary-text, #6B7280);
	font-family: 'Inter', sans-serif;
	font-size: 0.9375rem;
	font-weight: 500;
	border-radius: 999px;
	cursor: pointer;
	transition: background-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

body.apply-template--gateway .apply-tabs__tab:hover {
	color: var(--wp--preset--color--primary-dark, #2A2F42);
	background: rgba(30, 45, 61, 0.05);
}

body.apply-template--gateway .apply-tabs__tab.is-active {
	background: #fff;
	color: var(--wp--preset--color--primary-dark, #2A2F42);
	box-shadow:
		0 8px 20px -12px rgba(30, 45, 61, 0.35),
		inset 0 0 0 1px rgba(30, 45, 61, 0.06);
}

body.apply-template--gateway .apply-tabs__tab--planting.is-active {
	box-shadow:
		0 8px 20px -12px rgba(47, 173, 193, 0.55),
		inset 0 0 0 1px rgba(47, 173, 193, 0.35),
		inset 0 -3px 0 0 #2FADC1;
}

body.apply-template--gateway .apply-tabs__tab--sabbatical.is-active {
	box-shadow:
		0 8px 20px -12px rgba(126, 114, 175, 0.55),
		inset 0 0 0 1px rgba(126, 114, 175, 0.35),
		inset 0 -3px 0 0 #7E72AF;
}

body.apply-template--gateway .apply-tabs__tab-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	border-radius: 8px;
	background: rgba(30, 45, 61, 0.05);
	color: var(--wp--preset--color--secondary-text, #6B7280);
	transition: background-color 0.25s ease, color 0.25s ease;
}

body.apply-template--gateway .apply-tabs__tab--planting.is-active .apply-tabs__tab-icon {
	background: rgba(47, 173, 193, 0.12);
	color: #2FADC1;
}

body.apply-template--gateway .apply-tabs__tab--sabbatical.is-active .apply-tabs__tab-icon {
	background: rgba(126, 114, 175, 0.15);
	color: #7E72AF;
}

body.apply-template--gateway .apply-tabs__tab-text {
	display: inline-flex;
	flex-direction: column;
	align-items: flex-start;
	line-height: 1.2;
}

body.apply-template--gateway .apply-tabs__tab-kicker {
	font-size: 0.6875rem;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--wp--preset--color--secondary-text, #6B7280);
}

body.apply-template--gateway .apply-tabs__tab-label {
	font-size: 0.9375rem;
	font-weight: 600;
}

/* ------------------------------
   Panels — one visible at a time. Fade in on activation.
   ------------------------------ */
body.apply-template--gateway .apply-tabs__panel {
	text-align: left;
}

body.apply-template--gateway .apply-tabs__panel[hidden] {
	display: none;
}

body.apply-template--gateway .apply-tabs__panel.is-active {
	animation: applyTabFade 0.45s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes applyTabFade {
	from { opacity: 0; transform: translateY(8px); }
	to   { opacity: 1; transform: translateY(0); }
}

/* ------------------------------
   Sabbatical panel — flip the page's teal accents to purple
   so the track visual identity stays consistent when that tab
   is active. Everything else inherits the shared .apply-template
   styles above.
   ------------------------------ */
body.apply-template--gateway .apply-tabs__panel[data-panel="sabbatical"] .apply-prepare__intro .section__title::after {
	background: #7E72AF;
}

/* Notify card hairline + kicker flip to purple for the sabbatical tab. */
body.apply-template--gateway .apply-prepare__notify--sabbatical::before {
	background: linear-gradient(90deg, #7E72AF 0%, #DD9F33 100%);
}

body.apply-template--gateway .apply-prepare__notify--sabbatical .apply-prepare__notify-kicker {
	color: #B4A9D5;
}

body.apply-template--gateway .apply-prepare__notify--sabbatical.newsletter div.wpforms-container-full .wpforms-form .wpforms-submit,
body.apply-template--gateway .apply-prepare__notify--sabbatical.newsletter div.wpforms-container-full .wpforms-form button[type="submit"] {
	background-color: #7E72AF !important;
	background: linear-gradient(180deg, #7E72AF 0%, #6A5F96 100%) !important;
	box-shadow:
		0 10px 22px -10px rgba(126, 114, 175, 0.55),
		inset 0 1px 0 rgba(255, 255, 255, 0.18) !important;
}

body.apply-template--gateway .apply-prepare__notify--sabbatical.newsletter div.wpforms-container-full .wpforms-form .wpforms-submit:hover,
body.apply-template--gateway .apply-prepare__notify--sabbatical.newsletter div.wpforms-container-full .wpforms-form button[type="submit"]:hover {
	background-color: #6A5F96 !important;
	background: linear-gradient(180deg, #8A7EC0 0%, #6A5F96 100%) !important;
	box-shadow: 0 12px 24px -10px rgba(126, 114, 175, 0.7) !important;
}

/* Ready-to-apply button on the sabbatical tab. */
body.apply-template--gateway .apply-prepare__notify-btn--sabbatical {
	background: #7E72AF;
	border-color: #7E72AF;
}

body.apply-template--gateway .apply-prepare__notify-btn--sabbatical:hover,
body.apply-template--gateway .apply-prepare__notify-btn--sabbatical:focus-visible {
	background: #6A5F96;
	border-color: #6A5F96;
}

/* Checklist hover inside the sabbatical panel turns purple. */
body.apply-template--gateway .apply-tabs__panel[data-panel="sabbatical"] .apply-prepare--light .apply-checklist__item-link:hover,
body.apply-template--gateway .apply-tabs__panel[data-panel="sabbatical"] .apply-prepare--light .apply-checklist__item-link:focus-visible {
	background-color: rgba(126, 114, 175, 0.1);
}

body.apply-template--gateway .apply-tabs__panel[data-panel="sabbatical"] .apply-checklist__item-link:hover .apply-checklist__body h3,
body.apply-template--gateway .apply-tabs__panel[data-panel="sabbatical"] .apply-checklist__item-link:focus-visible .apply-checklist__body h3 {
	color: #7E72AF;
}

body.apply-template--gateway .apply-tabs__panel[data-panel="sabbatical"] .apply-checklist__item-link:hover .apply-checklist__arrow,
body.apply-template--gateway .apply-tabs__panel[data-panel="sabbatical"] .apply-checklist__item-link:focus-visible .apply-checklist__arrow {
	color: #7E72AF;
}

/* ------------------------------
   Mobile tabs — stack full-width so both labels stay readable.
   ------------------------------ */
@media (max-width: 640px) {
	body.apply-template--gateway .apply-tabs__tablist {
		display: flex;
		width: 100%;
		flex-direction: column;
		border-radius: 16px;
		padding: 0.375rem;
	}

	body.apply-template--gateway .apply-tabs__tab {
		width: 100%;
		border-radius: 12px;
		justify-content: flex-start;
	}
}

/* ------------------------------
   Reduced motion
   ------------------------------ */
@media (prefers-reduced-motion: reduce) {
	body.apply-template--gateway .apply-hero__ctas,
	body.apply-template--gateway .apply-tabs__panel.is-active {
		animation: none !important;
		opacity: 1;
		transform: none;
	}
}

/* ==============================================================
   Apply gateway — gold (amber) accent overrides
   The gateway page is neutral ground: it points visitors toward two
   track-specific destinations. So the page-level accents (eyebrows,
   hero alert, section underlines) flip from teal to the brand gold
   (--wp--preset--color--accent). Track-specific accents inside the
   panels (tabs, notify cards, checklist hover) stay teal/purple to
   preserve the per-grant visual identity.
   ============================================================== */

/* Eyebrows everywhere on the gateway page — gold. Beat the teal
   override in _page-apply.css which carries !important. */
body.apply-template--gateway .apply-hero .section__eyebrow,
body.apply-template--gateway .section__eyebrow {
	color: var(--wp--preset--color--accent, #DD9F33) !important;
}

/* Hero alert — gold tint, gold border, gold icon. */
body.apply-template--gateway .apply-hero__alert {
	background: rgba(221, 159, 51, 0.1);
	border-color: rgba(221, 159, 51, 0.35);
	border-left-color: var(--wp--preset--color--accent, #DD9F33);
}

body.apply-template--gateway .apply-hero__alert .apply-deadline__icon,
body.apply-template--gateway .apply-notify__icon {
	color: var(--wp--preset--color--accent, #DD9F33);
}

/* Prepare-section underline under the shared "Prepare While You Wait"
   heading stays gold (matches other pages). It sits above both panels
   so it shouldn't pick up a per-track color. */
body.apply-template--gateway .apply-tabs__header .section__title::after {
	background: var(--wp--preset--color--accent, #DD9F33);
}

/* On the gateway page the intro column contains only the notify card
   (the eyebrow/title/subtitle were promoted up to the tabs header).
   Drop the card's default margin-top so its top edge sits flush with
   the checklist card on the right. */
body.apply-template--gateway .apply-prepare__intro > .apply-prepare__notify:first-child {
	margin-top: 0;
}

/* ------------------------------
   Church planting application hero — "Start Your Application" CTA
   that replaces the in-hero alert when applications are open. Mirrors
   the .apply-prepare__notify-btn pill from the "When You're Ready"
   card below so the look is consistent top-to-bottom.
   ------------------------------ */
body.apply-template .apply-hero__cta-wrap {
	display: flex;
	justify-content: center;
	margin-top: 2.25rem;
	opacity: 0;
	animation: applyFadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
	animation-delay: 0.75s;
}

body.apply-template .apply-hero__start-btn {
	font-size: 1.0625rem;
	padding: 1rem 1.75rem;
}

/* ==============================
   Sabbatical Application — Purple Overrides
   Mirrors the church-planting application visual language but in purple.
   Scoped to body.page-sabbatical-application so it never leaks into the
   gateway /apply/ page or the church-planting application.
   ============================== */

/* Flip the form's accent variables to purple so every var-driven accent
   inside .apply-form (top accent bar, focus borders/rings, hover colors,
   submit button background) re-tints in one place. The selector must be
   more specific than the base ".apply-form" rule that declares these
   custom properties — otherwise the body-level override loses the cascade
   for descendants of .apply-form. */
body.page-sabbatical-application .apply-form {
	--af-accent: #7E72AF;
	--af-accent-hover: #8A7EC0;
	--af-accent-soft: rgba(126, 114, 175, 0.10);
	--af-accent-ring: rgba(126, 114, 175, 0.22);
	--af-link: #7E72AF;
}

/* Submit button shadow is hardcoded teal in the base rule, so re-tint it
   explicitly. The background already flows from --af-accent above. */
body.page-sabbatical-application .apply-form div.wpforms-container-full .wpforms-form button[type="submit"],
body.page-sabbatical-application .apply-form div.wpforms-container-full .wpforms-form .wpforms-submit {
	box-shadow: 0 12px 24px -12px rgba(126, 114, 175, 0.55);
}

body.page-sabbatical-application .apply-form div.wpforms-container-full .wpforms-form button[type="submit"]:hover,
body.page-sabbatical-application .apply-form div.wpforms-container-full .wpforms-form .wpforms-submit:hover {
	box-shadow: 0 18px 30px -14px rgba(126, 114, 175, 0.7);
}

/* Eyebrow + title underline — purple. The base apply-template rule applies
   teal with !important, so we match it here. */
body.page-sabbatical-application .apply-hero .section__eyebrow,
body.page-sabbatical-application .section__eyebrow {
	color: var(--wp--preset--color--sabbatical, #7E72AF) !important;
}

body.page-sabbatical-application .section__title::after {
	background: var(--wp--preset--color--sabbatical, #7E72AF);
}

/* Apply-form intro underline (white section). */
body.page-sabbatical-application .apply-form-section .section__title::after {
	background: var(--wp--preset--color--sabbatical, #7E72AF) !important;
}

/* Hero alert — purple tint instead of teal. */
body.page-sabbatical-application .apply-hero__alert {
	background: rgba(126, 114, 175, 0.14);
	border-color: rgba(126, 114, 175, 0.4);
	border-left-color: #7E72AF;
}

body.page-sabbatical-application .apply-deadline__icon,
body.page-sabbatical-application .apply-hero__alert .apply-deadline__icon {
	color: var(--wp--preset--color--sabbatical, #7E72AF);
}

/* "Light" prepare section background — soft purple wash (parallels the
   pale-teal #EBF4F6 used for church-planting). */
body.page-sabbatical-application .apply-prepare--light {
	background: #F1EFF8;
}

body.page-sabbatical-application .apply-prepare--light .apply-prepare__intro .section__title::after {
	background: #7E72AF;
}

/* Checklist hover state — purple wash + purple title/arrow. */
body.page-sabbatical-application .apply-checklist__item-link:hover,
body.page-sabbatical-application .apply-checklist__item-link:focus-visible {
	background-color: rgba(126, 114, 175, 0.1);
}

body.page-sabbatical-application .apply-prepare--light .apply-checklist__item-link:hover,
body.page-sabbatical-application .apply-prepare--light .apply-checklist__item-link:focus-visible {
	background-color: rgba(126, 114, 175, 0.08);
}

body.page-sabbatical-application .apply-checklist__item-link:hover .apply-checklist__body h3,
body.page-sabbatical-application .apply-checklist__item-link:focus-visible .apply-checklist__body h3 {
	color: #7E72AF;
}

body.page-sabbatical-application .apply-checklist__item-link:hover .apply-checklist__arrow,
body.page-sabbatical-application .apply-checklist__item-link:focus-visible .apply-checklist__arrow {
	color: #7E72AF;
}

/* "Get Notified" / "Jump to Application" notify card — purple kicker,
   purple-to-amber hairline accent, purple input focus, purple submit. */
body.page-sabbatical-application .apply-prepare__notify::before {
	background: linear-gradient(90deg, #7E72AF 0%, #DD9F33 100%);
}

body.page-sabbatical-application .apply-prepare__notify-kicker {
	color: #B4A9D5;
}

body.page-sabbatical-application .apply-prepare__notify input[type="text"]:focus,
body.page-sabbatical-application .apply-prepare__notify input[type="email"]:focus {
	border-color: #7E72AF;
	box-shadow: 0 0 0 3px rgba(126, 114, 175, 0.22);
}

body.page-sabbatical-application .apply-prepare__notify .wpforms-submit {
	background: #7E72AF;
}

/* Override custom.css .newsletter wpforms-submit (gold) → purple, with the
   same !important parity used on the church-planting page. */
body.page-sabbatical-application .apply-prepare__notify.newsletter div.wpforms-container-full .wpforms-form .wpforms-submit,
body.page-sabbatical-application .apply-prepare__notify.newsletter div.wpforms-container-full .wpforms-form button[type="submit"] {
	background-color: #7E72AF !important;
	background: linear-gradient(180deg, #7E72AF 0%, #6A5F96 100%) !important;
	box-shadow:
		0 10px 22px -10px rgba(126, 114, 175, 0.55),
		inset 0 1px 0 rgba(255, 255, 255, 0.18) !important;
}

body.page-sabbatical-application .apply-prepare__notify.newsletter div.wpforms-container-full .wpforms-form .wpforms-submit:hover,
body.page-sabbatical-application .apply-prepare__notify.newsletter div.wpforms-container-full .wpforms-form button[type="submit"]:hover {
	background-color: #6A5F96 !important;
	background: linear-gradient(180deg, #8A7EC0 0%, #6A5F96 100%) !important;
	box-shadow: 0 12px 24px -10px rgba(126, 114, 175, 0.7) !important;
}

/* "Start Your Application" / "Jump to Application" pill button — purple. */
body.page-sabbatical-application .apply-prepare__notify-btn {
	background: var(--wp--preset--color--sabbatical, #7E72AF);
	box-shadow: 0 8px 18px -10px rgba(126, 114, 175, 0.6);
}

body.page-sabbatical-application .apply-prepare__notify-btn:hover,
body.page-sabbatical-application .apply-prepare__notify-btn:focus-visible {
	background: #8A7EC0;
	box-shadow: 0 12px 22px -10px rgba(126, 114, 175, 0.7);
}
