:root {
	--gmm-orange: #f28c28;
	--gmm-orange-dark: #d97313;
	--gmm-green: #16704a;
	--gmm-green-dark: #0f5137;
	--gmm-gold: #d8b15d;
	--gmm-gold-soft: #fff3d8;
	--gmm-cream: #fffaf0;
	--gmm-white: #ffffff;
	--gmm-ink: #1f2a24;
	--gmm-muted: #65736c;
	--gmm-line: #e8e2d7;
	--gmm-shadow: 0 20px 50px rgba(31, 42, 36, 0.12);
	--gmm-radius: 8px;
	--gmm-container: 1180px;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--gmm-white);
	color: var(--gmm-ink);
	font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 16px;
	line-height: 1.65;
}

a {
	color: inherit;
	text-decoration: none;
}

img {
	display: block;
	height: auto;
	max-width: 100%;
}

.container {
	margin: 0 auto;
	max-width: var(--gmm-container);
	padding: 0 20px;
	width: 100%;
}

.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
	word-wrap: normal;
}

.screen-reader-text:focus {
	background: var(--gmm-white);
	border-radius: 4px;
	box-shadow: var(--gmm-shadow);
	clip: auto;
	clip-path: none;
	color: var(--gmm-green);
	height: auto;
	left: 16px;
	padding: 12px 14px;
	top: 16px;
	width: auto;
	z-index: 100000;
}

.site-header {
	background: rgba(255, 255, 255, 0.96);
	border-bottom: 1px solid rgba(232, 226, 215, 0.86);
	position: sticky;
	top: 0;
	z-index: 50;
}

.site-header__inner {
	align-items: center;
	display: flex;
	gap: 18px;
	justify-content: space-between;
	min-height: 78px;
}

.site-branding__link,
.footer-brand {
	align-items: center;
	display: inline-flex;
	gap: 12px;
}

.site-branding__mark {
	align-items: center;
	background: linear-gradient(135deg, var(--gmm-orange), var(--gmm-green));
	border-radius: 8px;
	color: var(--gmm-white);
	display: inline-flex;
	font-weight: 800;
	height: 44px;
	justify-content: center;
	width: 44px;
}

.site-branding__text,
.footer-brand span:last-child {
	display: grid;
	gap: 0;
}

.site-branding__text strong,
.footer-brand strong {
	color: var(--gmm-green-dark);
	font-size: 1.05rem;
	line-height: 1.1;
}

.site-branding__text small,
.footer-brand small {
	color: var(--gmm-muted);
	font-size: 0.78rem;
}

.main-navigation {
	align-items: center;
	display: flex;
}

.primary-menu,
.footer-menu {
	list-style: none;
	margin: 0;
	padding: 0;
}

.primary-menu {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 4px;
	justify-content: flex-end;
}

.primary-menu a {
	border-radius: 8px;
	color: var(--gmm-ink);
	display: inline-flex;
	font-size: 0.92rem;
	font-weight: 700;
	line-height: 1.2;
	padding: 10px 11px;
}

.primary-menu a:hover,
.primary-menu a:focus {
	background: var(--gmm-gold-soft);
	color: var(--gmm-green-dark);
}

.primary-menu li:last-child a {
	background: var(--gmm-green);
	color: var(--gmm-white);
}

.menu-toggle {
	align-items: center;
	background: var(--gmm-green);
	border: 0;
	border-radius: 8px;
	color: var(--gmm-white);
	cursor: pointer;
	display: none;
	height: 44px;
	justify-content: center;
	padding: 0;
	width: 44px;
}

.menu-toggle__bar,
.menu-toggle__bar::before,
.menu-toggle__bar::after {
	background: currentColor;
	border-radius: 999px;
	content: "";
	display: block;
	height: 2px;
	position: relative;
	width: 20px;
}

.menu-toggle__bar::before {
	position: absolute;
	top: -6px;
}

.menu-toggle__bar::after {
	position: absolute;
	top: 6px;
}

.hero {
	background:
		linear-gradient(115deg, rgba(15, 81, 55, 0.94), rgba(22, 112, 74, 0.82)),
		linear-gradient(45deg, rgba(242, 140, 40, 0.24), rgba(216, 177, 93, 0.22)),
		var(--gmm-green-dark);
	color: var(--gmm-white);
	overflow: hidden;
	padding: 86px 0 72px;
}

.hero__grid {
	align-items: center;
	display: grid;
	gap: 42px;
	grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
}

.hero__eyebrow,
.section-eyebrow {
	color: var(--gmm-orange);
	font-size: 0.82rem;
	font-weight: 800;
	letter-spacing: 0;
	margin: 0 0 10px;
	text-transform: uppercase;
}

.hero h1 {
	font-size: clamp(2.7rem, 8vw, 5.4rem);
	line-height: 0.98;
	margin: 0;
}

.hero__lead {
	color: rgba(255, 255, 255, 0.88);
	font-size: 1.18rem;
	margin: 24px 0 0;
	max-width: 680px;
}

.hero__actions,
.final-cta__inner,
.feature-band__grid {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
}

.hero__actions {
	margin-top: 32px;
}

.button,
button.button {
	align-items: center;
	border: 0;
	border-radius: 8px;
	cursor: pointer;
	display: inline-flex;
	font-weight: 800;
	justify-content: center;
	line-height: 1.2;
	min-height: 48px;
	padding: 14px 20px;
	text-align: center;
	transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus {
	transform: translateY(-1px);
}

.button--primary {
	background: var(--gmm-orange);
	box-shadow: 0 12px 26px rgba(242, 140, 40, 0.3);
	color: var(--gmm-white);
}

.button--primary:hover,
.button--primary:focus {
	background: var(--gmm-orange-dark);
}

.button--ghost {
	border: 1px solid rgba(255, 255, 255, 0.42);
	color: var(--gmm-white);
}

.button--light {
	background: var(--gmm-white);
	color: var(--gmm-green-dark);
}

.button--small {
	font-size: 0.92rem;
	min-height: 42px;
	padding: 11px 16px;
}

.button--outline {
	background: var(--gmm-white);
	border: 1px solid var(--gmm-line);
	color: var(--gmm-green-dark);
}

.button--outline:hover,
.button--outline:focus {
	background: var(--gmm-gold-soft);
	border-color: var(--gmm-gold);
}

.hero__panel {
	display: grid;
	gap: 16px;
}

.impact-card,
.campaign-card,
.program-card,
.offering-card,
.report-card,
.testimonial-card,
.donation-panel,
.contact-card,
.contact-form,
.gmm-empty-state {
	background: var(--gmm-white);
	border: 1px solid var(--gmm-line);
	border-radius: var(--gmm-radius);
	box-shadow: var(--gmm-shadow);
}

.impact-card {
	color: var(--gmm-ink);
	padding: 26px;
}

.impact-card span,
.pill {
	background: var(--gmm-gold-soft);
	border-radius: 999px;
	color: var(--gmm-green-dark);
	display: inline-flex;
	font-size: 0.78rem;
	font-weight: 800;
	line-height: 1;
	padding: 8px 10px;
}

.impact-card strong {
	display: block;
	font-size: 1.9rem;
	line-height: 1.1;
	margin-top: 12px;
}

.impact-card p {
	color: var(--gmm-muted);
	margin: 12px 0 0;
}

.hero__stats {
	display: grid;
	gap: 12px;
	grid-template-columns: repeat(3, 1fr);
}

.hero__stats div {
	background: rgba(255, 255, 255, 0.12);
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: var(--gmm-radius);
	padding: 18px;
}

.hero__stats strong {
	display: block;
	font-size: 1.7rem;
	line-height: 1;
}

.hero__stats span {
	color: rgba(255, 255, 255, 0.8);
	display: block;
	font-size: 0.86rem;
	margin-top: 8px;
}

.section {
	padding: 78px 0;
}

.section--soft {
	background: var(--gmm-cream);
}

.section-header {
	margin: 0 auto 34px;
	max-width: 720px;
	text-align: center;
}

.section-header h2,
.split-section h2,
.feature-band h2,
.offering-card h2,
.page-hero h1,
.content-narrow h2 {
	color: var(--gmm-green-dark);
	font-size: clamp(2rem, 5vw, 3.2rem);
	line-height: 1.08;
	margin: 0;
}

.section-header p:last-child,
.split-section p,
.feature-band p,
.offering-card p,
.page-hero p,
.content-narrow p {
	color: var(--gmm-muted);
	margin: 14px 0 0;
}

.campaign-grid,
.program-grid,
.report-grid,
.testimonial-grid,
.offering-grid,
.contact-grid {
	display: grid;
	gap: 22px;
}

.campaign-grid,
.program-grid,
.report-grid,
.testimonial-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.campaign-card {
	overflow: hidden;
}

.campaign-card__media {
	align-items: center;
	background:
		linear-gradient(135deg, rgba(242, 140, 40, 0.9), rgba(22, 112, 74, 0.86)),
		var(--gmm-green);
	color: var(--gmm-white);
	display: flex;
	height: 156px;
	justify-content: center;
	overflow: hidden;
}

a.campaign-card__media:hover,
a.campaign-card__media:focus {
	filter: saturate(1.08);
}

.campaign-card__media img {
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.campaign-card__media span {
	border: 1px solid rgba(255, 255, 255, 0.5);
	border-radius: 8px;
	font-size: 2.4rem;
	font-weight: 900;
	height: 82px;
	line-height: 82px;
	text-align: center;
	width: 82px;
}

.campaign-card__body,
.program-card,
.offering-card,
.report-card,
.testimonial-card,
.donation-panel,
.contact-card,
.contact-form,
.gmm-empty-state {
	padding: 24px;
}

.campaign-card h3,
.program-card h3,
.report-card h3,
.testimonial-card p {
	color: var(--gmm-green-dark);
	font-size: 1.25rem;
	line-height: 1.25;
	margin: 16px 0 10px;
}

.campaign-card p,
.program-card p,
.report-card p,
.gmm-empty-state p {
	color: var(--gmm-muted);
	margin: 0;
}

.progress {
	background: #edf1eb;
	border-radius: 999px;
	height: 10px;
	margin: 20px 0 12px;
	overflow: hidden;
}

.progress span {
	background: linear-gradient(90deg, var(--gmm-orange), var(--gmm-gold));
	display: block;
	height: 100%;
}

.campaign-card__meta {
	display: grid;
	gap: 10px;
	grid-template-columns: 1fr 1fr;
	margin-bottom: 18px;
}

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

.campaign-card__meta span {
	color: var(--gmm-muted);
	font-size: 0.82rem;
}

.campaign-card__meta strong {
	color: var(--gmm-ink);
	display: block;
	font-size: 0.98rem;
}

.campaign-card__badges {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.campaign-status {
	border-radius: 999px;
	display: inline-flex;
	font-size: 0.78rem;
	font-weight: 800;
	line-height: 1;
	padding: 8px 10px;
}

.campaign-status--aktif {
	background: #e7f7ef;
	color: var(--gmm-green-dark);
}

.campaign-status--selesai {
	background: #edf1eb;
	color: var(--gmm-muted);
}

.campaign-status--mendesak {
	background: #fff0e0;
	color: var(--gmm-orange-dark);
}

.campaign-status--ditutup {
	background: #f4e8e8;
	color: #8a2f2f;
}

.campaign-progress__label {
	color: var(--gmm-muted);
	font-size: 0.92rem;
	margin: -4px 0 0;
}

.campaign-progress__label strong {
	color: var(--gmm-green-dark);
}

.program-card__code {
	align-items: center;
	background: var(--gmm-green);
	border-radius: 8px;
	color: var(--gmm-white);
	display: inline-flex;
	font-weight: 900;
	justify-content: center;
	min-height: 40px;
	padding: 8px 12px;
}

.program-card--large h2 {
	color: var(--gmm-green-dark);
	font-size: 1.7rem;
	line-height: 1.15;
	margin: 18px 0 12px;
}

.text-link,
.offering-card a {
	color: var(--gmm-orange-dark);
	display: inline-flex;
	font-weight: 800;
	margin-top: 18px;
}

.split-section__grid {
	align-items: center;
	display: grid;
	gap: 40px;
	grid-template-columns: minmax(0, 1fr) minmax(280px, 0.8fr);
}

.check-list {
	background: var(--gmm-cream);
	border: 1px solid var(--gmm-line);
	border-radius: var(--gmm-radius);
	list-style: none;
	margin: 0;
	padding: 24px;
}

.check-list li {
	color: var(--gmm-green-dark);
	font-weight: 800;
	padding: 12px 0 12px 32px;
	position: relative;
}

.check-list li::before {
	background: var(--gmm-orange);
	border-radius: 50%;
	color: var(--gmm-white);
	content: "\2713";
	font-size: 0.78rem;
	height: 22px;
	left: 0;
	line-height: 22px;
	position: absolute;
	text-align: center;
	top: 13px;
	width: 22px;
}

.feature-band,
.final-cta {
	background: var(--gmm-green-dark);
	color: var(--gmm-white);
}

.feature-band h2,
.feature-band p,
.final-cta h2,
.final-cta p {
	color: var(--gmm-white);
}

.feature-band__grid,
.final-cta__inner {
	justify-content: space-between;
}

.feature-band__grid > div,
.final-cta__inner > div {
	max-width: 760px;
}

.offering-grid,
.contact-grid {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.offering-card {
	background: linear-gradient(180deg, var(--gmm-white), #f9fff8);
}

.offering-card--gold {
	background: linear-gradient(180deg, var(--gmm-gold-soft), var(--gmm-white));
}

.report-card span {
	color: var(--gmm-orange-dark);
	font-weight: 800;
}

.testimonial-card {
	margin: 0;
}

.testimonial-card p {
	margin-top: 0;
}

.testimonial-card cite {
	color: var(--gmm-muted);
	font-style: normal;
	font-weight: 800;
}

.final-cta {
	padding: 64px 0;
}

.page-hero {
	background: linear-gradient(135deg, var(--gmm-cream), #f5fff8);
	border-bottom: 1px solid var(--gmm-line);
	padding: 68px 0;
}

.page-hero__inner {
	max-width: 900px;
}

.content-narrow {
	max-width: 780px;
}

.content-narrow h2 + p {
	margin-bottom: 28px;
}

.donation-panel {
	margin-top: 24px;
}

.donation-panel h2,
.contact-card h2 {
	color: var(--gmm-green-dark);
	margin: 0 0 10px;
}

.contact-form {
	display: grid;
	gap: 10px;
}

.contact-form label {
	color: var(--gmm-green-dark);
	font-weight: 800;
}

.contact-form input,
.contact-form textarea {
	border: 1px solid var(--gmm-line);
	border-radius: 8px;
	font: inherit;
	padding: 13px 14px;
	width: 100%;
}

.contact-form textarea {
	resize: vertical;
}

.footer-contact--light,
.footer-contact--light a {
	color: var(--gmm-muted);
}

.site-footer {
	background: #10251d;
	color: rgba(255, 255, 255, 0.82);
	padding: 58px 0 26px;
}

.site-footer .footer-brand strong {
	color: var(--gmm-white);
}

.site-footer .footer-brand small {
	color: rgba(255, 255, 255, 0.7);
}

.footer-grid {
	display: grid;
	gap: 32px;
	grid-template-columns: 1.2fr 0.8fr 0.8fr 1fr;
}

.footer-about p {
	margin: 18px 0 0;
}

.footer-heading {
	color: var(--gmm-white);
	font-size: 1rem;
	margin: 0 0 14px;
}

.footer-menu,
.footer-contact {
	display: grid;
	gap: 8px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.site-footer .footer-menu a,
.site-footer .footer-contact a {
	color: rgba(255, 255, 255, 0.82);
}

.site-footer .footer-menu a:hover,
.site-footer .footer-contact a:hover {
	color: var(--gmm-gold);
}

.footer-bottom {
	align-items: center;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	display: flex;
	gap: 14px;
	justify-content: space-between;
	margin-top: 38px;
	padding-top: 22px;
}

.footer-bottom p {
	margin: 0;
}

.pagination {
	margin-top: 32px;
}

.pagination .nav-links {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	justify-content: center;
}

.pagination .page-numbers {
	background: var(--gmm-white);
	border: 1px solid var(--gmm-line);
	border-radius: 8px;
	color: var(--gmm-green-dark);
	font-weight: 800;
	min-width: 42px;
	padding: 8px 12px;
	text-align: center;
}

.pagination .page-numbers.current {
	background: var(--gmm-green);
	color: var(--gmm-white);
}

.campaign-archive-grid {
	align-items: stretch;
}

.single-campaign__hero {
	background:
		linear-gradient(135deg, rgba(255, 250, 240, 0.98), rgba(245, 255, 248, 0.98)),
		var(--gmm-cream);
	border-bottom: 1px solid var(--gmm-line);
	padding: 64px 0;
}

.single-campaign__hero-grid,
.single-campaign__content-grid {
	display: grid;
	gap: 36px;
	grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
}

.single-campaign__intro {
	align-self: center;
}

.single-campaign__intro h1 {
	color: var(--gmm-green-dark);
	font-size: clamp(2.25rem, 6vw, 4.4rem);
	line-height: 1;
	margin: 18px 0;
}

.single-campaign__intro p {
	color: var(--gmm-muted);
	font-size: 1.08rem;
	margin: 0 0 26px;
	max-width: 720px;
}

.single-campaign__summary,
.single-campaign__donation-box,
.campaign-update-box,
.campaign-prayer-box {
	background: var(--gmm-white);
	border: 1px solid var(--gmm-line);
	border-radius: var(--gmm-radius);
	box-shadow: var(--gmm-shadow);
	overflow: hidden;
}

.single-campaign__image {
	align-items: center;
	background:
		linear-gradient(135deg, rgba(242, 140, 40, 0.9), rgba(22, 112, 74, 0.86)),
		var(--gmm-green);
	color: var(--gmm-white);
	display: flex;
	justify-content: center;
	min-height: 260px;
	overflow: hidden;
}

.single-campaign__image img {
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.single-campaign__image span {
	border: 1px solid rgba(255, 255, 255, 0.55);
	border-radius: 8px;
	font-size: 3rem;
	font-weight: 900;
	height: 100px;
	line-height: 100px;
	text-align: center;
	width: 100px;
}

.single-campaign__summary-body,
.single-campaign__donation-box,
.campaign-update-box,
.campaign-prayer-box {
	padding: 24px;
}

.single-campaign__amounts {
	display: grid;
	gap: 14px;
	grid-template-columns: repeat(2, 1fr);
	margin: 18px 0;
}

.single-campaign__amounts span,
.single-campaign__donation-box span,
.campaign-facts dt {
	color: var(--gmm-muted);
	display: block;
	font-size: 0.84rem;
	font-weight: 700;
}

.single-campaign__amounts strong,
.single-campaign__donation-box strong,
.single-campaign__donation-box a:not(.button),
.campaign-facts dd {
	color: var(--gmm-green-dark);
	display: block;
	font-size: 1.08rem;
	font-weight: 900;
	margin: 2px 0 0;
}

.campaign-facts {
	border-top: 1px solid var(--gmm-line);
	display: grid;
	gap: 12px;
	margin: 0 0 22px;
	padding-top: 18px;
}

.campaign-facts div {
	align-items: start;
	display: grid;
	gap: 10px;
	grid-template-columns: 1fr auto;
}

.single-campaign__content h2,
.single-campaign__donation-box h2,
.campaign-update-box h2,
.campaign-prayer-box h2 {
	color: var(--gmm-green-dark);
	font-size: 1.55rem;
	line-height: 1.2;
	margin: 0 0 14px;
}

.single-campaign__content .entry-content {
	color: var(--gmm-ink);
}

.single-campaign__content .entry-content p:first-child {
	margin-top: 0;
}

.campaign-update-box,
.campaign-prayer-box {
	margin-top: 24px;
}

.campaign-update-box p,
.campaign-prayer-box p,
.single-campaign__donation-box p {
	color: var(--gmm-muted);
	margin: 0;
}

.single-campaign__donation-box {
	align-self: start;
	position: sticky;
	top: 98px;
}

.single-campaign__donation-box p + p,
.single-campaign__donation-box p + .button {
	margin-top: 18px;
}

.gmm-checkout {
	margin: 0 auto;
	max-width: 980px;
}

.gmm-checkout-card,
.gmm-payment-instruction {
	background: var(--gmm-white);
	border: 1px solid var(--gmm-line);
	border-radius: var(--gmm-radius);
	box-shadow: var(--gmm-shadow);
	padding: 28px;
}

.gmm-checkout-card__header,
.gmm-payment-instruction__header {
	margin-bottom: 22px;
}

.gmm-checkout-card__header h2,
.gmm-payment-instruction__header h2 {
	color: var(--gmm-green-dark);
	font-size: clamp(1.8rem, 4vw, 2.6rem);
	line-height: 1.1;
	margin: 0;
}

.gmm-checkout-card__header p:last-child,
.gmm-payment-instruction__header p:last-child {
	color: var(--gmm-muted);
	margin: 10px 0 0;
}

.gmm-form-grid {
	display: grid;
	gap: 16px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.gmm-field {
	display: grid;
	gap: 8px;
	margin: 0 0 18px;
}

.gmm-field label,
.gmm-field__label {
	color: var(--gmm-green-dark);
	font-weight: 800;
}

.gmm-field input,
.gmm-field select,
.gmm-field textarea {
	background: var(--gmm-white);
	border: 1px solid var(--gmm-line);
	border-radius: 8px;
	color: var(--gmm-ink);
	font: inherit;
	min-height: 48px;
	padding: 12px 14px;
	width: 100%;
}

.gmm-field textarea {
	min-height: 112px;
	resize: vertical;
}

.gmm-field--gateway {
	background: var(--gmm-cream);
	border: 1px solid var(--gmm-line);
	border-radius: 8px;
	min-height: 48px;
	padding: 12px 14px;
}

.gmm-field--gateway strong {
	color: var(--gmm-green-dark);
	display: block;
	font-size: 1.05rem;
	line-height: 1.3;
}

.gmm-field input:focus,
.gmm-field select:focus,
.gmm-field textarea:focus {
	border-color: var(--gmm-orange);
	box-shadow: 0 0 0 3px rgba(242, 140, 40, 0.16);
	outline: 0;
}

.gmm-quick-amounts {
	display: grid;
	gap: 10px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gmm-quick-amounts button {
	background: var(--gmm-cream);
	border: 1px solid var(--gmm-line);
	border-radius: 8px;
	color: var(--gmm-green-dark);
	cursor: pointer;
	font: inherit;
	font-weight: 900;
	min-height: 48px;
	padding: 10px 12px;
}

.gmm-quick-amounts button:hover,
.gmm-quick-amounts button:focus,
.gmm-quick-amounts button.is-active {
	background: var(--gmm-green);
	border-color: var(--gmm-green);
	color: var(--gmm-white);
}

.gmm-payment-methods {
	border: 0;
	margin: 4px 0 22px;
	padding: 0;
}

.gmm-payment-methods legend {
	color: var(--gmm-green-dark);
	font-size: 1rem;
	font-weight: 900;
	margin-bottom: 14px;
	padding: 0;
}

.gmm-payment-method-group {
	margin-bottom: 18px;
}

.gmm-payment-method-group h3 {
	color: var(--gmm-green-dark);
	font-size: 1rem;
	line-height: 1.3;
	margin: 0 0 10px;
}

.gmm-payment-method-grid {
	display: grid;
	gap: 10px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gmm-payment-method-option {
	display: block;
	position: relative;
}

.gmm-payment-method-option input {
	inline-size: 1px;
	inset-block-start: 14px;
	inset-inline-start: 14px;
	opacity: 0;
	position: absolute;
}

.gmm-payment-method-card {
	background: var(--gmm-white);
	border: 1px solid var(--gmm-line);
	border-radius: 8px;
	cursor: pointer;
	display: block;
	min-height: 96px;
	padding: 16px 16px 16px 44px;
	position: relative;
	transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.gmm-payment-method-card::before {
	background: var(--gmm-white);
	border: 2px solid var(--gmm-line);
	border-radius: 50%;
	content: "";
	height: 18px;
	left: 16px;
	position: absolute;
	top: 18px;
	width: 18px;
}

.gmm-payment-method-card strong {
	color: var(--gmm-green-dark);
	display: block;
	font-size: 1rem;
	line-height: 1.25;
	margin-bottom: 6px;
}

.gmm-payment-method-card small {
	color: var(--gmm-muted);
	display: block;
	font-size: 0.86rem;
	line-height: 1.45;
}

.gmm-payment-method-option input:focus + .gmm-payment-method-card,
.gmm-payment-method-option input:checked + .gmm-payment-method-card {
	border-color: var(--gmm-orange);
	box-shadow: 0 12px 28px rgba(242, 140, 40, 0.18);
}

.gmm-payment-method-option input:checked + .gmm-payment-method-card {
	background: linear-gradient(180deg, #ffffff 0%, #fff8ef 100%);
	transform: translateY(-1px);
}

.gmm-payment-method-option input:checked + .gmm-payment-method-card::before {
	background: radial-gradient(circle at center, var(--gmm-green) 0 42%, var(--gmm-white) 45% 100%);
	border-color: var(--gmm-orange);
}

.gmm-checkbox {
	align-items: center;
	color: var(--gmm-green-dark);
	display: flex;
	font-weight: 800;
	gap: 10px;
	margin: 0 0 22px;
}

.gmm-checkbox input {
	accent-color: var(--gmm-green);
	height: 18px;
	width: 18px;
}

.gmm-checkout-alert {
	border-radius: var(--gmm-radius);
	margin-bottom: 18px;
	padding: 16px 18px;
}

.gmm-checkout-alert--error {
	background: #fff1ec;
	border: 1px solid #ffd2c2;
	color: #8a2f2f;
}

.gmm-checkout-alert strong {
	display: block;
	margin-bottom: 8px;
}

.gmm-checkout-alert ul {
	margin: 0;
	padding-left: 20px;
}

.gmm-payment-page,
.gmm-payment-instruction {
	margin: 0 auto;
	max-width: 860px;
}

.gmm-payment-page__card {
	overflow: hidden;
}

.gmm-payment-summary {
	display: grid;
	gap: 12px;
	margin: 0 0 22px;
}

.gmm-payment-summary div {
	align-items: start;
	border-bottom: 1px solid var(--gmm-line);
	display: grid;
	gap: 14px;
	grid-template-columns: minmax(150px, 0.42fr) 1fr;
	padding-bottom: 12px;
}

.gmm-payment-summary dt,
.gmm-payment-note h3 {
	color: var(--gmm-muted);
	font-size: 0.88rem;
	font-weight: 800;
}

.gmm-payment-summary dd {
	color: var(--gmm-green-dark);
	font-weight: 900;
	margin: 0;
}

.gmm-payment-status {
	border-radius: 999px;
	display: inline-flex;
	font-size: 0.84rem;
	font-weight: 900;
	line-height: 1;
	padding: 8px 10px;
}

.gmm-payment-status--menunggu-pembayaran {
	background: #fff3d8;
	color: var(--gmm-orange-dark);
}

.gmm-payment-status--menunggu-konfirmasi {
	background: #e8f2ff;
	color: #1d4f91;
}

.gmm-payment-status--berhasil {
	background: #e7f7ef;
	color: var(--gmm-green-dark);
}

.gmm-payment-status--dibatalkan {
	background: #f4e8e8;
	color: #8a2f2f;
}

.gmm-payment-status--refund {
	background: #f0e8ff;
	color: #5c368f;
}

.gmm-payment-note {
	background: var(--gmm-cream);
	border: 1px solid var(--gmm-line);
	border-radius: 8px;
	margin-bottom: 22px;
	padding: 18px;
}

.gmm-payment-note h3 {
	margin: 0 0 8px;
}

.gmm-payment-note p {
	color: var(--gmm-ink);
	margin: 0;
}

.gmm-payment-note--gateway {
	background: linear-gradient(180deg, #ffffff, #f5fff8);
}

.gmm-whatsapp-button {
	background: #16a34a;
	box-shadow: 0 12px 26px rgba(22, 163, 74, 0.28);
	color: var(--gmm-white);
}

.gmm-whatsapp-button:hover,
.gmm-whatsapp-button:focus {
	background: #15803d;
}

.gmm-payment-gateway-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 22px;
}

.gmm-payment-page__actions {
	border-top: 1px solid var(--gmm-line);
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 22px;
	padding-top: 22px;
}

.gmm-payment-page__notice {
	background: var(--gmm-cream);
	border: 1px solid var(--gmm-line);
	border-radius: 8px;
	color: var(--gmm-green-dark);
	font-weight: 800;
	margin: 18px 0 0;
	padding: 14px 16px;
}

.gmm-midtrans-pay-button:disabled {
	cursor: wait;
	opacity: 0.68;
}

.gmm-payment-gateway-status {
	color: var(--gmm-green-dark);
	font-weight: 800;
	margin: 14px 0 0;
}

.campaign-donor-prayers {
	margin-top: 24px;
}

.campaign-donor-prayers h2 {
	color: var(--gmm-green-dark);
	font-size: 1.55rem;
	line-height: 1.2;
	margin: 0 0 14px;
}

.campaign-donor-prayers__grid {
	display: grid;
	gap: 14px;
}

.campaign-donor-prayer {
	background: var(--gmm-white);
	border: 1px solid var(--gmm-line);
	border-radius: var(--gmm-radius);
	margin: 0;
	padding: 20px;
}

.campaign-donor-prayer p {
	color: var(--gmm-green-dark);
	font-weight: 700;
	margin: 0 0 10px;
}

.campaign-donor-prayer cite {
	color: var(--gmm-muted);
	font-style: normal;
	font-weight: 800;
}

.gmm-donor-auth {
	margin: 0 auto;
	max-width: 920px;
}

.gmm-donor-card {
	background: var(--gmm-white);
	border: 1px solid var(--gmm-line);
	border-radius: var(--gmm-radius);
	box-shadow: var(--gmm-shadow);
	padding: 30px;
}

.gmm-donor-card--compact {
	max-width: 640px;
	margin: 0 auto;
}

.gmm-donor-card__header {
	margin-bottom: 22px;
}

.gmm-donor-card__header h2 {
	color: var(--gmm-green-dark);
	font-size: clamp(1.8rem, 4vw, 2.5rem);
	line-height: 1.1;
	margin: 0;
}

.gmm-donor-card__header p {
	color: var(--gmm-muted);
	margin: 10px 0 0;
}

.gmm-donor-eyebrow {
	color: var(--gmm-orange-dark);
	display: inline-flex;
	font-size: 0.78rem;
	font-weight: 900;
	letter-spacing: 0;
	margin-bottom: 8px;
	text-transform: uppercase;
}

.gmm-donor-grid {
	display: grid;
	gap: 16px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.gmm-donor-field {
	display: grid;
	gap: 8px;
	margin: 0 0 18px;
}

.gmm-donor-field label {
	color: var(--gmm-green-dark);
	font-weight: 800;
}

.gmm-donor-field input,
.gmm-donor-field select,
.gmm-donor-field textarea {
	background: var(--gmm-white);
	border: 1px solid var(--gmm-line);
	border-radius: 8px;
	color: var(--gmm-ink);
	font: inherit;
	min-height: 48px;
	padding: 12px 14px;
	width: 100%;
}

.gmm-donor-field textarea {
	min-height: 112px;
	resize: vertical;
}

.gmm-donor-field input:focus,
.gmm-donor-field select:focus,
.gmm-donor-field textarea:focus {
	border-color: var(--gmm-orange);
	box-shadow: 0 0 0 3px rgba(242, 140, 40, 0.16);
	outline: 0;
}

.gmm-donor-actions {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 8px;
}

.gmm-donor-actions--between {
	justify-content: space-between;
}

.gmm-donor-link,
.gmm-donor-card__switch a {
	color: var(--gmm-green-dark);
	font-weight: 900;
	text-decoration: underline;
	text-decoration-thickness: 2px;
	text-underline-offset: 3px;
}

.gmm-donor-card__switch {
	color: var(--gmm-muted);
	margin: 20px 0 0;
}

.gmm-donor-alert {
	border-radius: var(--gmm-radius);
	margin-bottom: 18px;
	padding: 16px 18px;
}

.gmm-donor-alert--error {
	background: #fff1ec;
	border: 1px solid #ffd2c2;
	color: #8a2f2f;
}

.gmm-donor-alert--success {
	background: #effcf3;
	border: 1px solid #bdebc9;
	color: var(--gmm-green-dark);
}

.gmm-donor-alert strong {
	display: block;
	margin-bottom: 8px;
}

.gmm-donor-alert ul {
	margin: 0;
	padding-left: 20px;
}

.gmm-donor-profile {
	display: grid;
	gap: 12px;
	margin: 0 0 22px;
}

.gmm-donor-profile div {
	align-items: start;
	border-bottom: 1px solid var(--gmm-line);
	display: grid;
	gap: 12px;
	grid-template-columns: minmax(130px, 0.35fr) 1fr;
	padding-bottom: 12px;
}

.gmm-donor-profile span {
	color: var(--gmm-muted);
	font-weight: 800;
}

.gmm-donor-profile strong {
	color: var(--gmm-green-dark);
}

.gmm-donor-portal {
	display: grid;
	gap: 22px;
	grid-template-columns: minmax(220px, 0.26fr) 1fr;
	margin: 0 auto;
	max-width: 1160px;
}

.gmm-donor-account-nav {
	align-self: start;
	background: var(--gmm-white);
	border: 1px solid var(--gmm-line);
	border-radius: var(--gmm-radius);
	box-shadow: var(--gmm-shadow);
	display: grid;
	gap: 8px;
	padding: 12px;
	position: sticky;
	top: 98px;
}

.gmm-donor-account-nav a {
	border-radius: 8px;
	color: var(--gmm-green-dark);
	display: flex;
	font-weight: 900;
	line-height: 1.25;
	padding: 12px 14px;
}

.gmm-donor-account-nav a:hover,
.gmm-donor-account-nav a:focus,
.gmm-donor-account-nav a.is-active {
	background: var(--gmm-gold-soft);
	color: var(--gmm-green-dark);
}

.gmm-donor-account-nav a.is-active {
	box-shadow: inset 4px 0 0 var(--gmm-orange);
}

.gmm-donor-account-nav .gmm-donor-account-nav__logout {
	background: #fff1ec;
	color: #8a2f2f;
	margin-top: 4px;
}

.gmm-donor-account-main {
	min-width: 0;
}

.gmm-donor-panel {
	background: var(--gmm-white);
	border: 1px solid var(--gmm-line);
	border-radius: var(--gmm-radius);
	box-shadow: var(--gmm-shadow);
	padding: 26px;
}

.gmm-donor-dashboard-hero {
	align-items: center;
	background: linear-gradient(135deg, #fff8ef 0%, #f3fff7 100%);
	border: 1px solid var(--gmm-line);
	border-radius: var(--gmm-radius);
	display: flex;
	gap: 18px;
	justify-content: space-between;
	margin-bottom: 20px;
	padding: 22px;
}

.gmm-donor-dashboard-hero--simple {
	margin-bottom: 22px;
}

.gmm-donor-dashboard-hero h2,
.gmm-donor-section-head h2,
.gmm-donor-section-head h3,
.gmm-donor-password-box h3 {
	color: var(--gmm-green-dark);
	line-height: 1.15;
	margin: 0;
}

.gmm-donor-dashboard-hero h2 {
	font-size: clamp(1.7rem, 4vw, 2.45rem);
}

.gmm-donor-dashboard-hero p,
.gmm-donor-section-head p {
	color: var(--gmm-muted);
	margin: 8px 0 0;
}

.gmm-donor-stat-grid {
	display: grid;
	gap: 14px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	margin-bottom: 24px;
}

.gmm-donor-stat-card {
	background: var(--gmm-white);
	border: 1px solid var(--gmm-line);
	border-radius: var(--gmm-radius);
	padding: 18px;
}

.gmm-donor-stat-card span {
	color: var(--gmm-muted);
	display: block;
	font-size: 0.9rem;
	font-weight: 800;
	margin-bottom: 8px;
}

.gmm-donor-stat-card strong {
	color: var(--gmm-green-dark);
	display: block;
	font-size: 1.45rem;
	line-height: 1.15;
}

.gmm-donor-section-head {
	align-items: center;
	display: flex;
	gap: 16px;
	justify-content: space-between;
	margin-bottom: 16px;
}

.gmm-donor-section-head a:not(.button) {
	color: var(--gmm-orange-dark);
	font-weight: 900;
	text-decoration: underline;
	text-decoration-thickness: 2px;
	text-underline-offset: 3px;
}

.gmm-donor-table-wrap {
	overflow-x: auto;
	width: 100%;
}

.gmm-donor-table {
	border-collapse: collapse;
	min-width: 760px;
	width: 100%;
}

.gmm-donor-table th,
.gmm-donor-table td {
	border-bottom: 1px solid var(--gmm-line);
	padding: 13px 12px;
	text-align: left;
	vertical-align: middle;
}

.gmm-donor-table th {
	color: var(--gmm-green-dark);
	font-size: 0.86rem;
	font-weight: 900;
	text-transform: uppercase;
}

.gmm-donor-table td {
	color: var(--gmm-ink);
	font-size: 0.94rem;
}

.gmm-donor-table-link {
	color: var(--gmm-green-dark);
	font-weight: 900;
	text-decoration: underline;
	text-decoration-thickness: 2px;
	text-underline-offset: 3px;
}

.gmm-donor-table-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	min-width: 180px;
}

.gmm-donor-table-actions a {
	background: var(--gmm-cream);
	border: 1px solid var(--gmm-line);
	border-radius: 999px;
	color: var(--gmm-green-dark);
	display: inline-flex;
	font-size: 0.78rem;
	font-weight: 900;
	line-height: 1.2;
	padding: 7px 10px;
}

.gmm-donor-table-actions a:hover,
.gmm-donor-table-actions a:focus {
	background: var(--gmm-green);
	border-color: var(--gmm-green);
	color: var(--gmm-white);
}

.gmm-donor-status {
	border-radius: 999px;
	display: inline-flex;
	font-size: 0.8rem;
	font-weight: 900;
	line-height: 1.2;
	padding: 7px 10px;
	white-space: nowrap;
}

.gmm-donor-status--menunggu-pembayaran {
	background: #fff7e8;
	color: #9a5b10;
}

.gmm-donor-status--menunggu-konfirmasi {
	background: #eef7ff;
	color: #1f5f8f;
}

.gmm-donor-status--berhasil {
	background: #effcf3;
	color: var(--gmm-green-dark);
}

.gmm-donor-status--dibatalkan {
	background: #fff1ec;
	color: #8a2f2f;
}

.gmm-donor-status--refund {
	background: #f4efff;
	color: #57408f;
}

.gmm-donor-empty {
	background: var(--gmm-cream);
	border: 1px solid var(--gmm-line);
	border-radius: var(--gmm-radius);
	padding: 20px;
}

.gmm-donor-empty p {
	color: var(--gmm-muted);
	margin: 0 0 14px;
}

.gmm-donor-profile-form {
	display: grid;
	gap: 0;
}

.gmm-donor-password-box {
	background: var(--gmm-cream);
	border: 1px solid var(--gmm-line);
	border-radius: var(--gmm-radius);
	margin: 4px 0 20px;
	padding: 18px;
}

.gmm-donor-password-box h3 {
	font-size: 1.15rem;
	margin-bottom: 14px;
}

.gmm-donor-history-filter {
	background: var(--gmm-cream);
	border: 1px solid var(--gmm-line);
	border-radius: var(--gmm-radius);
	display: grid;
	gap: 14px;
	grid-template-columns: repeat(4, minmax(0, 1fr)) auto;
	margin-bottom: 22px;
	padding: 16px;
}

.gmm-donor-history-filter .gmm-donor-field {
	margin-bottom: 0;
}

.gmm-donor-history-filter__actions {
	align-items: end;
	display: flex;
	gap: 8px;
}

.gmm-donor-pagination {
	margin-top: 20px;
}

.gmm-donor-pagination ul {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.gmm-donor-pagination a,
.gmm-donor-pagination span {
	border: 1px solid var(--gmm-line);
	border-radius: 8px;
	color: var(--gmm-green-dark);
	display: inline-flex;
	font-weight: 900;
	min-height: 38px;
	min-width: 38px;
	padding: 8px 12px;
}

.gmm-donor-pagination .current {
	background: var(--gmm-green);
	border-color: var(--gmm-green);
	color: var(--gmm-white);
}

.gmm-donor-detail-list {
	display: grid;
	gap: 12px;
	margin: 0 0 22px;
}

.gmm-donor-detail-list div {
	align-items: start;
	border-bottom: 1px solid var(--gmm-line);
	display: grid;
	gap: 14px;
	grid-template-columns: minmax(160px, 0.35fr) 1fr;
	padding-bottom: 12px;
}

.gmm-donor-detail-list dt {
	color: var(--gmm-muted);
	font-weight: 900;
}

.gmm-donor-detail-list dd {
	color: var(--gmm-green-dark);
	font-weight: 900;
	margin: 0;
}

.gmm-donor-detail-actions,
.gmm-donor-account-invite {
	border-top: 1px solid var(--gmm-line);
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	padding-top: 20px;
}

.gmm-donor-account-invite {
	background: linear-gradient(135deg, #fff8ef 0%, #f3fff7 100%);
	border: 1px solid var(--gmm-line);
	border-radius: var(--gmm-radius);
	display: block;
	margin-top: 22px;
	padding: 20px;
}

.gmm-donor-account-invite h3 {
	color: var(--gmm-green-dark);
	line-height: 1.2;
	margin: 0 0 8px;
}

.gmm-donor-account-invite p {
	color: var(--gmm-muted);
	margin: 0 0 16px;
}

@media (max-width: 1080px) {
	.menu-toggle {
		display: inline-flex;
	}

	.main-navigation {
		background: var(--gmm-white);
		border-bottom: 1px solid var(--gmm-line);
		box-shadow: var(--gmm-shadow);
		display: none;
		left: 0;
		padding: 12px 20px 20px;
		position: absolute;
		right: 0;
		top: 78px;
	}

	.main-navigation.is-open {
		display: block;
	}

	.primary-menu {
		align-items: stretch;
		display: grid;
		gap: 4px;
		justify-content: stretch;
	}

	.primary-menu a {
		display: flex;
		justify-content: space-between;
		padding: 12px;
	}

	.hero__grid,
	.split-section__grid,
	.single-campaign__hero-grid,
	.single-campaign__content-grid {
		grid-template-columns: 1fr;
	}

	.campaign-grid,
	.program-grid,
	.report-grid,
	.testimonial-grid,
	.footer-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.single-campaign__donation-box {
		position: static;
	}

	.gmm-donor-portal {
		grid-template-columns: 1fr;
	}

	.gmm-donor-account-nav {
		display: flex;
		overflow-x: auto;
		position: static;
	}

	.gmm-donor-account-nav a {
		flex: 0 0 auto;
		white-space: nowrap;
	}

	.gmm-donor-account-nav a.is-active {
		box-shadow: inset 0 -4px 0 var(--gmm-orange);
	}

	.gmm-donor-history-filter {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.gmm-donor-history-filter__actions {
		align-items: stretch;
	}
}

@media (max-width: 720px) {
	body {
		font-size: 15px;
	}

	.site-header__inner {
		min-height: 70px;
	}

	.main-navigation {
		top: 70px;
	}

	.hero {
		padding: 64px 0 52px;
	}

	.hero h1 {
		font-size: 3.2rem;
	}

	.hero__stats,
	.campaign-grid,
	.program-grid,
	.report-grid,
	.testimonial-grid,
	.offering-grid,
	.contact-grid,
	.footer-grid {
		grid-template-columns: 1fr;
	}

	.campaign-card__meta--three,
	.single-campaign__amounts,
	.campaign-facts div,
	.gmm-form-grid,
	.gmm-donor-grid,
	.gmm-donor-profile div,
	.gmm-donor-detail-list div,
	.gmm-payment-method-grid,
	.gmm-payment-summary div {
		grid-template-columns: 1fr;
	}

	.gmm-donor-stat-grid {
		grid-template-columns: 1fr;
	}

	.gmm-quick-amounts {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.single-campaign__hero {
		padding: 46px 0;
	}

	.single-campaign__image {
		min-height: 210px;
	}

	.section {
		padding: 56px 0;
	}

	.section-header {
		text-align: left;
	}

	.footer-bottom,
	.final-cta__inner,
	.gmm-donor-dashboard-hero,
	.gmm-donor-section-head,
	.gmm-donor-detail-actions,
	.gmm-donor-history-filter__actions,
	.gmm-donor-actions--between,
	.feature-band__grid {
		align-items: flex-start;
		flex-direction: column;
	}

	.gmm-donor-history-filter {
		grid-template-columns: 1fr;
	}

	.gmm-donor-card,
	.gmm-donor-panel {
		padding: 22px;
	}

	.button {
		width: 100%;
	}
}
