/* ============================================================
   GCC redesign — sitewide brand shell + home page styles
   Brand: navy / royal blue / red / yellow / green / magenta
   Type: Montserrat 900 + Permanent Marker + Caveat
   v1.0.0 — 2026-05-08
   ============================================================ */

/* v1.3.44: THE REAL ROOT CAUSE — proved live via 375px iframe:
   Container had `width: 100%` + `padding: 0 18px` + content-box → total
   width = 100% + 36px = 36px over viewport on a 375px iPhone. Every
   page overflowed by exactly the padding amount. Universal border-box
   makes width:100% mean what people expect it to mean. */
*, *::before, *::after { box-sizing: border-box; }
html, body {
	overflow-x: hidden;
	max-width: 100%;
}
.nojq,
body .nojq,
html body .nojq {
	min-width: 0 !important;
}
img, video, iframe { max-width: 100%; height: auto; }

:root {
	--gcc-navy: #0D1B2A;
	--gcc-navy-soft: #172A40;
	--gcc-blue: #1E73BE;
	--gcc-blue-soft: #3C8DD3;
	--gcc-red: #E31E24;
	--gcc-red-soft: #F23E45;
	--gcc-yellow: #FFC107;
	--gcc-yellow-soft: #FFD54F;
	--gcc-green: #2E7D32;
	--gcc-green-soft: #43A047;
	--gcc-magenta: #E91E63;
	--gcc-magenta-soft: #F23E7F;
	--gcc-purple: #7B4FA3;
	--gcc-orange: #FF6B35;
	--gcc-grey: #F4F6F8;
	--gcc-grey-mid: #D9DEE5;
	--gcc-white: #FFFFFF;
	--gcc-ink: #0D1B2A;
	--gcc-ink-soft: #3D4856;
}

/* ---------------- base + body sitewide ---------------- */
body.gcc-redesigned {
	font-family: 'Montserrat', system-ui, -apple-system, sans-serif;
	font-size: 16px;
	line-height: 1.6;
	color: var(--gcc-ink);
	background: var(--gcc-white);
	-webkit-font-smoothing: antialiased;
	margin: 0;
}

body.gcc-redesigned a { color: var(--gcc-blue); text-decoration: none; }
body.gcc-redesigned a:hover { text-decoration: underline; }
body.gcc-redesigned img, body.gcc-redesigned svg { max-width: 100%; display: block; height: auto; }

.gcc-container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 24px;
}

.heart { color: var(--gcc-red); display: inline-block; }

/* ---------------- site header (sitewide) ---------------- */
.gcc-site-header {
	background: var(--gcc-navy);
	color: var(--gcc-white);
	position: sticky;
	top: 0;
	z-index: 100;
	box-shadow: 0 2px 12px rgba(13, 27, 42, 0.15);
}

.gcc-site-bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 14px 0;
}

.gcc-brand {
	display: flex;
	align-items: center;
	gap: 14px;
	flex-shrink: 0;
	color: var(--gcc-white);
	text-decoration: none;
}
.gcc-brand:hover { text-decoration: none; }

.gcc-logo { width: 46px; height: 46px; flex-shrink: 0; }

.gcc-wordmark {
	display: flex;
	flex-direction: column;
	line-height: 1.05;
}
.gcc-wordmark strong {
	font-size: 20px;
	font-weight: 900;
	letter-spacing: -0.005em;
	color: var(--gcc-white);
}
.gcc-wordmark span {
	font-size: 9.5px;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--gcc-magenta-soft);
	font-weight: 600;
	margin-top: 3px;
}

/* primary nav */
.gcc-primary { flex: 1; }
.gcc-primary > ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	gap: 14px;        /* v1.3.45: was 22 — tighter so 8 nav items + brand + CTA fit at 1200px */
	justify-content: center;
}
.gcc-primary > ul > li { position: relative; }
.gcc-primary > ul > li > a {
	font-size: 12.5px;    /* v1.3.45: was 13.5 — smaller to fit all 8 items at standard desktop */
	font-weight: 600;
	letter-spacing: 0.03em;
	text-transform: uppercase;
	color: var(--gcc-white);
	padding: 6px 0;
	border-bottom: 2px solid transparent;
	transition: 0.2s;
	white-space: nowrap;
	display: inline-flex;
	align-items: center;
	gap: 5px;
}
.gcc-primary > ul > li > a:hover,
.gcc-primary > ul > li.active > a {
	color: var(--gcc-yellow);
	border-bottom-color: var(--gcc-yellow);
	text-decoration: none;
}
.gcc-chev { display: inline-block; }

/* dropdown */
.gcc-subnav {
	position: absolute;
	top: 100%;
	left: -16px;
	min-width: 220px;
	background: var(--gcc-white);
	color: var(--gcc-ink);
	list-style: none;
	margin: 0;
	padding: 8px 0;
	box-shadow: 0 8px 24px rgba(13, 27, 42, 0.18);
	border-radius: 4px;
	display: none;
	z-index: 200;
}
.gcc-primary > ul > li.has-children:hover > .gcc-subnav,
.gcc-primary > ul > li.has-children:focus-within > .gcc-subnav,
.gcc-primary > ul > li.has-children.open > .gcc-subnav { display: block; }
.gcc-subnav li a {
	display: block;
	padding: 9px 18px;
	color: var(--gcc-ink);
	font-size: 13.5px;
	font-weight: 500;
	text-transform: none;
	letter-spacing: 0;
}
.gcc-subnav li a:hover { background: var(--gcc-grey); color: var(--gcc-blue); text-decoration: none; }

.gcc-cta-visit {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: var(--gcc-red);
	color: var(--gcc-white);
	padding: 11px 20px;
	border-radius: 6px;
	font-weight: 700;
	font-size: 13.5px;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	transition: 0.2s;
	flex-shrink: 0;
}
.gcc-cta-visit:hover { background: var(--gcc-red-soft); transform: translateY(-1px); text-decoration: none; color: var(--gcc-white); }
/* v1.3.45: dual-label CTA so wide desktops see "Plan Your Visit",
   medium desktops just see "Visit", saving ~80px in the header bar. */
.gcc-cta-label-short { display: none; }
@media (max-width: 1280px) {
	.gcc-cta-label-full  { display: none; }
	.gcc-cta-label-short { display: inline; }
}

/* mobile menu toggle */
.gcc-menu-toggle {
	display: none;
	background: none;
	border: 1.5px solid rgba(255, 255, 255, 0.3);
	color: var(--gcc-white);
	padding: 8px 14px;
	border-radius: 6px;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	cursor: pointer;
	flex-shrink: 0;  /* never compress, never clip */
}

/* ---------------- buttons ---------------- */
.gcc-btn {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	padding: 13px 22px;
	border-radius: 6px;
	font-weight: 700;
	font-size: 14px;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	border: none;
	transition: 0.2s;
	text-decoration: none;
}
.gcc-btn:hover { transform: translateY(-1px); text-decoration: none; }
.gcc-btn-yellow { background: var(--gcc-yellow); color: var(--gcc-navy); }
.gcc-btn-yellow:hover { background: var(--gcc-yellow-soft); color: var(--gcc-navy); }
.gcc-btn-blue { background: var(--gcc-blue); color: var(--gcc-white); }
.gcc-btn-blue:hover { background: var(--gcc-blue-soft); color: var(--gcc-white); }
.gcc-btn-red { background: var(--gcc-red); color: var(--gcc-white); }
.gcc-btn-red:hover { background: var(--gcc-red-soft); color: var(--gcc-white); }
.gcc-btn-green { background: var(--gcc-green); color: var(--gcc-white); }
.gcc-btn-green:hover { background: var(--gcc-green-soft); color: var(--gcc-white); }

/* ---------------- HERO ---------------- */
.gcc-hero {
	background: var(--gcc-navy);
	color: var(--gcc-white);
	padding: 0;
	overflow: hidden;
	position: relative;
}
.gcc-hero-grid {
	display: grid;
	grid-template-columns: 1.05fr 1.1fr;
	align-items: stretch;
}
.gcc-hero-copy {
	padding: 64px 48px 64px 24px;
	background:
		radial-gradient(circle at 0% 100%, rgba(227, 30, 36, 0.18) 0%, transparent 45%),
		radial-gradient(circle at 0% 0%, rgba(30, 115, 190, 0.18) 0%, transparent 45%),
		var(--gcc-navy);
	display: flex;
	flex-direction: column;
	justify-content: center;
	position: relative;
}
.gcc-hero-copy::before {
	content: "";
	position: absolute;
	left: 0; top: 24px; bottom: 24px;
	width: 90px;
	background: linear-gradient(180deg,
		var(--gcc-red) 0%, var(--gcc-red) 32%, transparent 32%, transparent 36%,
		var(--gcc-blue) 36%, var(--gcc-blue) 68%, transparent 68%, transparent 72%,
		var(--gcc-yellow) 72%, var(--gcc-yellow) 100%);
	opacity: 0.85;
	clip-path: polygon(0 0, 100% 8%, 90% 50%, 100% 92%, 0 100%);
}
.gcc-hero-copy-inner { position: relative; max-width: 560px; margin-left: auto; }
.gcc-hero-h1 {
	font-family: 'Montserrat', sans-serif;
	font-weight: 900;
	font-size: clamp(44px, 5.5vw, 86px);
	line-height: 0.92;
	letter-spacing: -0.02em;
	margin: 0 0 4px;
	color: var(--gcc-white);
}
.gcc-news-wrap { position: relative; display: inline-block; z-index: 1; }
.gcc-news {
	display: inline-block;
	position: relative;
	font-family: 'Permanent Marker', cursive;
	font-weight: 400;
	color: var(--gcc-red);
	font-size: 1.18em;
	letter-spacing: 0.005em;
	line-height: 1;
	transform: rotate(-2deg);
	margin-left: 0.05em;
}
.gcc-news::after {
	content: "";
	position: absolute;
	left: -3%; right: -4%; bottom: 8%; height: 18%;
	background: var(--gcc-yellow);
	z-index: -1;
	border-radius: 60% 40% 50% 50% / 50% 60% 40% 50%;
	transform: rotate(-1.5deg);
}
.gcc-hope-line {
	display: inline-block;
	background: var(--gcc-red);
	color: var(--gcc-white);
	font-weight: 800;
	font-size: clamp(13px, 1.3vw, 17px);
	letter-spacing: 0.18em;
	text-transform: uppercase;
	padding: 7px 20px;
	margin: 18px 0 26px;
	transform: rotate(-1.5deg);
	border-radius: 4px;
	box-shadow: 0 2px 0 rgba(13, 27, 42, 0.12);
}
.gcc-hero-h2 {
	font-family: 'Montserrat', sans-serif;
	font-weight: 900;
	font-size: clamp(24px, 2.6vw, 38px);
	line-height: 1;
	letter-spacing: -0.015em;
	margin: 0 0 14px;
	color: var(--gcc-white);
}
.gcc-hero-tagline {
	font-family: 'Caveat', cursive;
	font-weight: 700;
	font-size: clamp(20px, 2vw, 28px);
	line-height: 1.3;
	color: var(--gcc-yellow);
	margin: 0 0 28px;
}
.gcc-hero-cta-row { display: flex; flex-wrap: wrap; gap: 10px; }

.gcc-hero-photo {
	position: relative;
	overflow: hidden;
	background: #3a1a08;
	min-height: 520px;
}
.gcc-hero-photo > img:not(.gcc-hero-badge) {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.gcc-hero-photo::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 2;
	background: linear-gradient(90deg, var(--gcc-navy) 0%, rgba(13, 27, 42, 0.6) 8%, transparent 22%);
	pointer-events: none;
}
.gcc-hero-badge {
	position: absolute;
	right: 24px;
	bottom: 24px;
	z-index: 5;
	width: 170px;
	height: 170px;
	filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.35));
}

/* ---------------- value props ---------------- */
.gcc-value-strip {
	background: var(--gcc-grey);
	padding: 40px 0;
	border-bottom: 1px solid var(--gcc-grey-mid);
}
.gcc-value-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr) auto;
	gap: 24px;
	align-items: center;
}
.gcc-value-item { display: flex; align-items: center; gap: 14px; }
.gcc-value-icon {
	width: 46px; height: 46px;
	border-radius: 50%;
	display: flex; align-items: center; justify-content: center;
	flex-shrink: 0;
}
.icon-red { background: var(--gcc-red); }
.icon-yellow { background: var(--gcc-yellow); }
.icon-blue { background: var(--gcc-blue); }
.gcc-value-text strong {
	display: block;
	font-weight: 800;
	font-size: 14px;
	letter-spacing: 0.04em;
	color: var(--gcc-navy);
	text-transform: uppercase;
	line-height: 1.15;
	margin-bottom: 4px;
}
.gcc-value-text span { font-size: 13.5px; color: var(--gcc-ink-soft); line-height: 1.45; }
.gcc-value-card {
	background: var(--gcc-white);
	border-radius: 8px;
	padding: 18px 22px;
	display: flex;
	align-items: center;
	gap: 14px;
	border: 1px solid var(--gcc-grey-mid);
}
.gcc-value-card .gcc-info { font-size: 13px; line-height: 1.4; }
.gcc-value-card .gcc-info strong { font-weight: 800; font-size: 15px; color: var(--gcc-navy); display: block; margin-bottom: 2px; }
.gcc-value-card .gcc-info span { color: var(--gcc-ink-soft); }

/* ---------------- everyone welcome ribbon ---------------- */
.gcc-welcome-ribbon {
	background: var(--gcc-navy);
	color: var(--gcc-white);
	padding: 24px 0;
	text-align: center;
}
.gcc-welcome-ribbon-inner {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
	font-family: 'Permanent Marker', cursive;
	font-size: clamp(20px, 2.4vw, 30px);
	color: var(--gcc-yellow);
	letter-spacing: 0.04em;
	transform: rotate(-1deg);
}

/* ---------------- service times + free healing combo ---------------- */
.gcc-dual { background: var(--gcc-white); padding: 28px 0; }
.gcc-dual-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.gcc-dual-card {
	border-radius: 12px;
	padding: 28px;
	display: flex;
	align-items: center;
	gap: 22px;
}
.gcc-dual-icon {
	width: 56px; height: 56px;
	border-radius: 12px;
	flex-shrink: 0;
	display: flex; align-items: center; justify-content: center;
	background: rgba(255, 255, 255, 0.18);
}
.gcc-dual-card h3 {
	font-family: 'Montserrat', sans-serif;
	font-weight: 900;
	font-size: 28px;
	margin: 0 0 4px;
	letter-spacing: -0.01em;
	line-height: 1;
}
.gcc-dual-card .lead {
	font-size: 13px;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	font-weight: 700;
	margin: 0 0 4px;
}
.gcc-dual-card .sub { font-size: 14px; line-height: 1.45; margin: 6px 0 0; font-weight: 500; opacity: 0.95; }
.gcc-dual-times {
	background: linear-gradient(135deg, var(--gcc-red-soft) 0%, var(--gcc-red) 100%);
	color: var(--gcc-white);
}
.gcc-dual-times .lead { color: var(--gcc-yellow); }
.gcc-dual-healing {
	background: linear-gradient(135deg, #B891D0 0%, var(--gcc-purple) 100%);
	color: var(--gcc-white);
}
.gcc-dual-healing .lead { color: var(--gcc-yellow); }

/* ---------------- mandate ---------------- */
.gcc-mandate { background: var(--gcc-white); padding: 80px 0; }
.gcc-mandate-head { text-align: center; max-width: 680px; margin: 0 auto 48px; }
.gcc-section-eyebrow {
	font-size: 12px;
	letter-spacing: 0.32em;
	text-transform: uppercase;
	color: var(--gcc-red);
	font-weight: 700;
	margin-bottom: 16px;
}
.gcc-section-title {
	font-family: 'Montserrat', sans-serif;
	font-weight: 900;
	font-size: clamp(28px, 3.4vw, 42px);
	line-height: 1.1;
	letter-spacing: -0.015em;
	color: var(--gcc-navy);
	margin: 0 0 16px;
}
.gcc-section-lede { font-size: 17px; line-height: 1.65; color: var(--gcc-ink-soft); max-width: 60ch; margin: 0 auto; }

.gcc-pillars { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 32px; }
.gcc-pillar {
	background: var(--gcc-grey);
	border-radius: 8px;
	padding: 28px 22px;
	border-top: 5px solid var(--gcc-yellow);
	transition: 0.2s;
}
.gcc-pillar.pillar-2 { border-top-color: var(--gcc-blue); }
.gcc-pillar.pillar-3 { border-top-color: var(--gcc-red); }
.gcc-pillar.pillar-4 { border-top-color: var(--gcc-green); }
.gcc-pillar:hover { transform: translateY(-3px); box-shadow: 0 12px 28px -8px rgba(13, 27, 42, 0.18); }
.gcc-pillar .num {
	font-family: 'Montserrat', sans-serif;
	font-weight: 900;
	font-size: 32px;
	color: var(--gcc-ink-soft);
	line-height: 1;
	margin-bottom: 6px;
	opacity: 0.45;
}
.gcc-pillar .label {
	font-size: 11px;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--gcc-red);
	font-weight: 700;
	margin-bottom: 10px;
}
.gcc-pillar h3 {
	font-family: 'Montserrat', sans-serif;
	font-weight: 800;
	font-size: 19px;
	color: var(--gcc-navy);
	margin: 0 0 10px;
	line-height: 1.2;
}
.gcc-pillar p { font-size: 14px; line-height: 1.55; color: var(--gcc-ink-soft); margin: 0 0 12px; }
.gcc-pillar .verse {
	font-size: 13px;
	line-height: 1.45;
	color: var(--gcc-navy);
	border-left: 3px solid var(--gcc-yellow);
	padding-left: 10px;
	font-style: italic;
	margin: 0;
}

/* ---------------- SET-FREE row ---------------- */
.gcc-setfree { background: var(--gcc-grey); padding: 80px 0; }
.gcc-setfree-head { text-align: center; margin-bottom: 36px; }
.gcc-setfree-head .lead {
	font-size: 26px;
	font-weight: 900;
	letter-spacing: 0.08em;
	color: var(--gcc-navy);
	margin: 0 0 8px;
}
.gcc-setfree-title {
	font-family: 'Permanent Marker', cursive;
	font-size: clamp(40px, 6vw, 72px);
	color: var(--gcc-magenta);
	transform: rotate(-2deg);
	margin: 0 0 8px;
	letter-spacing: 0.005em;
	line-height: 1;
}
.gcc-setfree-head .from {
	font-size: 22px;
	letter-spacing: 0.32em;
	text-transform: uppercase;
	color: var(--gcc-navy);
	font-weight: 600;
	margin: 0;
}
.gcc-setfree-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
/* "Painted" variant: cards use full-bleed painted-figure images whose
   embedded text replaces the HTML labels. Card-count agnostic — works
   for the 5-up (addictions/depression/fear/pain/brokenness) and would
   work for any subset. */
.gcc-setfree-img {
	display: block;
	width: 100%;
	max-width: 220px;
	height: auto;
	margin: 0 auto 10px;
	object-fit: contain;
}
.gcc-setfree-grid--painted .gcc-setfree-card { padding: 12px 12px 16px; position: relative; text-align: center; }
.gcc-setfree-grid--painted .gcc-setfree-img {
	max-width: 280px;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 0;
}
@media (max-width: 820px) {
	.gcc-setfree-grid--painted .gcc-setfree-img { max-width: 220px; }
}
@media (max-width: 540px) {
	/* On phones each card is full-width — cap the image hard so it doesn't dominate */
	.gcc-setfree-grid--painted .gcc-setfree-img { max-width: 200px; }
	.gcc-setfree-grid--painted .gcc-setfree-card { padding: 16px 12px 18px; }
}
/* Hide HTML labels visually but keep for screen readers / SEO. */
.gcc-setfree-grid--painted .gcc-setfree-card > strong,
.gcc-setfree-grid--painted .gcc-setfree-card > span {
	position: absolute;
	width: 1px; height: 1px;
	padding: 0; margin: -1px;
	overflow: hidden; clip: rect(0,0,0,0);
	white-space: nowrap; border: 0;
}
.gcc-setfree-card {
	background: var(--gcc-white);
	border-radius: 8px;
	padding: 24px 18px;
	text-align: center;
	color: var(--gcc-navy);
	text-decoration: none;
	transition: 0.2s;
	border-top: 4px solid var(--gcc-magenta);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
}
.gcc-setfree-card.sf-purple { border-top-color: var(--gcc-purple); }
.gcc-setfree-card.sf-blue { border-top-color: var(--gcc-blue); }
.gcc-setfree-card.sf-red { border-top-color: var(--gcc-red); }
.gcc-setfree-card.sf-green { border-top-color: var(--gcc-green); }
.gcc-setfree-card.sf-orange { border-top-color: var(--gcc-orange); }
.gcc-setfree-card:hover { transform: translateY(-3px); box-shadow: 0 12px 28px -8px rgba(13, 27, 42, 0.18); text-decoration: none; }
.gcc-setfree-card svg { margin-bottom: 6px; }
.gcc-setfree-card strong {
	font-size: 14px;
	font-weight: 800;
	letter-spacing: 0.06em;
	color: var(--gcc-navy);
}
.gcc-setfree-card span {
	font-size: 12px;
	letter-spacing: 0.18em;
	font-weight: 700;
	color: var(--gcc-ink-soft);
}
.gcc-setfree-card.sf-purple span { color: var(--gcc-purple); }
.gcc-setfree-card.sf-blue span { color: var(--gcc-blue); }
.gcc-setfree-card.sf-red span { color: var(--gcc-red); }
.gcc-setfree-card.sf-green span { color: var(--gcc-green); }
.gcc-setfree-card.sf-orange span { color: var(--gcc-orange); }

/* ---------------- ministry banners ---------------- */
.gcc-ministries { background: var(--gcc-white); padding: 80px 0; }
.gcc-ministry {
	display: grid;
	grid-template-columns: 1fr 1.4fr 1.6fr;
	align-items: stretch;
	border-radius: 12px;
	overflow: hidden;
	margin-bottom: 24px;
}
.gcc-ministry .m-lead {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	padding: 28px;
	gap: 14px;
}
.gcc-ministry .m-lead > div { display: flex; flex-direction: column; gap: 10px; }
.gcc-ministry .m-icon {
	width: 60px; height: 60px;
	border-radius: 50%;
	display: flex; align-items: center; justify-content: center;
}
.gcc-ministry h3 {
	font-family: 'Montserrat', sans-serif;
	font-weight: 900;
	font-size: clamp(24px, 2.6vw, 32px);
	line-height: 1;
	margin: 0;
	letter-spacing: -0.01em;
}
.gcc-ministry .m-pill {
	display: inline-block;
	align-self: flex-start;
	padding: 7px 14px;
	border-radius: 5px;
	font-size: 11px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	font-weight: 800;
}
.gcc-ministry .m-copy { padding: 28px 24px; display: flex; flex-direction: column; justify-content: center; gap: 12px; }
.gcc-ministry .m-copy p { font-size: 15.5px; line-height: 1.55; margin: 0; color: var(--gcc-navy); }
.gcc-ministry .m-quote { font-family: 'Caveat', cursive; font-weight: 700; font-size: 20px; line-height: 1.3; color: var(--gcc-navy); }
.gcc-ministry .m-photo { position: relative; overflow: hidden; }
.gcc-ministry .m-photo img { width: 100%; height: 100%; object-fit: cover; }

.gcc-ministry.m-children { background: #FFF6CC; }
.gcc-ministry.m-children .m-icon { background: var(--gcc-yellow); }
.gcc-ministry.m-children h3 { color: var(--gcc-red); }
.gcc-ministry.m-children .m-pill { background: var(--gcc-yellow); color: var(--gcc-navy); }

.gcc-ministry.m-teen { background: #D9EAF7; }
.gcc-ministry.m-teen .m-icon { background: var(--gcc-blue); }
.gcc-ministry.m-teen h3 { color: var(--gcc-blue); }
.gcc-ministry.m-teen .m-pill { background: var(--gcc-blue); color: var(--gcc-white); }

.gcc-ministry.m-adults { background: #DDE7DD; }
.gcc-ministry.m-adults .m-icon { background: var(--gcc-green); }
.gcc-ministry.m-adults h3 { color: var(--gcc-green); }
.gcc-ministry.m-adults .m-pill { background: var(--gcc-green); color: var(--gcc-white); }

/* ---------------- testimonials ---------------- */
.gcc-testimonies { background: var(--gcc-navy); color: var(--gcc-white); padding: 84px 0; position: relative; }
.gcc-test-head { text-align: center; margin-bottom: 48px; }
.gcc-test-head h2 {
	font-family: 'Montserrat', sans-serif;
	font-weight: 900;
	font-size: clamp(32px, 4vw, 56px);
	line-height: 0.95;
	letter-spacing: -0.02em;
	margin: 0;
}
.gcc-test-head h2 span { display: block; }
.gcc-test-head h2 .red { color: var(--gcc-red); }
.gcc-test-head h2 .yellow { color: var(--gcc-yellow); }
.gcc-test-head .sub {
	font-family: 'Caveat', cursive;
	font-weight: 700;
	font-size: 22px;
	color: var(--gcc-yellow);
	margin: 18px 0 0;
}
.gcc-test-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.gcc-test-card {
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 10px;
	padding: 24px;
	display: flex;
	gap: 16px;
}
.gcc-test-card .avatar {
	width: 54px; height: 54px;
	border-radius: 50%;
	display: flex; align-items: center; justify-content: center;
	font-family: 'Montserrat', sans-serif;
	font-weight: 800;
	font-size: 18px;
	flex-shrink: 0;
}
.gcc-test-card .a1 { background: linear-gradient(135deg, #F4A261 0%, #E76F51 100%); color: var(--gcc-navy); }
.gcc-test-card .a2 { background: linear-gradient(135deg, #7FB3DD 0%, var(--gcc-blue) 100%); color: var(--gcc-white); }
.gcc-test-card .a3 { background: linear-gradient(135deg, #C8B6A6 0%, #7B6A5F 100%); color: var(--gcc-white); }
.gcc-test-card .quote { font-size: 14.5px; line-height: 1.55; color: rgba(255, 255, 255, 0.92); margin: 0 0 10px; font-style: italic; }
.gcc-test-card .name { font-size: 13px; color: var(--gcc-yellow); font-weight: 700; letter-spacing: 0.04em; margin: 0; }

/* ---------------- site footer (sitewide) ---------------- */
.gcc-site-footer-contact {
	background: var(--gcc-white);
	padding: 60px 0 30px;
	border-top: 1px solid var(--gcc-grey-mid);
}
.gcc-contact-grid {
	display: grid;
	grid-template-columns: 1.1fr 1.2fr 1fr;
	gap: 48px;
	align-items: center;
}
.gcc-contact-brand { display: flex; align-items: center; gap: 14px; }
.gcc-contact-brand .gcc-info { font-size: 14.5px; line-height: 1.5; color: var(--gcc-ink-soft); }
.gcc-contact-brand .gcc-info strong {
	font-family: 'Montserrat', sans-serif;
	font-weight: 900;
	color: var(--gcc-navy);
	font-size: 22px;
	display: block;
}
.gcc-contact-brand .gcc-info em { font-style: normal; color: var(--gcc-magenta); font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 600; }
.gcc-contact-brand .gcc-tagline {
	font-family: 'Caveat', cursive;
	font-weight: 700;
	font-size: 18px;
	color: var(--gcc-ink-soft);
	line-height: 1.2;
	display: block;
	margin-top: 6px;
}
.gcc-contact-brand .gcc-tagline .belong { color: var(--gcc-red); }

.gcc-contact-list { font-size: 14px; line-height: 1.7; list-style: none; padding: 0; margin: 0; }
.gcc-contact-list .ci { display: flex; align-items: center; gap: 10px; color: var(--gcc-ink-soft); padding: 3px 0; }
.gcc-contact-list .ci svg { flex-shrink: 0; }
.gcc-contact-list .ci.pin svg { fill: var(--gcc-red); }
.gcc-contact-list .ci.phone svg { fill: var(--gcc-green); }
.gcc-contact-list .ci.mail svg { fill: var(--gcc-blue); }
.gcc-contact-list .ci.web svg { fill: var(--gcc-blue); }
.gcc-contact-list .ci .badge {
	background: var(--gcc-yellow);
	color: var(--gcc-navy);
	font-weight: 700;
	font-size: 11px;
	padding: 2px 7px;
	border-radius: 4px;
	letter-spacing: 0.04em;
	margin-left: 6px;
	text-transform: uppercase;
}

.gcc-sunday-card {
	background: var(--gcc-grey);
	border-radius: 10px;
	padding: 22px 24px;
}
.gcc-sunday-card .when-eyebrow {
	font-size: 11px;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	font-weight: 800;
	color: var(--gcc-ink-soft);
	margin: 0;
}
.gcc-sunday-card .when-time {
	font-family: 'Montserrat', sans-serif;
	font-weight: 900;
	font-size: 32px;
	color: var(--gcc-red);
	line-height: 1;
	margin: 6px 0 6px;
	letter-spacing: -0.01em;
}
.gcc-sunday-card .when-greet {
	font-family: 'Caveat', cursive;
	font-weight: 700;
	font-size: 22px;
	color: var(--gcc-navy);
	margin: 0;
}
.gcc-sunday-card .when-greet .heart { color: var(--gcc-red); }

.gcc-bottom-strip {
	background: var(--gcc-yellow);
	padding: 14px 0;
	text-align: center;
	font-family: 'Caveat', cursive;
	font-weight: 700;
	font-size: 22px;
	color: var(--gcc-navy);
	letter-spacing: 0.02em;
}
.gcc-bottom-strip .heart { color: var(--gcc-red); }

.gcc-legal {
	background: var(--gcc-navy);
	color: rgba(255, 255, 255, 0.6);
	padding: 24px 0;
	font-size: 12px;
	text-align: center;
	letter-spacing: 0.04em;
}
.gcc-legal a { color: rgba(255, 255, 255, 0.85); margin: 0 8px; }
.gcc-legal a:hover { color: var(--gcc-yellow); }

/* ---------------- mobile / responsive ---------------- */
@media (max-width: 1080px) {
	.gcc-primary > ul { gap: 16px; }
	.gcc-primary > ul > li > a { font-size: 12.5px; }
}
/* v1.3.45: bumped from 920px → 1100px. Below 1100px the desktop nav
   was getting crammed/clipped (8 items + brand + CTA = ~1364px content
   in a ~1152px container). Drawer is cleaner than overflow. */
@media (max-width: 1100px) {
	.gcc-menu-toggle { display: inline-block; }
	.gcc-primary {
		display: none;
		flex-direction: column;
		align-items: stretch;
		width: 100%;
		padding: 16px 0;
	}
	.gcc-primary.open { display: flex; }
	.gcc-primary > ul { flex-direction: column; gap: 0; }
	.gcc-primary > ul > li { border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
	.gcc-primary > ul > li > a { padding: 12px 24px; }
	.gcc-subnav { position: static; box-shadow: none; background: rgba(255, 255, 255, 0.06); border-radius: 0; }
	.gcc-subnav li a { color: var(--gcc-white); padding: 8px 36px; }
	.gcc-cta-visit { order: 2; }
	.gcc-menu-toggle { order: 3; }
	/* Site-bar overflow guard — wrap if items genuinely won't fit. */
	.gcc-site-bar { gap: 12px; flex-wrap: nowrap; }

	.gcc-hero-grid { grid-template-columns: 1fr; }
	.gcc-hero-photo { order: -1; min-height: 280px; }
	.gcc-hero-copy { padding: 48px 24px 56px; }
	.gcc-hero-copy::before { display: none; }

	.gcc-value-grid { grid-template-columns: 1fr 1fr; gap: 18px; }
	.gcc-value-card { grid-column: 1 / -1; justify-content: center; }

	.gcc-pillars { grid-template-columns: 1fr 1fr; gap: 14px; }
	.gcc-setfree-grid { grid-template-columns: repeat(2, 1fr); }
	.gcc-setfree-grid .gcc-setfree-card:last-child { grid-column: 1 / -1; }
	.gcc-dual-grid { grid-template-columns: 1fr; gap: 12px; }

	.gcc-ministry { grid-template-columns: 1fr; }
	.gcc-ministry .m-photo { aspect-ratio: 16/9; }

	.gcc-test-grid { grid-template-columns: 1fr; gap: 14px; }
	.gcc-contact-grid { grid-template-columns: 1fr; gap: 24px; text-align: center; }
	.gcc-contact-brand { justify-content: center; }
	.gcc-contact-list { display: inline-block; text-align: left; margin: 0 auto; }
	.gcc-sunday-card { text-align: center; max-width: 340px; margin: 0 auto; }
}
@media (max-width: 540px) {
	.gcc-container { padding: 0 18px; }
	.gcc-pillars { grid-template-columns: 1fr; }
	.gcc-setfree-grid { grid-template-columns: 1fr; }
	.gcc-hero-cta-row .gcc-btn { width: 100%; justify-content: center; }
	.gcc-welcome-ribbon-inner { font-size: 18px; }
	body.gcc-redesigned { font-size: 15.5px; }
	/* iPhone-tier: hide the red Plan Your Visit CTA — it's redundant with
	   the drawer menu, and on a 390px screen the Logo + CTA + Menu button
	   couldn't all fit, pushing Menu off-screen. */
	.gcc-cta-visit { display: none !important; }
	/* Shrink logo so it doesn't dominate the header */
	.gcc-brand-lockup img { width: 160px !important; height: auto !important; }
	.gcc-site-bar { padding: 10px 0; gap: 10px; }
}

/* ====================================================================
 * Live testimony marquee (v1.3.23)
 *
 * Slow horizontal drift of brand-coloured cards. Pauses on hover.
 * Two copies of the track render so the loop is seamless. Cards rotate
 * through the 5 SET-FREE colours via the .sf-{purple|blue|red|green|orange}
 * modifier.
 * ==================================================================*/
.gcc-marquee-section { padding: 42px 0 48px; background: var(--gcc-grey); }
.gcc-marquee-section .gcc-test-head h2 { font-size: clamp(28px, 4vw, 44px); margin: 8px 0 4px; }
.gcc-marquee-section .gcc-test-head .sub { font-size: 15px; margin-top: 4px; }
.gcc-marquee-eyebrow {
	display: flex; align-items: center; justify-content: center;
	gap: 10px; margin-bottom: 12px;
}
.gcc-marquee-pill {
	display: inline-block;
	background: var(--gcc-red);
	color: var(--gcc-white);
	font-size: 11px; font-weight: 900;
	letter-spacing: 0.16em;
	padding: 4px 10px;
	border-radius: 999px;
}
.gcc-marquee-label {
	font-size: 13px; font-weight: 700;
	letter-spacing: 0.08em;
	color: var(--gcc-navy);
	text-transform: uppercase;
}
.gcc-marquee {
	position: relative;
	margin-top: 28px;
	overflow: hidden;
	-webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
	mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}
.gcc-marquee-track {
	display: flex;
	gap: 18px;
	width: max-content;
	animation: gccMarqueeDrift 60s linear infinite;
	will-change: transform;
}
.gcc-marquee:hover .gcc-marquee-track,
.gcc-marquee:focus-within .gcc-marquee-track {
	animation-play-state: paused;
}
@keyframes gccMarqueeDrift {
	from { transform: translateX(0); }
	to   { transform: translateX(-50%); }
}
.gcc-marquee-card {
	flex: 0 0 320px;
	min-height: 200px;
	background: var(--gcc-white);
	border-radius: 12px;
	border-top: 5px solid var(--gcc-navy);
	padding: 18px 20px 16px;
	box-shadow: 0 6px 18px -8px rgba(13, 27, 42, 0.18);
	display: flex; flex-direction: column; justify-content: space-between;
	color: var(--gcc-navy);
	text-decoration: none;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.gcc-marquee-card:hover,
.gcc-marquee-card:focus-visible {
	transform: translateY(-4px);
	box-shadow: 0 14px 30px -10px rgba(13, 27, 42, 0.28);
	text-decoration: none;
	color: var(--gcc-navy);
}
.gcc-marquee-card:focus-visible {
	outline: 3px solid var(--gcc-yellow);
	outline-offset: 3px;
}
.gcc-marquee-cta {
	display: block;
	margin-top: 8px;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.06em;
	opacity: 0;
	transform: translateX(-4px);
	transition: opacity 0.2s ease, transform 0.2s ease;
}
.gcc-marquee-card:hover .gcc-marquee-cta,
.gcc-marquee-card:focus-visible .gcc-marquee-cta {
	opacity: 0.9;
	transform: translateX(0);
}
.gcc-marquee-card.sf-purple .gcc-marquee-cta { color: var(--gcc-purple); }
.gcc-marquee-card.sf-blue   .gcc-marquee-cta { color: var(--gcc-blue); }
.gcc-marquee-card.sf-red    .gcc-marquee-cta { color: var(--gcc-red); }
.gcc-marquee-card.sf-green  .gcc-marquee-cta { color: var(--gcc-green); }
.gcc-marquee-card.sf-orange .gcc-marquee-cta { color: var(--gcc-orange); }
.gcc-marquee-hint {
	display: inline-block;
	margin-left: 6px;
	font-size: 13px;
	opacity: 0.65;
}
.gcc-marquee-card.sf-purple { border-top-color: var(--gcc-purple); }
.gcc-marquee-card.sf-blue   { border-top-color: var(--gcc-blue); }
.gcc-marquee-card.sf-red    { border-top-color: var(--gcc-red); }
.gcc-marquee-card.sf-green  { border-top-color: var(--gcc-green); }
.gcc-marquee-card.sf-orange { border-top-color: var(--gcc-orange); }
.gcc-marquee-topic {
	font-size: 10.5px; font-weight: 900;
	letter-spacing: 0.18em;
	margin-bottom: 8px;
	opacity: 0.7;
}
.gcc-marquee-card.sf-purple .gcc-marquee-topic { color: var(--gcc-purple); }
.gcc-marquee-card.sf-blue   .gcc-marquee-topic { color: var(--gcc-blue); }
.gcc-marquee-card.sf-red    .gcc-marquee-topic { color: var(--gcc-red); }
.gcc-marquee-card.sf-green  .gcc-marquee-topic { color: var(--gcc-green); }
.gcc-marquee-card.sf-orange .gcc-marquee-topic { color: var(--gcc-orange); }
.gcc-marquee-quote {
	font-size: 16px;
	line-height: 1.45;
	font-weight: 500;
	margin: 0 0 12px;
	color: var(--gcc-navy) !important;
}
.gcc-marquee-card,
.gcc-marquee-card * {
	color: var(--gcc-navy);
}
.gcc-marquee-card:hover,
.gcc-marquee-card:hover * { color: var(--gcc-navy); }
/* Re-apply colour to topic + date so they keep their accent colour */
.gcc-marquee-card.sf-purple .gcc-marquee-topic { color: var(--gcc-purple) !important; }
.gcc-marquee-card.sf-blue   .gcc-marquee-topic { color: var(--gcc-blue)   !important; }
.gcc-marquee-card.sf-red    .gcc-marquee-topic { color: var(--gcc-red)    !important; }
.gcc-marquee-card.sf-green  .gcc-marquee-topic { color: var(--gcc-green)  !important; }
.gcc-marquee-card.sf-orange .gcc-marquee-topic { color: var(--gcc-orange) !important; }
.gcc-marquee-date { color: var(--gcc-red) !important; }
.gcc-marquee-attrib {
	display: flex; align-items: baseline; justify-content: space-between;
	gap: 8px;
	margin: 0;
	font-size: 12.5px;
}
.gcc-marquee-name { font-weight: 700; color: var(--gcc-navy); }
.gcc-marquee-date {
	font-family: 'Permanent Marker', cursive;
	font-size: 14px;
	color: var(--gcc-red);
	white-space: nowrap;
}
.gcc-marquee-empty {
	margin-top: 28px;
	text-align: center;
	padding: 36px 20px;
	background: var(--gcc-white);
	border-radius: 12px;
	color: var(--gcc-navy);
	opacity: 0.78;
	font-style: italic;
}
@media (prefers-reduced-motion: reduce) {
	.gcc-marquee-track { animation: none; }
	.gcc-marquee {
		overflow-x: auto;
		-webkit-mask-image: none;
		mask-image: none;
	}
}
@media (max-width: 540px) {
	.gcc-marquee-card { flex: 0 0 280px; min-height: 160px; }
	.gcc-marquee-quote { font-size: 15px; }
}

/* ====================================================================
 * Single testimony page (v1.3.25)
 * ==================================================================*/
.gcc-testimony-single { background: var(--gcc-white); }
.gcc-breadcrumb {
	background: var(--gcc-grey);
	padding: 14px 0;
	font-size: 13px;
	border-bottom: 1px solid rgba(13, 27, 42, 0.08);
}
.gcc-breadcrumb a { color: var(--gcc-navy); text-decoration: none; opacity: 0.85; }
.gcc-breadcrumb a:hover { opacity: 1; text-decoration: underline; }
.gcc-breadcrumb .sep { margin: 0 8px; opacity: 0.4; }
.gcc-breadcrumb .current { font-weight: 700; color: var(--gcc-navy); }

.gcc-testimony-hero {
	background: var(--gcc-white);
	padding: 72px 0 56px;
	text-align: center;
	border-top: 6px solid var(--gcc-navy);
}
.gcc-testimony-single.sf-purple .gcc-testimony-hero { border-top-color: var(--gcc-purple); }
.gcc-testimony-single.sf-blue   .gcc-testimony-hero { border-top-color: var(--gcc-blue); }
.gcc-testimony-single.sf-red    .gcc-testimony-hero { border-top-color: var(--gcc-red); }
.gcc-testimony-single.sf-green  .gcc-testimony-hero { border-top-color: var(--gcc-green); }
.gcc-testimony-single.sf-orange .gcc-testimony-hero { border-top-color: var(--gcc-orange); }

/* Big "Testimony" page title — the dominant "this is a testimony" signal */
.gcc-testimony-pagetitle {
	font-family: 'Permanent Marker', cursive;
	font-size: clamp(46px, 7vw, 84px);
	line-height: 1;
	letter-spacing: 0.02em;
	color: var(--gcc-navy);
	margin: 0 0 14px;
	text-transform: none;
}
.gcc-testimony-single.sf-purple .gcc-testimony-pagetitle { color: var(--gcc-purple); }
.gcc-testimony-single.sf-blue   .gcc-testimony-pagetitle { color: var(--gcc-blue); }
.gcc-testimony-single.sf-red    .gcc-testimony-pagetitle { color: var(--gcc-red); }
.gcc-testimony-single.sf-green  .gcc-testimony-pagetitle { color: var(--gcc-green); }
.gcc-testimony-single.sf-orange .gcc-testimony-pagetitle { color: var(--gcc-orange); }

/* Topic · Date supporting line under the big page title */
.gcc-testimony-meta {
	display: inline-flex;
	gap: 12px;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	margin: 0 auto 36px;
	font-size: 16px;
	color: var(--gcc-navy);
}
.gcc-testimony-meta-topic {
	font-weight: 900;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	font-size: 13px;
	padding: 4px 12px;
	border-radius: 999px;
	background: rgba(13, 27, 42, 0.06);
}
.gcc-testimony-single.sf-purple .gcc-testimony-meta-topic { background: rgba(123, 79, 163, 0.12); color: var(--gcc-purple); }
.gcc-testimony-single.sf-blue   .gcc-testimony-meta-topic { background: rgba(30, 115, 190, 0.12); color: var(--gcc-blue); }
.gcc-testimony-single.sf-red    .gcc-testimony-meta-topic { background: rgba(227, 30, 36, 0.10); color: var(--gcc-red); }
.gcc-testimony-single.sf-green  .gcc-testimony-meta-topic { background: rgba(46, 125, 50, 0.12); color: var(--gcc-green); }
.gcc-testimony-single.sf-orange .gcc-testimony-meta-topic { background: rgba(255, 107, 53, 0.12); color: var(--gcc-orange); }
.gcc-testimony-meta-sep { opacity: 0.35; }
.gcc-testimony-meta-date {
	font-family: 'Permanent Marker', cursive;
	font-size: 18px;
	color: var(--gcc-red);
}
.gcc-testimony-quote {
	font-size: clamp(20px, 2.4vw, 26px);
	line-height: 1.55;
	font-weight: 500;
	color: var(--gcc-navy);
	max-width: 760px;
	margin: 0 auto 24px;
	font-style: italic;
	padding: 0 8px;
}
.gcc-testimony-quote p { margin: 0 0 16px; }
.gcc-testimony-quote p:last-child { margin-bottom: 0; }
.gcc-testimony-attrib {
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.04em;
	color: var(--gcc-navy);
	margin: 0;
}

.gcc-testimony-scripture {
	background: linear-gradient(180deg, var(--gcc-grey) 0%, #FFF7E6 100%);
	padding: 56px 0;
	text-align: center;
	border-top: 1px solid rgba(13, 27, 42, 0.06);
	border-bottom: 1px solid rgba(13, 27, 42, 0.06);
}
.gcc-testimony-scripture-eyebrow {
	font-size: 12px;
	font-weight: 900;
	letter-spacing: 0.22em;
	color: var(--gcc-red);
	margin-bottom: 18px;
}
.gcc-testimony-scripture-text {
	font-size: clamp(18px, 2.1vw, 22px);
	line-height: 1.65;
	font-weight: 500;
	color: var(--gcc-navy);
	max-width: 720px;
	margin: 0 auto 18px;
	font-family: Georgia, 'Times New Roman', serif;
	padding: 0 8px;
}
.gcc-testimony-scripture-ref {
	font-family: 'Permanent Marker', cursive;
	font-size: 20px;
	color: var(--gcc-navy);
	margin: 0;
}
.gcc-testimony-scripture-ref .kjv {
	font-family: var(--gcc-font-body, system-ui);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.12em;
	opacity: 0.6;
	margin-left: 6px;
}

.gcc-testimony-related { background: var(--gcc-white); padding: 64px 0; }
.gcc-testimony-related-title {
	text-align: center;
	font-size: clamp(22px, 2.6vw, 30px);
	margin: 0 0 28px;
	color: var(--gcc-navy);
}
.gcc-testimony-related-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px;
	max-width: 1080px;
	margin: 0 auto;
}
@media (max-width: 820px) {
	.gcc-testimony-related-grid { grid-template-columns: 1fr; }
}
.gcc-testimony-related-grid .gcc-marquee-card { flex: 1 1 auto; }

.gcc-testimony-footer-nav {
	background: var(--gcc-grey);
	padding: 36px 0 56px;
}
.gcc-testimony-footer-grid {
	display: flex;
	gap: 16px;
	justify-content: center;
	flex-wrap: wrap;
}
.gcc-testimony-footer-grid .gcc-btn { min-width: 220px; justify-content: center; }
@media (max-width: 540px) {
	.gcc-testimony-footer-grid { flex-direction: column; }
	.gcc-testimony-footer-grid .gcc-btn { width: 100%; }
	.gcc-testimony-quote { font-size: 18px; }
	.gcc-testimony-scripture-text { font-size: 16px; }
}

/* ====================================================================
 * Testimony archive + taxonomy pages (v1.3.26)
 * ==================================================================*/
.gcc-testimony-archive { background: var(--gcc-white); }
.gcc-archive-hero {
	background: var(--gcc-grey);
	padding: 56px 0 44px;
	text-align: center;
}
.gcc-archive-eyebrow {
	font-size: 12px;
	font-weight: 900;
	letter-spacing: 0.22em;
	color: var(--gcc-red);
	margin-bottom: 10px;
}
.gcc-archive-title {
	font-size: clamp(28px, 4vw, 44px);
	color: var(--gcc-navy);
	margin: 0 0 12px;
	/* Prevent ragged line-wrap on the page title */
	text-wrap: balance;
}
.gcc-archive-lede {
	max-width: 640px;
	margin: 0 auto;
	color: var(--gcc-navy);
	opacity: 0.85;
	font-size: 17px;
	line-height: 1.55;
	/* Browsers that support balance get nicely-balanced lines instead of
	   the default "fill, fill, fill, scrap" wrap. Falls back gracefully. */
	text-wrap: pretty;
}
.gcc-archive-pastoral {
	margin-top: 26px;
	display: flex; gap: 14px; align-items: center; justify-content: center; flex-wrap: wrap;
}
.gcc-archive-pastoral span {
	font-size: 14px;
	font-weight: 600;
	color: var(--gcc-navy);
}

.gcc-archive-filters {
	background: var(--gcc-white);
	padding: 26px 0 8px;
	border-bottom: 1px solid rgba(13, 27, 42, 0.06);
}
.gcc-archive-filter-row {
	display: flex; flex-wrap: wrap; gap: 10px;
	margin-bottom: 12px;
	align-items: center;
}
.gcc-archive-filter-label {
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 0.04em;
	color: var(--gcc-navy);
	margin-right: 4px;
}
.gcc-archive-chip {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: var(--gcc-grey);
	color: var(--gcc-navy);
	padding: 6px 12px;
	border-radius: 999px;
	font-size: 13px;
	font-weight: 600;
	text-decoration: none;
	transition: background 0.15s ease;
}
.gcc-archive-chip:hover { background: #E5EBF1; text-decoration: none; color: var(--gcc-navy); }
.gcc-archive-chip span {
	background: var(--gcc-navy);
	color: var(--gcc-white);
	font-size: 10px;
	padding: 2px 7px;
	border-radius: 999px;
	font-weight: 800;
}

.gcc-archive-grid-section { background: var(--gcc-white); padding: 48px 0 64px; }
.gcc-archive-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px;
}
@media (max-width: 820px) {
	.gcc-archive-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
	.gcc-archive-grid { grid-template-columns: 1fr; }
}
.gcc-archive-grid .gcc-marquee-card { flex: 1 1 auto; min-height: 200px; }
.gcc-archive-pagination {
	margin-top: 36px;
	text-align: center;
	display: flex; gap: 8px; justify-content: center; flex-wrap: wrap;
}
.gcc-archive-pagination .page-numbers {
	display: inline-block;
	min-width: 38px;
	padding: 8px 14px;
	background: var(--gcc-grey);
	color: var(--gcc-navy);
	text-decoration: none;
	border-radius: 6px;
	font-weight: 700;
	transition: background 0.15s ease;
}
.gcc-archive-pagination .page-numbers:hover { background: #E5EBF1; }
.gcc-archive-pagination .page-numbers.current {
	background: var(--gcc-navy);
	color: var(--gcc-white);
}
.gcc-archive-empty {
	text-align: center;
	padding: 60px 20px;
	color: var(--gcc-navy);
	font-style: italic;
	opacity: 0.7;
}

/* Sunday archive — sermon video block */
.gcc-sunday-sermon { background: var(--gcc-white); padding: 36px 0 12px; }
.gcc-sunday-sermon-eyebrow {
	text-align: center;
	font-size: 12px;
	font-weight: 900;
	letter-spacing: 0.22em;
	color: var(--gcc-red);
	margin-bottom: 18px;
}
.gcc-sunday-video {
	position: relative;
	aspect-ratio: 16 / 9;
	max-width: 880px;
	margin: 0 auto;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 12px 32px -12px rgba(13, 27, 42, 0.32);
}
.gcc-sunday-video iframe {
	position: absolute; inset: 0;
	width: 100%; height: 100%;
	border: 0;
}
.gcc-sunday-recap {
	max-width: 720px; margin: 0 auto;
	text-align: center;
	color: var(--gcc-navy);
	font-size: 16px;
	line-height: 1.55;
}
.gcc-sunday-sermon-link {
	background: var(--gcc-white);
	padding: 36px 0;
}
.gcc-sunday-sermon-card {
	display: flex;
	gap: 18px;
	align-items: stretch;
	max-width: 760px;
	margin: 0 auto;
	background: var(--gcc-grey);
	border-radius: 14px;
	overflow: hidden;
	text-decoration: none;
	color: var(--gcc-navy);
	box-shadow: 0 10px 26px -12px rgba(13, 27, 42, 0.22);
	border-left: 6px solid var(--gcc-red);
	transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.gcc-sunday-sermon-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 16px 34px -14px rgba(13, 27, 42, 0.32);
	color: var(--gcc-navy);
	text-decoration: none;
}
.gcc-sunday-sermon-img {
	flex: 0 0 220px;
	background-size: cover;
	background-position: center;
	background-color: var(--gcc-navy);
}
.gcc-sunday-sermon-body {
	flex: 1;
	padding: 22px 24px;
	display: flex; flex-direction: column; justify-content: center;
}
.gcc-sunday-sermon-title {
	font-family: 'Permanent Marker', cursive;
	font-size: clamp(22px, 2.6vw, 30px);
	margin: 0 0 8px;
	color: var(--gcc-navy);
}
.gcc-sunday-sermon-cta {
	font-size: 14px;
	font-weight: 800;
	letter-spacing: 0.06em;
	color: var(--gcc-red);
	margin: 0;
}
@media (max-width: 540px) {
	.gcc-sunday-sermon-card { flex-direction: column; }
	.gcc-sunday-sermon-img { flex: 0 0 180px; }
}

.gcc-sunday-stories-title {
	text-align: center;
	font-size: clamp(22px, 2.6vw, 30px);
	margin: 0 0 28px;
	color: var(--gcc-navy);
}

/* Pastoral CTA inside the scripture block */
.gcc-testimony-pastoral-cta {
	max-width: 640px;
	margin: 32px auto 0;
	padding-top: 24px;
	border-top: 1px dashed rgba(13, 27, 42, 0.2);
	text-align: center;
	font-size: 15px;
	color: var(--gcc-navy);
}
.gcc-testimony-pastoral-cta a {
	font-weight: 800;
	color: var(--gcc-red);
	text-decoration: none;
	border-bottom: 2px solid currentColor;
}
.gcc-testimony-pastoral-cta a:hover { opacity: 0.8; }

/* Share buttons */
.gcc-testimony-share {
	background: var(--gcc-white);
	padding: 48px 0;
	text-align: center;
	border-top: 1px solid rgba(13, 27, 42, 0.06);
}
.gcc-testimony-share-title {
	font-size: 22px;
	margin: 0 0 4px;
	color: var(--gcc-navy);
}
.gcc-testimony-share-lede {
	margin: 0 0 24px;
	font-size: 14px;
	opacity: 0.7;
	color: var(--gcc-navy);
}
.gcc-testimony-share-buttons {
	display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
}
.gcc-share-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 18px;
	border-radius: 999px;
	font-size: 14px;
	font-weight: 700;
	text-decoration: none;
	border: 0;
	cursor: pointer;
	font-family: inherit;
	transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.gcc-share-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 16px -6px rgba(13, 27, 42, 0.28); text-decoration: none; }
.gcc-share-btn.share-whatsapp { background: #25D366; color: #FFFFFF; }
.gcc-share-btn.share-whatsapp:hover { color: #FFFFFF; }
.gcc-share-btn.share-facebook { background: #1877F2; color: #FFFFFF; }
.gcc-share-btn.share-facebook:hover { color: #FFFFFF; }
.gcc-share-btn.share-copy { background: var(--gcc-navy); color: #FFFFFF; }
.gcc-share-btn.share-copy.copied { background: var(--gcc-green); }
.gcc-share-btn svg { flex: 0 0 18px; }

/* ====================================================================
 * Revelation 19:10 thematic banner — frames every testimony page
 * with the theological truth that all testimonies point to Jesus.
 * ==================================================================*/
.gcc-rev1910-banner {
	background: var(--gcc-navy);
	color: var(--gcc-white);
	padding: 22px 0;
	text-align: center;
	border-top: 3px solid var(--gcc-yellow);
}
.gcc-rev1910-quote {
	font-family: Georgia, 'Times New Roman', serif;
	font-style: italic;
	font-size: clamp(17px, 2vw, 22px);
	line-height: 1.45;
	margin: 0 0 6px;
	color: var(--gcc-white);
	text-wrap: balance;
}
.gcc-rev1910-quote .ref {
	font-family: 'Permanent Marker', cursive;
	font-style: normal;
	font-size: 15px;
	color: var(--gcc-yellow);
	margin-left: 10px;
	display: inline-block;
	white-space: nowrap;
}
.gcc-rev1910-ref {
	font-family: 'Permanent Marker', cursive;
	font-size: 17px;
	color: var(--gcc-yellow);
	margin: 0;
}
.gcc-rev1910-ref .kjv {
	font-family: var(--gcc-font-body, system-ui);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.12em;
	opacity: 0.7;
	margin-left: 6px;
}
.gcc-rev1910-banner--compact { padding: 14px 0; border-top-width: 2px; }
.gcc-rev1910-banner--compact .gcc-rev1910-quote { font-size: 15px; margin: 0; }
@media (max-width: 540px) {
	.gcc-rev1910-quote .ref { display: block; margin-left: 0; margin-top: 4px; }
}

/* ====================================================================
 * Sermon single + archive (v1.3.32)
 * ==================================================================*/
.gcc-sermon-single,
.gcc-sermon-archive { background: var(--gcc-white); }

/* Hero — solid navy background, text only. Featured image now renders
   as its own section below the hero (.gcc-sermon-image).
   v1.3.42: stopped using width:100vw breakout — iOS Safari clips
   that against the parent content wrapper, cutting off page content.
   Now a contained block. */
.gcc-sermon-hero {
	position: relative;
	margin: 0 0 24px;
	color: var(--gcc-white) !important;
	background: #0D1B2A;
	width: 100%;
	box-sizing: border-box;
	border-bottom: 4px solid var(--gcc-yellow);
}
.gcc-sermon-hero-overlay { display: none; }  /* no longer needed */
.gcc-sermon-hero-inner {
	padding: 64px 0 56px;
	text-align: center;
}

/* Featured image block — full-width, sits between hero + audio/notes */
.gcc-sermon-image {
	padding: 28px 0 0;
	background: var(--gcc-white);
}
.gcc-sermon-image-img {
	display: block;
	width: 100%;
	max-width: 1100px;
	margin: 0 auto;
	border-radius: 14px;
	box-shadow: 0 18px 40px -18px rgba(13, 27, 42, 0.32);
}
.gcc-sermon-eyebrow {
	font-size: 13px;
	font-weight: 900;
	letter-spacing: 0.22em;
	color: var(--gcc-yellow);
	margin: 0 0 10px;
}
/* Force white on the hero text — parent Ignition/Thrive theme paints h1
   dark by default and beats our class-only selector. !important + a
   body-class prefix bumps specificity past the parent. */
.gcc-sermon-single .gcc-sermon-title,
body .gcc-sermon-hero h1.gcc-sermon-title {
	font-family: 'Permanent Marker', cursive;
	font-size: clamp(40px, 6vw, 72px);
	line-height: 1.06;
	color: #FFFFFF !important;
	margin: 0 0 14px !important;
	text-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
	text-wrap: balance;
}
.gcc-sermon-single .gcc-sermon-speaker,
body .gcc-sermon-hero .gcc-sermon-speaker {
	font-size: 16px;
	color: #FFFFFF !important;
	opacity: 0.92;
	margin: 0 0 22px;
	letter-spacing: 0.04em;
}
.gcc-sermon-single .gcc-sermon-eyebrow,
body .gcc-sermon-hero .gcc-sermon-eyebrow {
	color: var(--gcc-yellow) !important;
}
.gcc-sermon-meta-row {
	display: flex; gap: 10px;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	margin-bottom: 28px;
	font-size: 13px;
}
.gcc-sermon-meta-label {
	color: var(--gcc-yellow);
	font-weight: 900;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	font-size: 11px;
}
.gcc-sermon-chip {
	background: rgba(255, 255, 255, 0.92);
	color: var(--gcc-navy);
	padding: 5px 14px;
	border-radius: 999px;
	font-weight: 800;
	text-decoration: none;
	font-size: 13px;
	letter-spacing: 0.02em;
}
.gcc-sermon-chip:hover { background: var(--gcc-white); color: var(--gcc-navy); text-decoration: none; }
.gcc-sermon-chip-series { background: rgba(255, 193, 7, 0.2); color: var(--gcc-yellow); }
.gcc-sermon-chip-series:hover { background: rgba(255, 193, 7, 0.32); color: var(--gcc-yellow); }
.gcc-sermon-actions {
	display: flex; gap: 12px; flex-wrap: wrap; justify-content: center;
}
.gcc-sermon-actions .gcc-btn { min-width: 140px; }

/* Video embed */
.gcc-sermon-video { padding: 16px 0 24px; background: var(--gcc-white); }
.gcc-sermon-video-frame {
	position: relative;
	aspect-ratio: 16 / 9;
	max-width: 960px;
	margin: 0 auto;
	border-radius: 14px;
	overflow: hidden;
	box-shadow: 0 16px 40px -16px rgba(13, 27, 42, 0.4);
}
.gcc-sermon-video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* Audio + notes */
.gcc-sermon-section-title {
	font-size: clamp(22px, 3vw, 32px);
	color: var(--gcc-navy);
	margin: 0 0 16px;
	text-align: center;
}
.gcc-sermon-section-lede,
.gcc-sermon-testimonies .gcc-sermon-section-lede {
	max-width: 640px;
	margin: 0 auto 24px !important;
	text-align: center !important;
	color: var(--gcc-navy);
	opacity: 0.8;
	font-style: italic;
	text-wrap: balance;
}
.gcc-sermon-audio { padding: 40px 0; background: var(--gcc-grey); }
.gcc-sermon-audio-player {
	display: block;
	width: 100%;
	max-width: 720px;
	margin: 0 auto;
}
.gcc-sermon-notes-section { padding: 56px 0; background: var(--gcc-white); }
.gcc-sermon-notes {
	max-width: 760px;
	margin: 0 auto;
	color: var(--gcc-navy);
	font-size: 17px;
	line-height: 1.65;
}
.gcc-sermon-notes p { margin: 0 0 16px; }
.gcc-sermon-notes h2, .gcc-sermon-notes h3, .gcc-sermon-notes h4 {
	margin-top: 28px; margin-bottom: 8px; color: var(--gcc-navy);
}
.gcc-sermon-notes-cta { text-align: center; margin-top: 32px; }

/* Testimonies block on sermon page */
.gcc-sermon-testimonies { padding: 56px 0; background: var(--gcc-grey); }

/* Archive grid (sermon cards) */
.gcc-sermon-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 22px;
}
@media (max-width: 820px) { .gcc-sermon-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .gcc-sermon-grid { grid-template-columns: 1fr; } }
.gcc-sermon-card {
	display: flex; flex-direction: column;
	background: var(--gcc-white);
	border-radius: 12px;
	overflow: hidden;
	text-decoration: none;
	color: var(--gcc-navy);
	box-shadow: 0 6px 18px -8px rgba(13, 27, 42, 0.16);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
	border: 1px solid rgba(13, 27, 42, 0.06);
}
.gcc-sermon-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 14px 30px -10px rgba(13, 27, 42, 0.28);
	text-decoration: none; color: var(--gcc-navy);
}
.gcc-sermon-card-img {
	aspect-ratio: 16 / 9;
	background-color: var(--gcc-navy);
	background-size: cover;
	background-position: center;
	display: flex; align-items: center; justify-content: center;
}
.gcc-sermon-card-img-placeholder {
	color: var(--gcc-yellow);
	font-size: 48px;
	opacity: 0.7;
}
.gcc-sermon-card-body { padding: 18px 20px 22px; flex: 1; display: flex; flex-direction: column; }
.gcc-sermon-card-date {
	font-family: 'Permanent Marker', cursive;
	color: var(--gcc-red);
	font-size: 15px;
	margin: 0 0 4px;
}
.gcc-sermon-card-title {
	font-size: 20px;
	line-height: 1.25;
	margin: 0 0 8px;
	color: var(--gcc-navy);
}
.gcc-sermon-card-series {
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--gcc-red);
	margin: 0 0 10px;
}
.gcc-sermon-card-cta {
	margin-top: auto;
	font-size: 13px;
	font-weight: 800;
	color: var(--gcc-red);
}

@media (max-width: 540px) {
	.gcc-sermon-actions .gcc-btn { width: 100%; }
}

/* ====================================================================
 * Ministry page templates (Teens & Young Adults, Adults) — v1.3.37
 * ==================================================================*/
.gcc-ministry-page { background: var(--gcc-white); }

.gcc-ministry-hero {
	position: relative;
	min-height: 420px;
	overflow: hidden;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	background-color: #0D1B2A;
	color: var(--gcc-white);
	width: 100%;
	box-sizing: border-box;
	border-bottom: 4px solid var(--gcc-yellow);
}
.gcc-ministry-hero-overlay {
	position: absolute; inset: 0;
	background: linear-gradient(180deg, rgba(13, 27, 42, 0.7) 0%, rgba(13, 27, 42, 0.55) 50%, rgba(13, 27, 42, 0.82) 100%);
	z-index: 1;
}
.gcc-ministry-hero-inner {
	position: relative; z-index: 2;
	padding: 88px 0 96px;
	text-align: center;
}
.gcc-ministry-eyebrow {
	font-size: 12px;
	font-weight: 900;
	letter-spacing: 0.22em;
	color: var(--gcc-yellow);
	margin: 0 0 12px;
}
.gcc-ministry-page .gcc-ministry-title {
	font-family: 'Permanent Marker', cursive;
	font-size: clamp(40px, 6vw, 76px) !important;
	line-height: 1.04;
	color: #FFFFFF !important;
	margin: 0 0 18px !important;
	text-shadow: 0 4px 14px rgba(0, 0, 0, 0.4);
	text-wrap: balance;
}
.gcc-ministry-page .gcc-ministry-lede,
body .gcc-ministry-hero .gcc-ministry-lede {
	font-size: clamp(16px, 2vw, 22px);
	line-height: 1.5;
	color: #FFFFFF !important;
	max-width: 720px;
	margin: 0 auto 28px !important;
	opacity: 0.96;
	text-wrap: balance;
	text-align: center !important;  /* parent theme paints <p> left-aligned */
	padding: 0 12px;
}
.gcc-ministry-lede strong { color: var(--gcc-yellow); }
.gcc-ministry-actions {
	display: flex; gap: 12px;
	flex-wrap: wrap; justify-content: center;
}

/* Ghost button — for dark/photo backgrounds where btn-navy is invisible.
   Transparent fill, white-outlined, hover fills with white + flips colour. */
.gcc-btn.gcc-btn-ghost,
a.gcc-btn.gcc-btn-ghost {
	background: transparent !important;
	color: #FFFFFF !important;
	border: 2px solid rgba(255, 255, 255, 0.7) !important;
}
.gcc-btn.gcc-btn-ghost:hover,
a.gcc-btn.gcc-btn-ghost:hover,
.gcc-btn.gcc-btn-ghost:focus-visible,
a.gcc-btn.gcc-btn-ghost:focus-visible {
	background: #FFFFFF !important;
	color: var(--gcc-navy) !important;
	border-color: #FFFFFF !important;
}

.gcc-ministry-body {
	background: var(--gcc-white);
	padding: 64px 0 80px;
}
.gcc-ministry-pills {
	display: flex; gap: 8px; flex-wrap: wrap; justify-content: center;
	margin: 0 0 48px;
}
.gcc-ministry-pill {
	background: var(--gcc-grey);
	color: var(--gcc-navy);
	padding: 6px 14px;
	border-radius: 999px;
	font-size: 13px;
	font-weight: 700;
}
.gcc-ministry-section {
	max-width: 760px;
	margin: 0 auto 48px;
	color: var(--gcc-navy);
}
.gcc-ministry-section h2 {
	font-size: clamp(24px, 3vw, 34px);
	color: var(--gcc-navy);
	margin: 0 0 16px;
	text-wrap: balance;
}
.gcc-ministry-section p {
	font-size: 17px;
	line-height: 1.65;
	margin: 0 0 16px;
}
.gcc-ministry-section a { color: var(--gcc-red); font-weight: 700; }
.gcc-ministry-section a:hover { text-decoration: underline; }
.gcc-ministry-list {
	list-style: none;
	padding: 0;
	margin: 16px 0;
}
.gcc-ministry-list li {
	font-size: 17px;
	line-height: 1.55;
	margin: 0 0 12px;
	padding-left: 28px;
	position: relative;
}
.gcc-ministry-list li::before {
	content: "✓";
	position: absolute; left: 0; top: 0;
	color: var(--gcc-red);
	font-weight: 900;
}
.gcc-ministry-quote {
	margin: 24px 0;
	padding: 20px 22px;
	border-left: 4px solid var(--gcc-yellow);
	background: linear-gradient(90deg, #FFF7E6 0%, transparent 100%);
	font-style: italic;
	font-size: 17px;
	line-height: 1.55;
	color: var(--gcc-navy);
}
.gcc-ministry-quote cite {
	display: block;
	margin-top: 10px;
	font-style: normal;
	font-family: 'Permanent Marker', cursive;
	font-size: 16px;
	color: var(--gcc-red);
}

.gcc-ministry-cta {
	background: var(--gcc-grey);
	padding: 32px 24px;
	border-radius: 14px;
	text-align: center;
	max-width: 880px;
}
.gcc-ministry-cta .gcc-ministry-actions { justify-content: center; margin-top: 18px; }

/* Tablet — reduce hero padding so it doesn't dominate */
@media (max-width: 820px) {
	.gcc-ministry-hero { min-height: 360px; }
	.gcc-ministry-hero-inner { padding: 56px 16px 64px; }
	.gcc-ministry-page .gcc-ministry-title {
		font-size: clamp(34px, 8vw, 60px) !important;
	}
	.gcc-ministry-body { padding: 48px 0 64px; }
	.gcc-ministry-section { margin-bottom: 36px; }
	.gcc-ministry-section h2 { font-size: clamp(22px, 4.5vw, 30px); }
}

/* Phone — single-column buttons, even tighter title, smaller pills */
@media (max-width: 540px) {
	.gcc-ministry-hero { min-height: 300px; }
	.gcc-ministry-hero-inner { padding: 44px 14px 52px; }
	.gcc-ministry-eyebrow { font-size: 11px; letter-spacing: 0.18em; margin-bottom: 8px; }
	.gcc-ministry-page .gcc-ministry-title {
		font-size: clamp(30px, 9vw, 44px) !important;
		margin-bottom: 14px !important;
	}
	.gcc-ministry-page .gcc-ministry-lede,
	body .gcc-ministry-hero .gcc-ministry-lede {
		font-size: 15px !important;
		margin-bottom: 22px !important;
	}
	.gcc-ministry-actions { gap: 10px; }
	.gcc-ministry-actions .gcc-btn { width: 100%; justify-content: center; }
	.gcc-ministry-pills { gap: 6px; margin-bottom: 32px; }
	.gcc-ministry-pill { font-size: 12px; padding: 5px 11px; }
	.gcc-ministry-section p,
	.gcc-ministry-list li { font-size: 16px; }
	.gcc-ministry-cta { padding: 24px 18px; }
}

/* ====================================================================
 * Doctrinal page hero + CTA (v1.3.29)
 *
 * Used for /word-of-god/ and easily extendable to /mandate/,
 * /salvation/, /what-we-believe/ etc.
 * ==================================================================*/
/* Bullet-proof against Thrive's narrow content wrapper:
   - position:relative + min-height force layout context for absolute children
   - The 100vw + margin-left trick breaks out of any max-width container
   - background-color fallback keeps text legible if the JPEG fails to load
   - !important wins against parent-theme/page-builder overrides
*/
.gcc-doc-hero {
	position: relative !important;
	min-height: 420px;
	overflow: hidden;
	margin: 0 0 40px;
	color: var(--gcc-white) !important;
	background-color: #0D1B2A !important;   /* fallback if image fails */
	background-size: cover !important;
	background-position: center 70% !important;
	background-repeat: no-repeat !important;
	border-radius: 0;
	isolation: isolate;
	/* v1.3.42: contained block (was 100vw breakout — iOS Safari clipped it) */
	width: 100%;
	box-sizing: border-box;
}
.gcc-doc-hero-overlay {
	position: absolute; inset: 0;
	z-index: 1;
	background: linear-gradient(180deg, rgba(13, 27, 42, 0.55) 0%, rgba(13, 27, 42, 0.25) 40%, rgba(13, 27, 42, 0.7) 100%);
}
.gcc-doc-hero-inner {
	position: relative;
	z-index: 2;
	padding: 90px 0 100px;
	text-align: center;
}
.gcc-doc-hero-eyebrow {
	font-size: 13px;
	font-weight: 900;
	letter-spacing: 0.22em;
	color: var(--gcc-yellow);
	margin: 0 0 12px;
}
.gcc-doc-hero-title {
	font-family: 'Permanent Marker', cursive;
	font-size: clamp(44px, 6.5vw, 80px);
	line-height: 1.02;
	color: var(--gcc-white);
	margin: 0 0 22px;
	text-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
	text-wrap: balance;
}
.gcc-doc-hero-verse {
	font-family: Georgia, 'Times New Roman', serif;
	font-style: italic;
	font-size: clamp(17px, 2vw, 22px);
	line-height: 1.55;
	max-width: 720px;
	margin: 0 auto 10px;
	color: var(--gcc-white);
	opacity: 0.96;
	text-wrap: pretty;
}
.gcc-doc-hero-ref {
	font-family: 'Permanent Marker', cursive;
	font-size: 18px;
	color: var(--gcc-yellow);
	margin: 0;
}
.gcc-doc-hero-ref .kjv {
	font-family: var(--gcc-font-body, system-ui);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.12em;
	opacity: 0.7;
	margin-left: 6px;
}

/* CTA card — used at bottom of doctrinal pages */
.gcc-doc-cta { padding: 56px 0 72px; background: var(--gcc-white); }
.gcc-doc-cta-card {
	background: linear-gradient(135deg, #FFC107 0%, #FFB300 100%);
	border-radius: 18px;
	padding: 36px 36px 36px;
	display: flex;
	gap: 24px;
	align-items: center;
	box-shadow: 0 18px 40px -12px rgba(13, 27, 42, 0.32);
	border: 3px solid var(--gcc-navy);
}
.gcc-doc-cta-icon { flex: 0 0 auto; }
.gcc-doc-cta-icon svg { display: block; }
.gcc-doc-cta-text { flex: 1 1 auto; min-width: 0; }
.gcc-doc-cta-eyebrow {
	font-size: 12px;
	font-weight: 900;
	letter-spacing: 0.18em;
	color: var(--gcc-red);
	margin: 0 0 6px;
}
.gcc-doc-cta-title {
	font-family: 'Permanent Marker', cursive;
	font-size: clamp(28px, 4vw, 42px);
	line-height: 1.05;
	color: var(--gcc-navy);
	margin: 0 0 10px;
}
.gcc-doc-cta-lede {
	color: var(--gcc-navy);
	font-size: 16px;
	line-height: 1.5;
	margin: 0 0 18px;
	max-width: 580px;
	text-wrap: pretty;
}
.gcc-doc-cta-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: var(--gcc-red) !important;
	color: var(--gcc-white) !important;
	font-weight: 900;
	letter-spacing: 0.04em;
}
.gcc-doc-cta-btn:hover { background: #C81920 !important; color: var(--gcc-white) !important; }

@media (max-width: 640px) {
	.gcc-doc-hero-inner { padding: 60px 0 64px; }
	.gcc-doc-cta-card { flex-direction: column; text-align: center; padding: 28px 22px; }
	.gcc-doc-cta-lede { margin-left: auto; margin-right: auto; }
}
