/*
 * Foothill Community Church — component styles.
 * Design tokens live in theme.json; this file carries the pixel-level
 * layout from the design prototype (Foothill Site.dc.html).
 */

:root {
	--fcc-gutter: var(--wp--custom--gutter, 48px);
	--fcc-stripes: var(--wp--custom--photo-stripes);
	--fcc-stripes-map: var(--wp--custom--photo-stripes-map);
	--fcc-mono: ui-monospace, Menlo, Consolas, monospace;
}

/* Full-height page: footer hugs the bottom on short pages. */
.wp-site-blocks {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}

.wp-site-blocks > footer {
	margin-top: auto;
}

p {
	margin: 0;
}

/* All fcc-* components space children with flex/grid gap — neutralize
   WP flow-layout margins inside them. */
[class*="fcc-"] > * {
	margin-block-start: 0;
	margin-block-end: 0;
}

/* Heading max-widths used by page headers (match prototype ch caps) */
.fcc-mw-20 { max-width: 20ch; }
.fcc-mw-22 { max-width: 22ch; }
.fcc-mw-24 { max-width: 24ch; }

/* ---------- Buttons ---------- */

/* Primary comes from theme.json. Variants: */
.fcc-btn-secondary .wp-block-button__link {
	background: transparent;
	border: 1.5px solid var(--wp--preset--color--border-strong);
	color: var(--wp--preset--color--body);
	padding: 12.5px 26.5px; /* 14px minus 1.5px border */
}

.fcc-btn-secondary .wp-block-button__link:hover {
	border-color: var(--wp--preset--color--terracotta);
	color: var(--wp--preset--color--terracotta);
	background: transparent;
}

.fcc-btn-dark .wp-block-button__link {
	background: var(--wp--preset--color--ink);
	color: var(--wp--preset--color--cream);
}

.fcc-btn-dark .wp-block-button__link:hover {
	background: #000;
}

.fcc-btn-ghost .wp-block-button__link {
	background: transparent;
	border: 1.5px solid rgba(245, 241, 228, .5);
	color: #F5F1E4;
	padding: 10.5px 24.5px;
	font-size: 14px;
}

.fcc-btn-ghost .wp-block-button__link:hover {
	background: rgba(245, 241, 228, .12);
	color: #F5F1E4;
}

.fcc-btn-md .wp-block-button__link {
	padding: 13px 26px;
	font-size: 14.5px;
}

.fcc-btn-md.fcc-btn-secondary .wp-block-button__link {
	padding: 11.5px 24.5px;
}

.fcc-btn-sm .wp-block-button__link {
	padding: 12px 24px;
	font-size: 14px;
}

/* ---------- Shared type helpers ---------- */

.fcc-eyebrow {
	font-size: 12.5px;
	font-weight: 700;
	letter-spacing: .18em;
	text-transform: uppercase;
	color: var(--wp--preset--color--terracotta);
}

.fcc-mono-label {
	font-family: var(--fcc-mono);
	font-size: 13px;
	color: var(--wp--preset--color--muted);
	background: var(--wp--preset--color--base);
	padding: 8px 14px;
	border-radius: 6px;
	border: 1px dashed var(--wp--preset--color--border-strong);
}

/* ---------- Announcement bar ---------- */

.fcc-announcement {
	background: var(--wp--preset--color--terracotta);
	color: var(--wp--preset--color--cream);
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 8px;
	padding: 9px 24px;
	font-size: 13.5px;
	font-weight: 600;
	letter-spacing: .02em;
	text-align: center;
}

.fcc-announcement .fcc-announcement-detail {
	font-weight: 400;
}

.fcc-announcement .fcc-announcement-detail::before {
	content: "·";
	opacity: .6;
	font-weight: 600;
	margin-right: 8px;
}

/* ---------- Header ---------- */

.fcc-header {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 12px 24px;
	padding: 18px var(--fcc-gutter);
	background: var(--wp--preset--color--base);
	border-bottom: 1px solid var(--wp--preset--color--border);
	position: sticky;
	top: 0;
	z-index: 20;
}

.fcc-brand {
	display: flex;
	align-items: center;
	gap: 14px;
	text-decoration: none;
	color: inherit;
}

.fcc-brand:hover {
	color: inherit;
}

.fcc-brand img {
	height: 52px;
	width: auto;
	mix-blend-mode: multiply;
}

.fcc-brand-text {
	display: flex;
	flex-direction: column;
}

.fcc-brand-name {
	font-family: var(--wp--preset--font-family--lora);
	font-size: 19px;
	font-weight: 600;
	letter-spacing: .01em;
	color: var(--wp--preset--color--ink);
}

.fcc-brand-tagline {
	font-size: 11px;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var(--wp--preset--color--muted);
}

.fcc-header-nav {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
}

/* Core navigation block, pill-highlighted current item */
.fcc-header-nav .wp-block-navigation {
	font-size: 14.5px;
	font-weight: 600;
	gap: 8px;
}

.fcc-header-nav .wp-block-navigation .wp-block-navigation-item a,
.fcc-header-nav .wp-block-navigation .wp-block-pages-list__item a {
	padding: 9px 13px;
	border-radius: 999px;
	white-space: nowrap;
	color: var(--wp--preset--color--body);
	text-decoration: none;
}

.fcc-header-nav .wp-block-navigation .wp-block-navigation-item a:hover,
.fcc-header-nav .wp-block-navigation .wp-block-pages-list__item a:hover {
	color: var(--wp--preset--color--terracotta);
}

.fcc-header-nav .wp-block-navigation .current-menu-item > a,
.fcc-header-nav .wp-block-navigation .wp-block-pages-list__item.current-menu-item a {
	background: #F1E6D6;
	color: var(--wp--preset--color--terracotta);
}

.fcc-header-give {
	margin-left: 12px;
}

.fcc-header-give .wp-block-button__link {
	padding: 10px 22px;
	font-size: 14.5px;
}

/* ---------- Hero (home) ---------- */

.fcc-hero {
	padding: 80px var(--fcc-gutter) 64px;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 22px;
}

.fcc-hero h1 {
	margin: 0;
	font-size: 52px;
	line-height: 1.12;
	max-width: 22ch;
	text-wrap: pretty;
}

.fcc-hero .fcc-lede {
	font-size: 17.5px;
	line-height: 1.65;
	color: var(--wp--preset--color--body);
	max-width: 52ch;
}

.fcc-btn-row {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 14px;
	margin-top: 6px;
}

.fcc-hero-facts {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 24px 48px;
	margin-top: 14px;
	padding-top: 22px;
	border-top: 1px solid var(--wp--preset--color--border);
}

.fcc-fact {
	display: flex;
	flex-direction: column;
	gap: 3px;
}

.fcc-fact-label {
	font-size: 11.5px;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: var(--wp--preset--color--muted);
}

.fcc-fact-value {
	font-family: var(--wp--preset--font-family--lora);
	font-size: 19px;
	font-weight: 600;
	color: var(--wp--preset--color--ink);
}

/* ---------- Photo bands & placeholders ---------- */

.fcc-photo-band {
	position: relative;
	height: 380px;
	background: var(--fcc-stripes);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 32px; /* room for the floating card overlap */
}

.fcc-photo-band img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.fcc-float-card {
	position: absolute;
	left: var(--fcc-gutter);
	bottom: -32px;
	background: var(--wp--preset--color--surface);
	border: 1px solid var(--wp--preset--color--border);
	border-radius: var(--wp--custom--radius--card);
	padding: 18px 22px;
	box-shadow: var(--wp--custom--shadow--floating-card);
	display: flex;
	align-items: center;
	gap: 14px;
	text-decoration: none;
	color: inherit;
}

.fcc-float-card:hover {
	color: inherit;
}

.fcc-float-icon {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: #EADFC9;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--wp--preset--font-family--lora);
	font-size: 20px;
	color: var(--wp--preset--color--terracotta);
	flex-shrink: 0;
}

.fcc-float-text {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.fcc-float-title {
	font-weight: 800;
	font-size: 14.5px;
	color: var(--wp--preset--color--ink);
}

.fcc-float-sub {
	font-size: 13px;
	color: var(--wp--preset--color--muted);
}

.fcc-photo-card {
	height: 280px;
	background: var(--fcc-stripes);
	border-radius: var(--wp--custom--radius--card);
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.fcc-photo-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* ---------- Pathway cards (home) ---------- */

.fcc-pathways {
	background: var(--wp--preset--color--surface);
	border-top: 1px solid var(--wp--preset--color--border);
	border-bottom: 1px solid var(--wp--preset--color--border);
	padding: 80px var(--fcc-gutter) 64px;
}

.fcc-pathways-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 28px;
	max-width: 900px;
	margin-inline: auto;
}

.fcc-pathway-card {
	display: flex;
	flex-direction: column;
	gap: 12px;
	padding: 28px;
	background: var(--wp--preset--color--base);
	border-radius: var(--wp--custom--radius--card-large);
	text-decoration: none;
	color: inherit;
	transition: box-shadow .15s ease;
}

.fcc-pathway-card:hover {
	box-shadow: var(--wp--custom--shadow--card-hover);
	color: inherit;
}

.fcc-pathway-title {
	font-family: var(--wp--preset--font-family--lora);
	font-size: 23px;
	font-weight: 600;
}

.fcc-pathway-card p {
	font-size: 14.5px;
	line-height: 1.6;
	color: var(--wp--preset--color--body);
}

.fcc-pathway-link {
	font-size: 14px;
	font-weight: 700;
}

.fcc-accent-terracotta .fcc-pathway-title,
.fcc-accent-terracotta .fcc-pathway-link,
.fcc-accent-terracotta .fcc-card-title {
	color: var(--wp--preset--color--terracotta);
}

.fcc-accent-olive .fcc-pathway-title,
.fcc-accent-olive .fcc-pathway-link,
.fcc-accent-olive .fcc-card-title {
	color: var(--wp--preset--color--olive);
}

.fcc-accent-gold .fcc-pathway-title,
.fcc-accent-gold .fcc-pathway-link,
.fcc-accent-gold .fcc-card-title {
	color: var(--wp--preset--color--gold);
}

/* ---------- 50/50 split (home: map + plan your visit) ---------- */

.fcc-split {
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: stretch;
}

.fcc-split .fcc-map-embed {
	min-height: 340px;
	background: var(--fcc-stripes-map);
	display: flex;
	align-items: center;
	justify-content: center;
}

.fcc-split-copy {
	padding: 56px var(--fcc-gutter);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	gap: 14px;
	background: var(--wp--preset--color--base);
	text-align: left;
}

.fcc-split-copy h2 {
	margin: 0;
}

.fcc-split-copy p {
	font-size: 15.5px;
	line-height: 1.65;
	color: var(--wp--preset--color--body);
	max-width: 48ch;
}

.fcc-split-copy .fcc-btn-row {
	justify-content: flex-start;
	margin-top: 8px;
}

/* ---------- Map embeds ---------- */

.fcc-map-embed {
	position: relative;
	overflow: hidden;
}

.fcc-map-embed iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
	display: block;
}

.fcc-map-band {
	height: 420px;
	background: var(--fcc-stripes-map);
	display: flex;
	align-items: center;
	justify-content: center;
	border-top: 1px solid var(--wp--preset--color--border);
	border-bottom: 1px solid var(--wp--preset--color--border);
}

/* ---------- Page headers ---------- */

.fcc-page-header {
	padding: 72px var(--fcc-gutter) 56px;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 18px;
}

.fcc-page-header.fcc-bordered {
	border-bottom: 1px solid var(--wp--preset--color--border);
}

.fcc-page-header h1 {
	margin: 0;
	text-wrap: pretty;
}

.fcc-page-header .fcc-intro {
	font-size: 16.5px;
	line-height: 1.7;
	color: var(--wp--preset--color--body);
	max-width: 60ch;
}

/* ---------- Article (About) ---------- */

.fcc-article {
	max-width: 760px;
	margin: 0 auto;
	padding: 64px var(--fcc-gutter);
	display: flex;
	flex-direction: column;
	gap: 28px;
}

.fcc-article > p {
	font-size: 16.5px;
	line-height: 1.75;
	color: var(--wp--preset--color--body);
}

.fcc-article strong {
	color: var(--wp--preset--color--ink);
}

.fcc-quote-card {
	background: var(--wp--preset--color--surface);
	border: 1px solid var(--wp--preset--color--border);
	border-radius: var(--wp--custom--radius--card);
	padding: 32px 36px;
}

.fcc-quote-card p {
	font-family: var(--wp--preset--font-family--lora);
	font-size: 23px;
	line-height: 1.5;
	font-style: italic;
	color: var(--wp--preset--color--ink);
}

/* ---------- CTA bands ---------- */

.fcc-cta-band {
	background: var(--wp--preset--color--surface);
	border-top: 1px solid var(--wp--preset--color--border);
	padding: 56px var(--fcc-gutter);
}

.fcc-cta-band .fcc-btn-row {
	margin-top: 0;
}

.fcc-cta-band.fcc-cta-stacked {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 14px;
	text-align: center;
}

.fcc-cta-band.fcc-cta-stacked h2 {
	margin: 0;
	font-size: 28px;
}

.fcc-cta-band.fcc-cta-stacked p {
	font-size: 15px;
	color: var(--wp--preset--color--body);
}

/* ---------- Card grids (beliefs, visit info) ---------- */

.fcc-card-grid {
	margin: 0 auto;
	padding: 64px var(--fcc-gutter);
	display: grid;
	gap: 24px;
}

.fcc-card-grid.fcc-cols-2 {
	max-width: 900px;
	grid-template-columns: 1fr 1fr;
}

.fcc-card-grid.fcc-cols-3 {
	max-width: 1000px;
	grid-template-columns: repeat(3, 1fr);
}

.fcc-card {
	background: var(--wp--preset--color--surface);
	border: 1px solid var(--wp--preset--color--border);
	border-radius: var(--wp--custom--radius--card);
	padding: 28px;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.fcc-card .fcc-card-title {
	font-family: var(--wp--preset--font-family--lora);
	font-size: 21px;
	font-weight: 600;
	color: var(--wp--preset--color--terracotta);
}

.fcc-card-grid.fcc-cols-3 .fcc-card-title {
	font-size: 20px;
}

.fcc-card.fcc-accent-olive .fcc-card-title {
	color: var(--wp--preset--color--olive);
}

.fcc-card.fcc-accent-gold .fcc-card-title {
	color: var(--wp--preset--color--gold);
}

.fcc-card p {
	font-size: 14.5px;
	line-height: 1.65;
	color: var(--wp--preset--color--body);
}

/* ---------- Quote band (beliefs) ---------- */

.fcc-quote-band {
	background: var(--wp--preset--color--olive);
	color: #F5F1E4;
	padding: 64px var(--fcc-gutter);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 16px;
	text-align: center;
}

.fcc-quote-band img {
	height: 56px;
	width: auto;
	filter: invert(1) brightness(2);
	opacity: .35;
}

.fcc-quote-band p {
	font-family: var(--wp--preset--font-family--lora);
	font-size: 26px;
	line-height: 1.5;
	font-style: italic;
	max-width: 30ch;
	text-wrap: pretty;
}

.fcc-quote-band .fcc-btn-row {
	margin-top: 8px;
}

/* ---------- Ministries ---------- */

.fcc-ministries {
	max-width: 1000px;
	margin: 0 auto;
	padding: 64px var(--fcc-gutter);
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.fcc-ministry-row {
	display: grid;
	grid-template-columns: 260px 1fr;
	background: var(--wp--preset--color--surface);
	border: 1px solid var(--wp--preset--color--border);
	border-radius: var(--wp--custom--radius--card-large);
	overflow: hidden;
}

.fcc-ministry-photo {
	min-height: 190px;
	background: var(--fcc-stripes);
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}

.fcc-ministry-photo img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.fcc-ministry-photo .fcc-mono-label {
	font-size: 12px;
	padding: 6px 12px;
	max-width: 200px;
	text-align: center;
}

.fcc-ministry-body {
	padding: 30px 34px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	justify-content: center;
}

.fcc-ministry-title-row {
	display: flex;
	align-items: baseline;
	flex-wrap: wrap;
	gap: 12px;
}

.fcc-ministry-name {
	font-family: var(--wp--preset--font-family--lora);
	font-size: 24px;
	font-weight: 600;
	color: var(--wp--preset--color--ink);
}

.fcc-when {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: var(--wp--preset--color--terracotta);
}

.fcc-ministry-body p {
	font-size: 15px;
	line-height: 1.65;
	color: var(--wp--preset--color--body);
}

/* ---------- Contact / Give ---------- */

.fcc-contact-grid {
	max-width: 960px;
	margin: 0 auto;
	padding: 0 var(--fcc-gutter) 72px;
	display: grid;
	grid-template-columns: 1.1fr .9fr;
	gap: 28px;
	align-items: start;
}

.fcc-form-card {
	background: var(--wp--preset--color--surface);
	border: 1px solid var(--wp--preset--color--border);
	border-radius: var(--wp--custom--radius--card-large);
	padding: 36px;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.fcc-form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 14px;
}

.fcc-field {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.fcc-field-label,
.fcc-form-card label {
	font-size: 12.5px;
	font-weight: 700;
	color: var(--wp--preset--color--muted);
	letter-spacing: .06em;
	text-transform: uppercase;
}

.fcc-form-card input[type="text"],
.fcc-form-card input[type="email"],
.fcc-form-card input[type="tel"],
.fcc-form-card textarea {
	border: 1.5px solid var(--wp--preset--color--border);
	border-radius: var(--wp--custom--radius--input);
	padding: 13px 14px;
	font-size: 14.5px;
	font-family: inherit;
	color: var(--wp--preset--color--ink);
	background: #FFF;
	width: 100%;
	box-sizing: border-box;
}

.fcc-form-card ::placeholder {
	color: #B4AA96;
	opacity: 1;
}

.fcc-form-card textarea {
	min-height: 110px;
	resize: vertical;
}

.fcc-form-card input:focus,
.fcc-form-card textarea:focus {
	outline: none;
	border-color: var(--wp--preset--color--terracotta);
}

.fcc-form-card .wp-block-button {
	align-self: flex-start;
}

/* Mock submit button (visual only — replace card contents with a form plugin) */
.fcc-send-btn {
	background: var(--wp--preset--color--terracotta);
	color: var(--wp--preset--color--cream);
	padding: 14px 28px;
	border-radius: 999px;
	font-size: 15px;
	font-weight: 700;
	font-family: inherit;
	border: 0;
	cursor: pointer;
	align-self: flex-start;
}

.fcc-send-btn:hover {
	background: var(--wp--preset--color--terracotta-dark);
}

.fcc-contact-side {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.fcc-visit-card {
	background: var(--wp--preset--color--surface-alt);
	border-radius: var(--wp--custom--radius--card-large);
	padding: 32px;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.fcc-side-card-title {
	font-family: var(--wp--preset--font-family--lora);
	font-size: 21px;
	font-weight: 600;
	color: var(--wp--preset--color--ink);
}

.fcc-visit-card p {
	font-size: 14.5px;
	line-height: 1.65;
	color: var(--wp--preset--color--body);
}

.fcc-give-card {
	background: var(--wp--preset--color--ink);
	color: var(--wp--preset--color--base);
	border-radius: var(--wp--custom--radius--card-large);
	padding: 32px;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.fcc-give-card .fcc-side-card-title {
	color: var(--wp--preset--color--base);
}

.fcc-give-card p {
	font-size: 14.5px;
	line-height: 1.65;
	color: var(--wp--preset--color--footer-text);
}

.fcc-give-card .fcc-btn-row {
	justify-content: flex-start;
	margin-top: 6px;
}

/* Giving embed section (MinistryForms) */

.fcc-give-section {
	max-width: 960px;
	margin: 0 auto;
	padding: 0 var(--fcc-gutter) 72px;
	display: flex;
	flex-direction: column;
	gap: 18px;
	scroll-margin-top: 120px;
}

.fcc-give-section h2 {
	margin: 0;
	text-align: center;
}

.fcc-give-section .fcc-eyebrow {
	text-align: center;
}

.fcc-give-embed {
	background: var(--wp--preset--color--surface);
	border: 1px solid var(--wp--preset--color--border);
	border-radius: var(--wp--custom--radius--card-large);
	padding: 36px;
}

.fcc-give-embed iframe {
	max-width: 100%;
}

/* ---------- Footer ---------- */

.fcc-footer {
	background: var(--wp--preset--color--ink);
	color: var(--wp--preset--color--footer-text);
	padding: 48px var(--fcc-gutter);
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	flex-wrap: wrap;
	gap: 40px;
	font-size: 13.5px;
	line-height: 1.6;
}

.fcc-footer-brand {
	display: flex;
	flex-direction: column;
	gap: 10px;
	max-width: 320px;
}

.fcc-footer-name {
	font-family: var(--wp--preset--font-family--lora);
	font-size: 20px;
	color: var(--wp--preset--color--base);
}

.fcc-footer-cols {
	display: flex;
	flex-wrap: wrap;
	gap: 32px 56px;
}

.fcc-footer-col {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.fcc-footer-col-title {
	color: var(--wp--preset--color--base);
	font-weight: 700;
}

.fcc-footer a {
	color: var(--wp--preset--color--footer-text);
	text-decoration: none;
}

.fcc-footer a:hover {
	color: var(--wp--preset--color--base);
}

/* ---------- Responsive pass ----------
 * The prototype only specifies desktop; per the handoff README:
 * stack grids to one column, H1 ~34px, gutter 20–24px.
 */

@media (max-width: 981px) {
	.fcc-pathways-grid,
	.fcc-card-grid.fcc-cols-3 {
		grid-template-columns: 1fr;
	}

	.fcc-split {
		grid-template-columns: 1fr;
	}

	.fcc-split .fcc-map-embed {
		min-height: 280px;
	}
}

@media (max-width: 781px) {
	:root {
		--fcc-gutter: 24px;
	}

	.fcc-hero {
		padding: 56px var(--fcc-gutter) 48px;
	}

	.fcc-hero h1,
	.fcc-page-header h1 {
		font-size: 34px !important;
		line-height: 1.2;
	}

	.fcc-page-header {
		padding: 56px var(--fcc-gutter) 44px;
	}

	.fcc-card-grid.fcc-cols-2 {
		grid-template-columns: 1fr;
	}

	.fcc-ministry-row {
		grid-template-columns: 1fr;
	}

	.fcc-ministry-photo {
		min-height: 200px;
	}

	.fcc-ministry-body {
		padding: 24px;
	}

	.fcc-contact-grid {
		grid-template-columns: 1fr;
	}

	.fcc-form-row {
		grid-template-columns: 1fr;
	}

	.fcc-form-card {
		padding: 24px;
	}

	.fcc-photo-band {
		height: 300px;
	}

	.fcc-float-card {
		left: var(--fcc-gutter);
		right: var(--fcc-gutter);
	}

	.fcc-hero-facts {
		gap: 16px 32px;
	}

	.fcc-footer {
		flex-direction: column;
	}

	.fcc-pathways {
		padding: 56px var(--fcc-gutter) 48px;
	}

	.fcc-article {
		padding: 48px var(--fcc-gutter);
	}

	.fcc-give-embed {
		padding: 20px;
	}
}

/* Crop the erroneous dark bar baked into the bottom edge of the logo PNG. */
.fcc-brand img, .fcc-quote-band img { clip-path: inset(0 0 3% 0); }