/* ===== Growth Through Changes - page styles ===== */

body.gtc-area .entry-title {
	display: none;
}

.gtc-page {
	font-family: inherit;
	line-height: 1.65;
	color: #263238;
}

.gtc-page h1,
.gtc-page h2,
.gtc-page h3 {
	font-family: inherit;
	color: #1b5e20;
	margin: 0 0 0.75em;
	line-height: 1.25;
}

.gtc-page p {
	margin: 0 0 1.1em;
}

.gtc-page img {
	max-width: 100%;
	height: auto;
}

.gtc-hero {
	background: linear-gradient(135deg, #1b5e20 0%, #2e7d32 45%, #558b2f 100%);
	color: #fff;
	padding: 3.5rem 1.5rem;
	margin: -1px -1px 0;
	text-align: center;
}

.gtc-hero-small {
	padding: 2.5rem 1.5rem;
}

.gtc-hero-inner {
	max-width: 900px;
	margin: 0 auto;
}

.gtc-hero h1 {
	color: #ffffff;
	font-size: 2.3rem;
	margin-bottom: 0.5em;
}

.gtc-hero .gtc-lead {
	font-size: 1.25rem;
	font-weight: 600;
	margin: 0 auto 1em;
	max-width: 720px;
	color: #e8f5e9;
}

.gtc-hero .gtc-intro {
	max-width: 760px;
	margin: 0 auto 1.5em;
	color: #f1f8e9;
}

.gtc-eyebrow {
	text-transform: uppercase;
	letter-spacing: 2px;
	font-size: 0.8rem;
	font-weight: 700;
	color: #aed581;
	margin-bottom: 1rem;
}

.gtc-eyebrow-dark {
	color: #558b2f;
}

.gtc-ctas {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	justify-content: center;
	margin: 1.25rem 0 0;
}

.gtc-btn {
	display: inline-block;
	padding: 0.85rem 1.75rem;
	border-radius: 50px;
	font-weight: 700;
	font-size: 1rem;
	text-decoration: none !important;
	transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.gtc-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.gtc-btn-donate {
	background: #c62828;
	color: #ffffff !important;
}

.gtc-btn-donate:hover {
	background: #b71c1c;
}

.gtc-btn-support {
	background: #f9a825;
	color: #212121 !important;
}

.gtc-btn-support:hover {
	background: #f57f17;
}

.gtc-btn-solid {
	background: #2e7d32;
	color: #ffffff !important;
}

.gtc-btn-solid:hover {
	background: #1b5e20;
}

.gtc-btn-outline {
	background: transparent;
	border: 2px solid #2e7d32;
	color: #2e7d32 !important;
}

.gtc-btn-large {
	font-size: 1.2rem;
	padding: 1rem 2.5rem;
}

.gtc-section {
	padding: 3rem 1.5rem;
}

.gtc-section-inner {
	max-width: 1080px;
	margin: 0 auto;
}

.gtc-section-sub {
	font-size: 1.1rem;
	color: #455a64;
}

.gtc-alt {
	background: #f1f8e9;
}

.gtc-grid {
	display: grid;
	gap: 1.25rem;
	margin-top: 1.5rem;
}

.gtc-grid-2 {
	grid-template-columns: repeat(2, 1fr);
}

.gtc-grid-3 {
	grid-template-columns: repeat(3, 1fr);
}

.gtc-grid-4 {
	grid-template-columns: repeat(4, 1fr);
}

.gtc-grid-5 {
	grid-template-columns: repeat(5, 1fr);
}

.gtc-card {
	background: #ffffff;
	border: 1px solid #e0e7e0;
	border-top: 4px solid #2e7d32;
	border-radius: 8px;
	padding: 1.5rem;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.gtc-card h3 {
	margin-top: 0;
	color: #1b5e20;
}

.gtc-card p {
	margin-bottom: 0;
	color: #455a64;
}

.gtc-card-link {
	display: block;
	text-decoration: none !important;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.gtc-card-link:hover {
	transform: translateY(-4px);
	box-shadow: 0 10px 24px rgba(43, 105, 61, 0.2);
}

.gtc-card-link .gtc-card-more {
	display: inline-block;
	margin-top: 0.75rem;
	color: #2e7d32;
	font-weight: 700;
}

.gtc-card-donate {
	border-top-color: #c62828;
}

.gtc-card-donate .gtc-card-more {
	color: #c62828;
}

.gtc-card-coming {
	border-style: dashed;
	border-top-style: solid;
	background: #fafafa;
}

.gtc-split {
	display: grid;
	grid-template-columns: 3fr 2fr;
	gap: 2rem;
	align-items: center;
}

.gtc-split-text h2 {
	margin-top: 0.25em;
}

.gtc-checklist,
.gtc-list {
	padding-left: 1.25rem;
	margin: 0 0 1.25rem;
}

.gtc-checklist li,
.gtc-list li {
	margin-bottom: 0.5rem;
}

.gtc-checklist li {
	list-style: none;
	padding-left: 1.6rem;
	position: relative;
}

.gtc-checklist li::before {
	content: "\2713";
	position: absolute;
	left: 0;
	top: 0;
	color: #2e7d32;
	font-weight: 900;
}

.gtc-visual-box {
	background: #ffffff;
	border: 1px solid #e0e7e0;
	border-radius: 10px;
	padding: 1.25rem;
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
	text-align: center;
}

.gtc-visual-label {
	display: block;
	text-transform: uppercase;
	letter-spacing: 2px;
	font-size: 0.75rem;
	font-weight: 700;
	color: #558b2f;
	margin-bottom: 1rem;
}

.gtc-visual-thumbs {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 0.6rem;
}

.gtc-visual-thumbs img {
	border-radius: 6px;
	object-fit: cover;
	width: 100%;
	aspect-ratio: 1 / 1;
}

.gtc-crop {
	background: #ffffff;
	border: 1px solid #e0e7e0;
	border-radius: 8px;
	overflow: hidden;
	text-align: center;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.gtc-crop img {
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	display: block;
}

.gtc-crop p {
	margin: 0;
	padding: 0.6rem 0.5rem;
	font-weight: 700;
	font-size: 0.9rem;
	color: #1b5e20;
}

.gtc-caption {
	font-size: 0.85rem;
	color: #78909c;
	font-style: italic;
	text-align: center;
	margin-top: 1rem;
}

.gtc-link {
	color: #2e7d32 !important;
	font-weight: 700;
	text-decoration: underline;
}

.gtc-centered {
	text-align: center;
}

.gtc-note {
	color: #546e7a;
	font-size: 0.95rem;
}

.gtc-donate-cta {
	margin: 2rem 0;
}

.gtc-stats {
	margin: 1.5rem 0 0;
}

.gtc-stat {
	background: #ffffff;
	border: 1px solid #e0e7e0;
	border-radius: 8px;
	text-align: center;
	padding: 2rem 1rem;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.gtc-stat-num {
	display: block;
	font-size: 2.4rem;
	font-weight: 900;
	color: #2e7d32;
	line-height: 1;
	margin-bottom: 0.5rem;
}

.gtc-stat-label {
	color: #546e7a;
	font-weight: 600;
	font-size: 0.9rem;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.gtc-wishlist {
	list-style: none;
	margin: 0 0 2rem;
	padding: 0;
	columns: 2;
	column-gap: 2.5rem;
}

.gtc-wishlist li {
	position: relative;
	padding-left: 1.7rem;
	margin-bottom: 0.55rem;
	break-inside: avoid;
}

.gtc-wishlist li::before {
	content: "\2764";
	position: absolute;
	left: 0;
	top: 0;
	color: #c62828;
	font-size: 0.85rem;
}

.gtc-contact-card {
	background: #ffffff;
	border: 1px solid #e0e7e0;
	border-top: 4px solid #2e7d32;
	border-radius: 10px;
	padding: 2.5rem;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
	max-width: 560px;
	margin: 0 auto;
}

.gtc-contact-email {
	margin: 1.5rem 0;
}

/* Responsive */
@media (max-width: 900px) {
	.gtc-split {
		grid-template-columns: 1fr;
	}
	.gtc-grid-4,
	.gtc-grid-5 {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 640px) {
	.gtc-grid-2,
	.gtc-grid-3,
	.gtc-grid-4,
	.gtc-grid-5 {
		grid-template-columns: 1fr;
	}
	.gtc-hero {
		padding: 2.5rem 1rem;
	}
	.gtc-hero h1 {
		font-size: 1.8rem;
	}
	.gtc-wishlist {
		columns: 1;
	}
	.gtc-ctas,
	.gtc-btn {
		width: 100%;
		text-align: center;
	}
}