/**
 * Promoted Charity — Elementor widgets base stylesheet.
 *
 * Registered once (Elementor\Loader::register_assets()) and declared
 * as a style dependency by every widget via Widget_Base::get_style_depends(),
 * so Elementor only actually enqueues it on pages that use at least
 * one Promoted Charity widget — never loaded unconditionally
 * site-wide.
 *
 * Every color/spacing value below reads a --pc-* CSS variable with a
 * fallback, rather than hard-coding values, so a site that already
 * defines its own --pc-primary etc. (per the brand design system) is
 * respected automatically with zero widget changes.
 */

/* ---------------------------------------------------------------- */
/* Editor-only placeholder (never shown on the live frontend)        */
/* ---------------------------------------------------------------- */

.pc-elementor-placeholder {
	padding: 16px;
	border: 1px dashed var(--pc-dark-neutral, #9aa39e);
	border-radius: 6px;
	color: var(--pc-body, #5b655f);
	font-size: 13px;
	font-style: italic;
}

/* ---------------------------------------------------------------- */
/* NGO Name                                                          */
/* ---------------------------------------------------------------- */

.pc-ngo-name {
	margin: 0;
	color: var(--pc-headline, #032d24);
	font-weight: 700;
	line-height: 1.2;
}

/* ---------------------------------------------------------------- */
/* NGO Logo                                                          */
/* ---------------------------------------------------------------- */

.pc-ngo-logo {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 120px;
	height: 120px;
	overflow: hidden;
}

.pc-ngo-logo-link {
	display: inline-flex;
}

.pc-ngo-logo-img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.pc-ngo-logo-fallback {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	background: var(--pc-primary, #032d24);
	color: #fff;
	font-weight: 700;
	font-size: 2.5em;
	line-height: 1;
}

/* ---------------------------------------------------------------- */
/* NGO Verification                                                  */
/* ---------------------------------------------------------------- */

.pc-ngo-verification {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 4px 12px;
	border-radius: 999px;
	background: var(--pc-primary, #032d24);
	color: #fff;
	font-size: 13px;
	font-weight: 600;
	line-height: 1.4;
}

.pc-ngo-verification[data-status="under_review"] {
	background: var(--pc-accent, #b8860b);
}

.pc-ngo-verification[data-status="pending"] {
	background: var(--pc-dark-neutral, #6b756f);
}

.pc-ngo-verification-icon {
	display: inline-flex;
	width: 14px;
	height: 14px;
	flex-shrink: 0;
}

.pc-ngo-verification-icon svg {
	width: 100%;
	height: 100%;
	fill: currentColor;
}

/* ---------------------------------------------------------------- */
/* NGO Location                                                      */
/* ---------------------------------------------------------------- */

.pc-ngo-location {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: var(--pc-body, #5b655f);
	font-size: 14px;
	line-height: 1.4;
}

.pc-ngo-location-icon {
	display: inline-flex;
	width: 16px;
	height: 16px;
	flex-shrink: 0;
	color: var(--pc-secondary, #032d24);
}

.pc-ngo-location-icon svg {
	width: 100%;
	height: 100%;
	fill: currentColor;
}

/* ---------------------------------------------------------------- */
/* NGO Founded Year                                                  */
/* ---------------------------------------------------------------- */

.pc-ngo-founded-year {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: var(--pc-body, #5b655f);
	font-size: 14px;
	line-height: 1.4;
}

.pc-ngo-founded-year-icon {
	display: inline-flex;
	width: 16px;
	height: 16px;
	flex-shrink: 0;
	color: var(--pc-secondary, #032d24);
}

.pc-ngo-founded-year-icon svg {
	width: 100%;
	height: 100%;
	fill: currentColor;
}

/* ---------------------------------------------------------------- */
/* NGO Hero                                                           */
/* ---------------------------------------------------------------- */

.pc-ngo-hero {
	position: relative;
	display: flex;
	overflow: hidden;
	min-height: 360px;
	background-color: var(--pc-primary, #032d24);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.pc-ngo-hero--no-image {
	background-image: none !important;
}

.pc-ngo-hero-overlay {
	position: absolute;
	inset: 0;
	background: rgba(3, 45, 36, 0.55);
	pointer-events: none;
}

.pc-ngo-hero-content {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: flex-end;
	gap: 20px;
	width: 100%;
	padding: 32px;
	flex-wrap: wrap;
}

.pc-ngo-hero-logo-card {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	padding: 10px;
	border-radius: 12px;
	background: #fff;
}

.pc-ngo-hero-logo-card .pc-ngo-logo-img,
.pc-ngo-hero-logo-card .pc-ngo-logo-fallback {
	width: 96px;
	height: 96px;
	display: block;
	object-fit: contain;
}

.pc-ngo-hero-logo-card .pc-ngo-logo-fallback {
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 8px;
	background: var(--pc-primary, #032d24);
	color: #fff;
	font-weight: 700;
	font-size: 2em;
}

.pc-ngo-hero-main {
	flex: 1 1 260px;
	min-width: 0;
	color: #fff;
}

.pc-ngo-hero-main .pc-ngo-verification {
	margin-bottom: 12px;
}

.pc-ngo-hero-name {
	margin: 0 0 8px;
	color: #fff;
	font-size: clamp(1.5em, 4vw, 2.25em);
	font-weight: 700;
	line-height: 1.2;
}

.pc-ngo-hero-tagline {
	margin: 0 0 14px;
	color: rgba(255, 255, 255, 0.9);
	font-size: 1.05em;
	line-height: 1.5;
	max-width: 640px;
}

.pc-ngo-hero-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	color: rgba(255, 255, 255, 0.85);
	font-size: 14px;
}

.pc-ngo-hero-meta-item {
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

.pc-ngo-hero-meta-icon {
	display: inline-flex;
	width: 16px;
	height: 16px;
	flex-shrink: 0;
}

.pc-ngo-hero-meta-icon svg {
	width: 100%;
	height: 100%;
	fill: currentColor;
}

@media (max-width: 767px) {
	.pc-ngo-hero-content {
		align-items: flex-start !important;
	}
}

/* ---------------------------------------------------------------- */
/* NGO CTA                                                            */
/* ---------------------------------------------------------------- */

.pc-ngo-cta-group {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px;
}

.pc-ngo-cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 12px 24px;
	border: 2px solid transparent;
	border-radius: 6px;
	font-weight: 600;
	font-size: 15px;
	line-height: 1.4;
	text-decoration: none;
	transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.pc-ngo-cta--primary {
	background: var(--pc-primary, #032d24);
	color: #fff;
}

.pc-ngo-cta--primary:hover {
	background: var(--pc-secondary, #0a5c4a);
	color: #fff;
}

.pc-ngo-cta--secondary {
	background: transparent;
	color: var(--pc-primary, #032d24);
	border-color: var(--pc-primary, #032d24);
}

.pc-ngo-cta--secondary:hover {
	background: var(--pc-primary, #032d24);
	color: #fff;
}

.pc-ngo-cta--tertiary {
	background: transparent;
	color: var(--pc-primary, #032d24);
	border-color: var(--pc-primary, #032d24);
}

.pc-ngo-cta--tertiary:hover {
	background: var(--pc-primary, #032d24);
	color: #fff;
}

/* ---------------------------------------------------------------- */
/* NGO Contact Bar                                                    */
/* ---------------------------------------------------------------- */

.pc-ngo-contact-bar {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}

.pc-ngo-contact-bar-items {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 20px;
}

.pc-ngo-contact-bar-item {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: var(--pc-body, #5b655f);
	text-decoration: none;
	font-size: 14px;
}

.pc-ngo-contact-bar-item:hover {
	color: var(--pc-primary, #032d24);
}

.pc-ngo-contact-bar-icon {
	display: inline-flex;
	width: 16px;
	height: 16px;
	flex-shrink: 0;
}

.pc-ngo-contact-bar-icon svg {
	width: 100%;
	height: 100%;
	fill: currentColor;
}

.pc-ngo-contact-bar-share {
	display: flex;
	align-items: center;
	gap: 8px;
}

.pc-ngo-contact-bar-share-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	padding: 0;
	border: none;
	border-radius: 50%;
	background: var(--pc-light-neutral, #f7f8f5);
	color: var(--pc-primary, #032d24);
	text-decoration: none;
	cursor: pointer;
	transition: background-color 0.2s ease, color 0.2s ease;
}

.pc-ngo-contact-bar-share-btn svg {
	width: 16px;
	height: 16px;
	fill: currentColor;
}

.pc-ngo-contact-bar-share-btn:hover {
	background: var(--pc-primary, #032d24);
	color: #fff;
}

.pc-ngo-contact-bar-share-btn--copied {
	background: var(--pc-secondary, #0a5c4a);
	color: #fff;
}

/* ---------------------------------------------------------------- */
/* NGO Navigation                                                     */
/* ---------------------------------------------------------------- */

.pc-ngo-navigation-list {
	display: flex;
	flex-wrap: wrap;
	gap: 24px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.pc-ngo-navigation-item a {
	color: var(--pc-body, #5b655f);
	font-weight: 600;
	font-size: 14px;
	text-decoration: none;
}

.pc-ngo-navigation-item a:hover {
	color: var(--pc-primary, #032d24);
}

/* ---------------------------------------------------------------- */
/* NGO About                                                          */
/* ---------------------------------------------------------------- */

.pc-ngo-about-heading {
	margin: 0 0 12px;
	color: var(--pc-headline, #032d24);
	font-size: 1.4em;
	font-weight: 700;
	line-height: 1.3;
}

.pc-ngo-about-content {
	color: var(--pc-body, #5b655f);
	font-size: 1em;
	line-height: 1.7;
}

.pc-ngo-about-content p:last-child {
	margin-bottom: 0;
}

/* ---------------------------------------------------------------- */
/* Mission & Vision                                                   */
/* ---------------------------------------------------------------- */

.pc-ngo-mission-vision {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
}

.pc-ngo-mission-vision--stacked {
	grid-template-columns: 1fr;
}

.pc-ngo-mission-vision-card {
	padding: 24px;
	border-radius: 10px;
	background: var(--pc-light-neutral, #f7f8f5);
}

.pc-ngo-mission-vision-icon {
	display: inline-flex;
	width: 28px;
	height: 28px;
	margin-bottom: 12px;
	color: var(--pc-primary, #032d24);
}

.pc-ngo-mission-vision-icon svg {
	width: 100%;
	height: 100%;
	fill: currentColor;
}

.pc-ngo-mission-vision-heading {
	margin: 0 0 8px;
	color: var(--pc-headline, #032d24);
	font-size: 1.15em;
	font-weight: 700;
}

.pc-ngo-mission-vision-content {
	color: var(--pc-body, #5b655f);
	font-size: 0.95em;
	line-height: 1.6;
}

.pc-ngo-mission-vision-content p:last-child {
	margin-bottom: 0;
}

@media (max-width: 767px) {
	.pc-ngo-mission-vision {
		grid-template-columns: 1fr !important;
	}
}

/* ---------------------------------------------------------------- */
/* Focus Areas                                                        */
/* ---------------------------------------------------------------- */

.pc-ngo-focus-areas-heading {
	margin: 0 0 16px;
	color: var(--pc-headline, #032d24);
	font-size: 1.4em;
	font-weight: 700;
}

.pc-ngo-focus-areas-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}

.pc-ngo-focus-areas-card {
	padding: 20px;
	border-radius: 10px;
	background: var(--pc-light-neutral, #f7f8f5);
}

.pc-ngo-focus-areas-icon {
	display: inline-flex;
	width: 26px;
	height: 26px;
	margin-bottom: 10px;
	color: var(--pc-primary, #032d24);
}

.pc-ngo-focus-areas-icon svg {
	width: 100%;
	height: 100%;
	fill: currentColor;
}

.pc-ngo-focus-areas-title {
	margin: 0 0 6px;
	color: var(--pc-headline, #032d24);
	font-size: 1em;
	font-weight: 700;
}

.pc-ngo-focus-areas-description {
	margin: 0;
	color: var(--pc-body, #5b655f);
	font-size: 0.9em;
	line-height: 1.55;
}

@media (max-width: 991px) {
	.pc-ngo-focus-areas-grid {
		grid-template-columns: repeat(2, 1fr) !important;
	}
}

@media (max-width: 600px) {
	.pc-ngo-focus-areas-grid {
		grid-template-columns: 1fr !important;
	}
}

/* ---------------------------------------------------------------- */
/* Causes (compact list)                                              */
/* ---------------------------------------------------------------- */

.pc-ngo-causes-heading {
	margin: 0 0 12px;
	color: var(--pc-headline, #032d24);
	font-size: 1.1em;
	font-weight: 700;
}

.pc-ngo-causes-list {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.pc-ngo-causes-item {
	display: flex;
	align-items: center;
	gap: 8px;
	color: var(--pc-body, #5b655f);
	font-size: 14px;
}

.pc-ngo-causes-icon {
	display: inline-flex;
	width: 16px;
	height: 16px;
	flex-shrink: 0;
	color: var(--pc-primary, #032d24);
}

.pc-ngo-causes-icon svg {
	width: 100%;
	height: 100%;
	fill: currentColor;
}

/* ---------------------------------------------------------------- */
/* SDGs                                                                */
/* ---------------------------------------------------------------- */

.pc-ngo-sdgs-heading {
	margin: 0 0 12px;
	color: var(--pc-headline, #032d24);
	font-size: 1.1em;
	font-weight: 700;
}

.pc-ngo-sdgs-list {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.pc-ngo-sdg-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 36px;
	height: 36px;
	padding: 0 8px;
	border-radius: 6px;
	background: var(--pc-primary, #032d24);
	color: #fff;
	font-weight: 700;
	font-size: 14px;
	text-decoration: none;
}

/* ---------------------------------------------------------------- */
/* Areas of Operation                                                 */
/* ---------------------------------------------------------------- */

.pc-ngo-areas-heading {
	margin: 0 0 12px;
	color: var(--pc-headline, #032d24);
	font-size: 1.1em;
	font-weight: 700;
}

.pc-ngo-areas-list {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.pc-ngo-areas-item {
	display: flex;
	align-items: center;
	gap: 8px;
	color: var(--pc-body, #5b655f);
	font-size: 14px;
}

.pc-ngo-areas-icon {
	display: inline-flex;
	width: 16px;
	height: 16px;
	flex-shrink: 0;
	color: var(--pc-secondary, #032d24);
}

.pc-ngo-areas-icon svg {
	width: 100%;
	height: 100%;
	fill: currentColor;
}

/* ---------------------------------------------------------------- */
/* Impact Statistics                                                  */
/* ---------------------------------------------------------------- */

.pc-ngo-impact-heading {
	margin: 0 0 16px;
	color: var(--pc-headline, #032d24);
	font-size: 1.4em;
	font-weight: 700;
}

.pc-ngo-impact-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}

.pc-ngo-impact-card {
	padding: 20px;
	border-radius: 10px;
	background: var(--pc-light-neutral, #f7f8f5);
	text-align: center;
}

.pc-ngo-impact-icon {
	display: inline-flex;
	width: 24px;
	height: 24px;
	margin-bottom: 10px;
	color: var(--pc-primary, #032d24);
}

.pc-ngo-impact-icon svg {
	width: 100%;
	height: 100%;
	fill: currentColor;
}

.pc-ngo-impact-value {
	color: var(--pc-headline, #032d24);
	font-size: 1.8em;
	font-weight: 800;
	line-height: 1.2;
}

.pc-ngo-impact-label {
	margin-top: 4px;
	color: var(--pc-body, #5b655f);
	font-size: 0.85em;
}

@media (max-width: 991px) {
	.pc-ngo-impact-grid {
		grid-template-columns: repeat(2, 1fr) !important;
	}
}

@media (max-width: 600px) {
	.pc-ngo-impact-grid {
		grid-template-columns: 1fr !important;
	}
}

/* ---------------------------------------------------------------- */
/* NGO Gallery                                                        */
/* ---------------------------------------------------------------- */

.pc-ngo-gallery-heading {
	margin: 0 0 16px;
	color: var(--pc-headline, #032d24);
	font-size: 1.4em;
	font-weight: 700;
}

.pc-ngo-gallery-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 10px;
}

.pc-ngo-gallery-item {
	display: block;
	position: relative;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	border: none;
	border-radius: 8px;
	padding: 0;
	background: var(--pc-light-neutral, #f7f8f5);
	cursor: pointer;
}

.pc-ngo-gallery-item img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* ---------------------------------------------------------------- */
/* NGO Documents                                                      */
/* ---------------------------------------------------------------- */

.pc-ngo-documents-heading {
	margin: 0 0 12px;
	color: var(--pc-headline, #032d24);
	font-size: 1.1em;
	font-weight: 700;
}

.pc-ngo-documents-list {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.pc-ngo-documents-item {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--pc-body, #5b655f);
	text-decoration: none;
	font-size: 14px;
}

.pc-ngo-documents-item:hover {
	color: var(--pc-primary, #032d24);
}

.pc-ngo-documents-icon {
	display: inline-flex;
	width: 18px;
	height: 18px;
	flex-shrink: 0;
	color: var(--pc-primary, #032d24);
}

.pc-ngo-documents-icon svg {
	width: 100%;
	height: 100%;
	fill: currentColor;
}

/* ---------------------------------------------------------------- */
/* Recent Updates                                                     */
/* ---------------------------------------------------------------- */

.pc-ngo-updates-heading {
	margin: 0 0 16px;
	color: var(--pc-headline, #032d24);
	font-size: 1.4em;
	font-weight: 700;
}

.pc-ngo-updates-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.pc-ngo-updates-card {
	overflow: hidden;
	border-radius: 10px;
	background: var(--pc-light-neutral, #f7f8f5);
}

.pc-ngo-updates-image {
	display: block;
	width: 100%;
	aspect-ratio: 16 / 10;
	object-fit: cover;
}

.pc-ngo-updates-body {
	padding: 16px;
}

.pc-ngo-updates-date {
	margin-bottom: 6px;
	color: var(--pc-body, #5b655f);
	font-size: 0.8em;
}

.pc-ngo-updates-title {
	margin: 0 0 8px;
	font-size: 1.05em;
	font-weight: 700;
	line-height: 1.35;
}

.pc-ngo-updates-title a {
	color: var(--pc-headline, #032d24);
	text-decoration: none;
}

.pc-ngo-updates-title a:hover {
	color: var(--pc-primary, #032d24);
}

.pc-ngo-updates-excerpt {
	margin: 0 0 10px;
	color: var(--pc-body, #5b655f);
	font-size: 0.9em;
	line-height: 1.55;
}

.pc-ngo-updates-read-more {
	color: var(--pc-primary, #032d24);
	font-size: 0.85em;
	font-weight: 600;
	text-decoration: none;
}

.pc-ngo-updates-read-more:hover {
	text-decoration: underline;
}

@media (max-width: 900px) {
	.pc-ngo-updates-grid {
		grid-template-columns: repeat(2, 1fr) !important;
	}
}

@media (max-width: 600px) {
	.pc-ngo-updates-grid {
		grid-template-columns: 1fr !important;
	}
}

/* ---------------------------------------------------------------- */
/* Quick Facts                                                        */
/* ---------------------------------------------------------------- */

.pc-ngo-quick-facts {
	padding: 24px;
	border-radius: 12px;
	background: var(--pc-light-neutral, #f7f8f5);
}

.pc-ngo-quick-facts-heading {
	margin: 0 0 14px;
	color: var(--pc-headline, #032d24);
	font-size: 1.1em;
	font-weight: 700;
}

.pc-ngo-quick-facts-list {
	margin: 0;
}

.pc-ngo-quick-facts-row {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 12px;
	padding: 10px 0;
	border-bottom: 1px solid rgba(3, 45, 36, 0.08);
}

.pc-ngo-quick-facts-row:last-child {
	border-bottom: none;
	padding-bottom: 0;
}

.pc-ngo-quick-facts-row dt {
	margin: 0;
	color: var(--pc-body, #5b655f);
	font-size: 0.85em;
}

.pc-ngo-quick-facts-row dd {
	margin: 0;
	color: var(--pc-headline, #032d24);
	font-size: 0.9em;
	font-weight: 600;
	text-align: right;
}

/* ---------------------------------------------------------------- */
/* Verification Details                                               */
/* ---------------------------------------------------------------- */

.pc-ngo-verification-details {
	padding: 24px;
	border-radius: 12px;
	background: var(--pc-light-neutral, #f7f8f5);
}

.pc-ngo-verification-details-icon {
	display: inline-flex;
	width: 28px;
	height: 28px;
	margin-bottom: 10px;
	color: var(--pc-primary, #032d24);
}

.pc-ngo-verification-details-icon svg {
	width: 100%;
	height: 100%;
	fill: currentColor;
}

.pc-ngo-verification-details-heading {
	margin: 0 0 8px;
	color: var(--pc-headline, #032d24);
	font-size: 1.1em;
	font-weight: 700;
}

.pc-ngo-verification-details-description {
	margin: 0 0 16px;
	color: var(--pc-body, #5b655f);
	font-size: 0.9em;
	line-height: 1.55;
}

.pc-ngo-verification-details-rows {
	margin: 0;
}

.pc-ngo-verification-details-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 10px 0;
	border-bottom: 1px solid rgba(3, 45, 36, 0.08);
}

.pc-ngo-verification-details-row:last-child {
	border-bottom: none;
	padding-bottom: 0;
}

.pc-ngo-verification-details-row dt {
	margin: 0;
	color: var(--pc-body, #5b655f);
	font-size: 0.85em;
}

.pc-ngo-verification-details-row dd {
	margin: 0;
	color: var(--pc-headline, #032d24);
	font-size: 0.9em;
	font-weight: 600;
}

.pc-ngo-verification-details-link {
	display: inline-block;
	margin-top: 14px;
	color: var(--pc-primary, #032d24);
	font-size: 0.85em;
	font-weight: 600;
	text-decoration: none;
}

.pc-ngo-verification-details-link:hover {
	text-decoration: underline;
}

/* ---------------------------------------------------------------- */
/* Support CTA                                                        */
/* ---------------------------------------------------------------- */

.pc-ngo-support-cta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 24px;
	padding: 32px;
	border-radius: 12px;
	background: var(--pc-light-neutral, #f7f8f5);
}

.pc-ngo-support-cta-icon {
	display: inline-flex;
	width: 40px;
	height: 40px;
	flex-shrink: 0;
	color: var(--pc-primary, #032d24);
}

.pc-ngo-support-cta-icon svg {
	width: 100%;
	height: 100%;
	fill: currentColor;
}

.pc-ngo-support-cta-text {
	flex: 1 1 320px;
	min-width: 0;
}

.pc-ngo-support-cta-heading {
	margin: 0 0 6px;
	color: var(--pc-headline, #032d24);
	font-size: 1.3em;
	font-weight: 700;
}

.pc-ngo-support-cta-description {
	margin: 0;
	color: var(--pc-body, #5b655f);
	font-size: 0.95em;
	line-height: 1.5;
}

.pc-ngo-support-cta-buttons {
	flex: 0 0 auto;
}

@media (max-width: 767px) {
	.pc-ngo-support-cta {
		flex-direction: column;
		align-items: flex-start;
	}

	.pc-ngo-support-cta-buttons {
		width: 100%;
	}

	.pc-ngo-support-cta-buttons .pc-ngo-cta {
		flex: 1 1 auto;
		text-align: center;
	}
}
