
.thp-p2p-fundraiser,
.thp-p2p-archive,
.thp-p2p-create-form-wrapper,
.thp-p2p-dashboard-wrapper {
	padding: 80px 0;
}

@media (max-width: 768px) {

	.thp-p2p-fundraiser,
	.thp-p2p-archive,
	.thp-p2p-create-form-wrapper,
	.thp-p2p-dashboard-wrapper {
		padding: 50px 0;
	}
}

.thp-p2p-fundraiser .container,
.thp-p2p-archive .container,
.thp-p2p-create-form-wrapper .container,
.thp-p2p-dashboard-wrapper .container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 30px;
}

@media (max-width: 600px) {

	.thp-p2p-fundraiser .container,
	.thp-p2p-archive .container,
	.thp-p2p-create-form-wrapper .container,
	.thp-p2p-dashboard-wrapper .container {
		padding: 0 16px;
	}
}




.thp-p2p-fundraiser {
	padding: 0 !important;
}


.thp-p2p-fundraiser {
	--sf-blue: #0000AA;
	--sf-blue-d: #000091;
	--sf-aqua: #00BFBA;
	--sf-yellow: #FFCA05;
	--sf-lavender: #EDEDFF;
	--sf-gray: #f5f5f8;
	--sf-border: #e2e2ee;
	--sf-text: #1a1a2e;
	--sf-muted: #5c5c7a;
	--sf-radius: 12px;
}


.sf-hero {
	position: relative;
	min-height: 380px;
	display: flex;
	align-items: flex-end;
}

.sf-hero--photo {
	background: var(--sf-blue-d) var(--sf-hero-img) center/cover no-repeat;
}

.sf-hero--gradient {
	background: linear-gradient(135deg, var(--sf-blue) 0%, #2929cc 100%);
}

.sf-hero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(0, 0, 80, .82) 0%, rgba(0, 0, 60, .35) 60%, transparent 100%);
}

.sf-hero__content {
	position: relative;
	z-index: 2;
	width: 100%;
	max-width: 900px;
	margin: 0 auto;
	padding: 48px 32px 44px;
}

.sf-hero__meta {
	display: flex;
	gap: 8px;
	margin-bottom: 14px;
	flex-wrap: wrap;
}

.sf-badge {
	display: inline-block;
	padding: 4px 12px;
	border-radius: 30px;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .5px;
	font-family: 'Source Sans Pro', sans-serif;
}

.sf-badge--active {
	background: var(--sf-aqua);
	color: #fff;
}

.sf-badge--pending {
	background: var(--sf-yellow);
	color: var(--sf-blue);
}

.sf-badge--closed {
	background: rgba(255, 255, 255, .25);
	color: #fff;
}

.sf-badge--days {
	background: rgba(255, 255, 255, .18);
	color: #fff;
	border: 1px solid rgba(255, 255, 255, .35);
}

.sf-hero__title {
	font-family: 'Unna', Georgia, serif;
	font-size: clamp(28px, 4vw, 46px);
	font-weight: 700;
	color: #fff;
	margin: 0 0 16px;
	line-height: 1.2;
	text-shadow: 0 1px 4px rgba(0, 0, 0, .25);
}

.sf-hero__author {
	display: flex;
	align-items: center;
	gap: 10px;
	color: rgba(255, 255, 255, .88);
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 15px;
}

.sf-hero__author strong {
	color: #fff;
}

.sf-author-avatar {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	overflow: hidden;
	border: 2px solid rgba(255, 255, 255, .5);
	flex-shrink: 0;
	background: var(--sf-aqua);
	display: flex;
	align-items: center;
	justify-content: center;
}

.sf-author-avatar__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.sf-author-avatar__fallback {
	font-size: 16px;
	font-weight: 700;
	color: #fff;
	font-family: 'Unna', serif;
}


.sf-body {
	background: #fff;
}

.sf-container {
	max-width: 1100px;
	margin: 0 auto;
	padding: 0 28px;
}

@media (max-width: 600px) {
	.sf-container {
		padding: 0 16px;
	}
}

.sf-layout {
	display: grid;
	grid-template-columns: 1fr 380px;
	gap: 40px;
	padding: 48px 0 64px;
	align-items: start;
}

@media (max-width: 960px) {
	.sf-layout {
		grid-template-columns: 1fr;
		gap: 32px;
		padding: 32px 0 48px;
	}
}


.sf-owner-bar {
	margin-bottom: 20px;
}

.sf-edit-btn {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 8px 16px;
	background: var(--sf-lavender);
	color: var(--sf-blue);
	border-radius: 6px;
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 14px;
	font-weight: 700;
	text-decoration: none;
	transition: background .15s;
}

.sf-edit-btn:hover {
	background: #dcdcff;
	color: var(--sf-blue);
}

.sf-story {
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 16px;
	line-height: 1.8;
	color: var(--sf-text);
	margin-bottom: 32px;
}

.sf-story p {
	margin: 0 0 1.2em;
}

.sf-story h2,
.sf-story h3 {
	font-family: 'Unna', Georgia, serif;
	color: var(--sf-blue);
	margin: 1.5em 0 .5em;
}

.sf-info-strip {
	display: flex;
	gap: 24px;
	flex-wrap: wrap;
	padding: 16px 20px;
	background: var(--sf-lavender);
	border-radius: var(--sf-radius);
	margin-bottom: 32px;
}

.sf-info-strip__item {
	display: flex;
	align-items: center;
	gap: 8px;
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 14px;
	color: var(--sf-muted);
}

.sf-info-strip__item svg {
	color: var(--sf-blue);
	flex-shrink: 0;
}

.sf-info-strip__item strong {
	color: var(--sf-text);
}

.sf-section-title {
	font-family: 'Unna', Georgia, serif;
	font-size: 20px;
	font-weight: 700;
	color: var(--sf-blue);
	margin: 0 0 16px;
}


.sf-donations {
	margin-top: 8px;
}

.sf-donations--mobile {
	display: none;
}

.sf-donations--desktop {
	display: block;
}

@media (max-width: 960px) {
	.sf-donations--mobile {
		display: block;
	}

	.sf-donations--desktop {
		display: none;
	}
}

.sf-donors-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.sf-donor {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	padding: 12px 0;
	border-bottom: 1px solid var(--sf-border);
	transition: background .15s ease;
	border-radius: 8px;
	margin: 0 -8px;
	padding-left: 8px;
	padding-right: 8px;
}

.sf-donor:hover {
	background: rgba(0, 0, 170, .04);
}

.sf-donor:last-child {
	border-bottom: none;
}

.sf-donor__avatar {
	width: 38px;
	height: 38px;
	border-radius: 50%;
	/* color set per-donor via inline style */
	background: var(--sf-blue);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: 'Unna', serif;
	font-size: 15px;
	font-weight: 700;
	flex-shrink: 0;
	box-shadow: 0 2px 6px rgba(0, 0, 0, .15);
}

.sf-donor__info {
	flex: 1;
	min-width: 0;
}

.sf-donor__name {
	font-family: 'Source Sans Pro', sans-serif;
	font-weight: 700;
	font-size: 14px;
	color: var(--sf-text);
}

.sf-donor__message {
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 13px;
	color: var(--sf-muted);
	margin-top: 2px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.sf-donor__amount {
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 14px;
	font-weight: 700;
	color: var(--sf-aqua);
	white-space: nowrap;
}

.sf-sidebar-sticky {
	position: sticky;
	top: 24px;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.sf-progress-card {
	background: var(--sf-blue);
	border-radius: var(--sf-radius);
	padding: 28px 24px 22px;
	color: #fff;
}

.sf-progress-card__amounts {
	margin-bottom: 16px;
}

.sf-progress-card__raised {
	font-family: 'Unna', Georgia, serif;
	font-size: 34px;
	font-weight: 700;
	color: #fff;
	line-height: 1.1;
}

.sf-progress-card__raised .woocommerce-Price-amount {
	font-size: inherit;
	color: inherit;
}

.sf-progress-card__raised-label {
	display: block;
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 12px;
	color: rgba(255, 255, 255, .65);
	text-transform: uppercase;
	letter-spacing: .5px;
	margin-top: 2px;
}

.sf-progress-card__goal {
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 14px;
	color: rgba(255, 255, 255, .7);
	margin-top: 4px;
}

.sf-progress-card__goal .woocommerce-Price-amount {
	font-size: inherit;
	color: inherit;
}

.sf-progress-track {
	width: 100%;
	height: 8px;
	background: rgba(255, 255, 255, .25);
	border-radius: 99px;
	overflow: hidden;
	margin-bottom: 10px;
}

.sf-progress-fill {
	height: 100%;
	background: var(--sf-yellow);
	border-radius: 99px;
	transition: width .6s ease;
}

.sf-progress-card__meta {
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 13px;
	color: rgba(255, 255, 255, .7);
	display: flex;
	align-items: center;
	gap: 6px;
	flex-wrap: wrap;
}

.sf-progress-card__pct {
	color: #fff;
	font-weight: 700;
}

.sf-progress-card__dot {
	opacity: .4;
}

.sf-progress-card__days {
	color: var(--sf-yellow);
	font-weight: 600;
}

.sf-donate-card {
	background: #fff;
	border-radius: var(--sf-radius);
	border: 1px solid var(--sf-border);
	padding: 24px;
	box-shadow: 0 2px 16px rgba(0, 0, 100, .07);
}

.sf-donate-card__title {
	font-family: 'Unna', Georgia, serif;
	font-size: 22px;
	font-weight: 700;
	color: var(--sf-blue);
	margin: 0 0 20px;
}

.sf-form {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.sf-form__group {
	display: flex;
	flex-direction: column;
}

.sf-form__label {
	font-family: 'Source Sans Pro', sans-serif;
	font-weight: 700;
	font-size: 13px;
	color: var(--sf-text);
	margin-bottom: 7px;
	display: flex;
	align-items: center;
	gap: 6px;
}

.sf-form__optional {
	font-weight: 400;
	color: var(--sf-muted);
	font-size: 12px;
}

.sf-form__input {
	padding: 10px 13px;
	border: 1.5px solid var(--sf-border);
	border-radius: 7px;
	font-size: 15px;
	font-family: 'Source Sans Pro', sans-serif;
	color: var(--sf-text);
	background: #fff;
	transition: border-color .15s, box-shadow .15s;
}

.sf-form__input:focus {
	outline: none;
	border-color: var(--sf-blue);
	box-shadow: 0 0 0 3px rgba(0, 0, 170, .1);
}

.sf-form__textarea {
	resize: vertical;
	min-height: 72px;
}

.sf-form__hint {
	font-size: 12px;
	color: var(--sf-muted);
	margin-top: 4px;
}

.sf-form__checkbox {
	display: flex;
	align-items: flex-start;
	gap: 8px;
}

.sf-form__checkbox input {
	margin-top: 3px;
	flex-shrink: 0;
}

.sf-form__checkbox label {
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 13px;
	color: var(--sf-muted);
	line-height: 1.5;
}

.sf-amount-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 8px;
	margin-bottom: 8px;
}

.sf-amount-btn {
	padding: 10px 6px;
	border: 1.5px solid var(--sf-border);
	border-radius: 7px;
	background: #fff;
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 14px;
	font-weight: 700;
	color: var(--sf-text);
	cursor: pointer;
	transition: all .15s;
	text-align: center;
}

.sf-amount-btn:hover {
	border-color: var(--sf-blue);
	color: var(--sf-blue);
	background: var(--sf-lavender);
}

.sf-amount-btn.is-active {
	border-color: var(--sf-blue);
	background: var(--sf-blue);
	color: #fff;
}

.sf-amount-btn--custom {
	grid-column: span 3;
	border-style: dashed;
	color: var(--sf-muted);
	font-weight: 400;
}

.sf-amount-btn--custom.is-active {
	background: var(--sf-lavender);
	color: var(--sf-blue);
	border-style: solid;
}

.sf-custom-amount {
	margin-top: 4px;
}

.sf-donate-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 100%;
	padding: 15px 20px;
	background: var(--sf-yellow) !important;
	color: var(--sf-blue);
	border: none;
	border-radius: 8px;
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 16px;
	font-weight: 700;
	cursor: pointer;
	transition: all .18s;
	margin-top: 4px;
}

.sf-donate-btn:hover:not(:disabled) {
	background: #e6b600;
	transform: translateY(-1px);
	box-shadow: 0 4px 14px rgba(255, 202, 5, .45);
}

.sf-donate-btn:disabled {
	background: var(--sf-border);
	color: var(--sf-muted);
	cursor: not-allowed;
}

.sf-form-error {
	background: #fff0f0;
	border: 1px solid #e53e3e;
	border-left: 4px solid #e53e3e;
	color: #c53030;
	border-radius: 6px;
	padding: 10px 14px;
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 14px;
	line-height: 1.5;
	margin-bottom: 8px;
}

.sf-anon-toggle {
	background: var(--sf-gray);
	border: 1px solid var(--sf-border);
	border-radius: 8px;
	padding: 12px 14px;
}

.sf-anon-toggle__label {
	display: flex;
	align-items: center;
	gap: 10px;
	cursor: pointer;
	user-select: none;
}


.thp-p2p-form {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.form-group {
	display: flex;
	flex-direction: column;
}

.form-group label {
	font-weight: 600;
	margin-bottom: 6px;
	color: #333;
	font-size: 14px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="number"],
.form-group input[type="date"],
.form-group textarea {
	padding: 10px 12px;
	border: 1.5px solid #ddd;
	border-radius: 6px;
	font-size: 15px;
	font-family: inherit;
	transition: border-color .2s, box-shadow .2s;
}

.form-group input:focus,
.form-group textarea:focus {
	outline: none;
	border-color: #0000AA;
	box-shadow: 0 0 0 3px rgba(0, 0, 170, .1);
}

.form-group textarea {
	resize: vertical;
	min-height: 80px;
}

.form-hint {
	font-size: 12px;
	color: #999;
	margin-top: 4px;
}

.form-group.checkbox {
	flex-direction: row;
	align-items: flex-start;
	gap: 8px;
}

.form-group.checkbox input[type="checkbox"] {
	margin-top: 2px;
}

.form-group.checkbox label {
	margin: 0;
	font-weight: normal;
}

.form-section {
	margin-bottom: 40px;
	padding-bottom: 40px;
	border-bottom: 1px solid #e0e0e0;
}

.form-section h2 {
	font-size: 20px;
	margin-bottom: 20px;
	color: #333;
}

.form-actions {
	display: flex;
	gap: 10px;
	margin-top: 30px;
}

.thp-p2p-create-form-wrapper {
	padding: 40px 0;
	background: #fff;
}

.form-section {
	margin-bottom: 40px;
	padding-bottom: 40px;
	border-bottom: 1px solid #e0e0e0;
}

.form-section h2 {
	font-size: 20px;
	margin-bottom: 20px;
	color: #333;
}

.form-actions {
	display: flex;
	gap: 10px;
	margin-top: 30px;
}




.thp-p2p-archive-wrap {
	--p2p-blue: #0000AA;
	--p2p-blue-d: #000091;
	--p2p-aqua: #00BFBA;
	--p2p-yellow: #FFCA05;
	--p2p-lavender: #EDEDFF;
	--p2p-gray: #f5f5f8;
	--p2p-border: #e2e2ee;
	--p2p-text: #1a1a2e;
	--p2p-muted: #5c5c7a;
	--p2p-radius: 12px;
}

/* ────────────────────────────────────────────────────────────────
   Archive layout primitives (container, hero inner, grid)
   ──────────────────────────────────────────────────────────────── */
.thp-p2p-archive-wrap .p2p-container {
	max-width: 1180px;
	margin: 0 auto;
	padding: 0 28px;
	box-sizing: border-box;
}
@media (max-width: 768px) {
	.thp-p2p-archive-wrap .p2p-container {
		padding: 0 16px;
	}
}

.p2p-hero__inner {
	max-width: 1180px;
	margin: 0 auto;
	padding-bottom: 80px;
	display: grid;
	grid-template-columns: 1fr;
	gap: 36px;
	align-items: center;
}
@media (min-width: 900px) {
	.p2p-hero__inner {
		grid-template-columns: minmax(0, 1.35fr) minmax(260px, 1fr);
		gap: 56px;
	}
}

.p2p-hero__text {
	min-width: 0;
}

.p2p-hero__eyebrow {
	display: inline-block;
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--p2p-yellow);
	margin-bottom: 14px;
}

.p2p-hero__title {
	font-family: 'Unna', Georgia, serif;
	font-size: clamp(32px, 5vw, 54px);
	font-weight: 700;
	line-height: 1.08;
	margin: 0 0 18px;
	color: #fff;
}

.p2p-hero__lead {
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 17px;
	line-height: 1.55;
	color: rgba(255,255,255,.88);
	max-width: 560px;
	margin: 0 0 28px;
}

.p2p-hero__ctas {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

/* Campaign grid: 1 → 2 → 3 columns */
.p2p-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 24px;
}
@media (min-width: 640px) {
	.p2p-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}
@media (min-width: 980px) {
	.p2p-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}


.p2p-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 12px 24px;
	border-radius: 6px;
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 15px;
	font-weight: 700;
	text-decoration: none;
	cursor: pointer;
	transition: all .18s ease;
	white-space: nowrap;
}

.p2p-btn--primary {
	background: var(--p2p-yellow);
	color: var(--p2p-blue);
}

.p2p-btn--primary:hover {
	background: #e6b600;
	color: var(--p2p-blue);
	transform: translateY(-1px);
	box-shadow: 0 4px 14px rgba(255, 202, 5, .45);
}

.p2p-btn--ghost {
	background: transparent;
	color: #fff;
	border: 2px solid rgba(255, 255, 255, .6);
}

.p2p-btn--ghost:hover {
	border-color: #fff;
	background: rgba(255, 255, 255, .1);
	color: #fff;
}

.p2p-btn--yellow {
	background: var(--p2p-yellow);
	color: var(--p2p-blue);
	font-size: 16px;
	padding: 14px 28px;
}

.p2p-btn--yellow:hover {
	background: #e6b600;
	color: var(--p2p-blue);
	transform: translateY(-1px);
	box-shadow: 0 4px 18px rgba(255, 202, 5, .4);
}

.p2p-btn--sm {
	padding: 8px 18px;
	font-size: 13px;
	background: var(--p2p-yellow);
	color: var(--p2p-blue);
	border-radius: 6px;
	font-weight: 700;
}

.p2p-btn--sm:hover {
	background: #e6b600;
	color: var(--p2p-blue);
	transform: translateY(-1px);
	box-shadow: 0 3px 10px rgba(255, 202, 5, .4);
}


.p2p-hero {
	position: relative;
	background: linear-gradient(135deg, var(--p2p-blue-d) 0%, var(--p2p-blue) 55%, #1a00cc 100%);
	color: #fff;
	overflow: hidden;
	padding: 80px 28px 0;
}

@media (max-width: 768px) {
	.p2p-hero {
		padding: 60px 16px 0;
	}
}


.p2p-hero__stats {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 16px;
}

@media (min-width: 900px) {
	.p2p-hero__stats {
		flex-direction: column;
		flex-wrap: nowrap;
		min-width: 220px;
	}
}

.p2p-stat-pill {
	border: 1px solid rgba(255, 255, 255, .18);
	backdrop-filter: blur(8px);
	border-radius: 10px;
	padding: 18px 24px;
	flex: 1;
	min-width: 140px;
}

@media (min-width: 900px) {
	.p2p-stat-pill {
		min-width: auto;
	}
}

.p2p-stat-pill__value {
	display: block;
	font-family: 'Unna', Georgia, serif;
	font-size: 28px;
	font-weight: 700;
	color: var(--p2p-yellow);
	line-height: 1;
	margin-bottom: 6px;
}

.p2p-stat-pill__label {
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 12px;
	color: rgba(255, 255, 255, .7);
	text-transform: uppercase;
	letter-spacing: 1px;
}


.p2p-hero__wave {
	line-height: 0;
	margin-top: -2px;
	margin-left: -28px;
	margin-right: -28px;
	overflow: hidden;
}

.p2p-hero__wave svg {
	display: block;
	width: 100%;
	height: 72px;
}

@media (max-width: 768px) {
	.p2p-hero__wave {
		margin-left: -16px;
		margin-right: -16px;
	}
}

.p2p-campaigns {
	background: #fff;
	padding: 60px 0 80px;
}


.p2p-grid-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 24px;
}

.p2p-grid-heading {
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 15px;
	font-weight: 600;
	color: var(--p2p-muted);
	margin: 0;
}


.p2p-filter-bar {
	margin-bottom: 40px;
}

.p2p-search-form {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

@media (min-width: 640px) {
	.p2p-search-form {
		flex-direction: row;
		align-items: center;
		flex-wrap: wrap;
	}
}

.p2p-search-wrap {
	position: relative;
	flex: 1;
	min-width: 200px;
}

.p2p-search-icon {
	position: absolute;
	left: 12px;
	top: 50%;
	transform: translateY(-50%);
	color: var(--p2p-muted);
	pointer-events: none;
}

.p2p-search-wrap input {
	width: 100%;
	padding: 10px 12px 10px 38px;
	border: 1px solid var(--p2p-border);
	border-radius: 8px;
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 14px;
	color: var(--p2p-text);
	background: var(--p2p-gray);
	transition: border-color .15s, box-shadow .15s;
	box-sizing: border-box;
}

.p2p-search-wrap input:focus {
	outline: none;
	border-color: var(--p2p-blue);
	box-shadow: 0 0 0 3px rgba(0, 0, 170, .1);
	background: #fff;
}

.p2p-cats {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.p2p-cat-pill {
	padding: 6px 14px;
	border-radius: 20px;
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 13px;
	font-weight: 600;
	color: var(--p2p-muted);
	background: var(--p2p-gray);
	border: 1px solid var(--p2p-border);
	text-decoration: none;
	transition: all .15s;
}

.p2p-cat-pill:hover,
.p2p-cat-pill.is-active {
	background: var(--p2p-lavender);
	border-color: var(--p2p-blue);
	color: var(--p2p-blue);
}



.p2p-card {
	position: relative;
	background: #fff;
	border: 1px solid var(--p2p-border);
	border-radius: var(--p2p-radius);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transition: box-shadow .2s, transform .2s;
}

.p2p-card:hover {
	box-shadow: 0 8px 28px rgba(0, 0, 170, .12);
	transform: translateY(-3px);
}


.p2p-card__media {
	position: relative;
	aspect-ratio: 16/9;
	overflow: hidden;
	background: var(--p2p-lavender);
	flex: 0 0 auto;
	inline-size: 100%;
}

.thp-p2p-archive-wrap .p2p-card__media img {
	width: 100%;
	height: 100%;
	max-width: none;
	object-fit: cover;
	display: block;
	transition: transform .35s ease;
}

.p2p-card:hover .p2p-card__media img {
	transform: scale(1.04);
}

.p2p-card__media-placeholder {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, var(--p2p-lavender) 0%, #d6d6f5 100%);
	font-family: 'Unna', Georgia, serif;
	font-size: 64px;
	font-weight: 700;
	color: var(--p2p-blue);
	opacity: .4;
	text-transform: uppercase;
}


.p2p-badge {
	position: absolute;
	top: 12px;
	left: 12px;
	padding: 4px 10px;
	border-radius: 20px;
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .5px;
	z-index: 1;
}

.p2p-badge--urgent {
	background: #c0392b;
	color: #fff;
}

.p2p-badge--goal {
	background: var(--p2p-yellow);
	color: var(--p2p-blue);
}

.p2p-badge--cat {
	background: rgba(0, 0, 0, .55);
	color: #fff;
	backdrop-filter: blur(4px);
}


.p2p-card__body {
	padding: 20px 20px 16px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	flex: 1;
	position: relative;
	z-index: 1;
}


.p2p-card__author {
	display: flex;
	align-items: center;
	gap: 8px;
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 12px;
	color: var(--p2p-muted);
}

.p2p-card__avatar {
	border-radius: 50%;
	width: 26px;
	height: 26px;
	object-fit: cover;
	border: 2px solid var(--p2p-lavender);
	flex-shrink: 0;
}


.p2p-card__title {
	font-family: 'Unna', Georgia, serif;
	font-size: 19px;
	font-weight: 700;
	line-height: 1.3;
	color: var(--p2p-text);
	margin: 0;
}

.p2p-card__title a {
	text-decoration: none;
	color: inherit;
	position: relative;
	z-index: 2;
}

.p2p-card__title a:hover {
	color: var(--p2p-blue);
}


.p2p-card__excerpt {
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 13px;
	line-height: 1.6;
	color: var(--p2p-muted);
	margin: 0;
	flex: 1;
}

.p2p-card__progress {
	margin-top: 2px;
}

.p2p-card__progress-track {
	width: 100%;
	height: 6px;
	background: var(--p2p-lavender);
	border-radius: 3px;
	overflow: hidden;
}

.p2p-card__progress-fill {
	height: 100%;
	border-radius: 3px;
	transition: width .4s ease;
}

.p2p-card__progress-meta {
	display: flex;
	align-items: baseline;
	gap: 4px;
	margin-top: 7px;
	font-family: 'Source Sans Pro', sans-serif;
}

.p2p-card__raised {
	font-size: 16px;
	font-weight: 800;
	color: var(--p2p-blue);
}

.p2p-card__pct {
	font-size: 12px;
	font-weight: 700;
	color: var(--p2p-aqua);
	margin-left: 2px;
}

.p2p-card__goal {
	font-size: 12px;
	color: var(--p2p-muted);
	margin-left: auto;
}


.p2p-card__footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top: 12px;
	border-top: 1px solid var(--p2p-border);
	margin-top: 4px;
}

.p2p-card__days {
	display: flex;
	align-items: center;
	gap: 5px;
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 12px;
	color: var(--p2p-muted);
}


.p2p-pagination {
	margin-top: 56px;
	display: flex;
	justify-content: center;
	gap: 6px;
	flex-wrap: wrap;
}

.p2p-pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 38px;
	height: 38px;
	padding: 0 10px;
	border-radius: 8px;
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	color: var(--p2p-blue);
	background: var(--p2p-lavender);
	border: 1px solid transparent;
	transition: all .15s;
}

.p2p-pagination .page-numbers:hover {
	background: var(--p2p-blue);
	color: #fff;
}

.p2p-pagination .page-numbers.current {
	background: var(--p2p-blue);
	color: #fff;
}

.p2p-pagination .page-numbers.dots {
	background: transparent;
	border-color: transparent;
}


.p2p-empty {
	text-align: center;
	padding: 80px 20px;
}

.p2p-empty__icon {
	font-size: 56px;
	margin-bottom: 16px;
	line-height: 1;
}

.p2p-empty h2 {
	font-family: 'Unna', Georgia, serif;
	font-size: 26px;
	color: var(--p2p-text);
	margin: 0 0 10px;
}

.p2p-empty p {
	color: var(--p2p-muted);
	margin: 0 0 28px;
	font-family: 'Source Sans Pro', sans-serif;
}


.p2p-cta-banner {
	background: var(--p2p-lavender);
	border-top: 1px solid var(--p2p-border);
	padding: 64px 0 100px;
}

.p2p-cta-banner__inner {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 28px;
}

@media (min-width: 768px) {
	.p2p-cta-banner__inner {
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
	}
}

.p2p-cta-banner__text h2 {
	font-family: 'Unna', Georgia, serif;
	font-size: 30px;
	font-weight: 700;
	color: var(--p2p-blue);
	margin: 0 0 8px;
}

.p2p-cta-banner__text p {
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 15px;
	color: var(--p2p-muted);
	margin: 0;
	max-width: 480px;
}


.thp-p2p-login-prompt {
	--lp-blue: #0000AA;
	--lp-blue-d: #000091;
	--lp-aqua: #00BFBA;
	--lp-yellow: #FFCA05;
	--lp-lavender: #EDEDFF;
	--lp-text: #1a1a2e;
	--lp-muted: #5c5c7a;
	--lp-radius: 14px;

	background: linear-gradient(135deg, var(--lp-blue-d) 0%, var(--lp-blue) 60%, #1a00cc 100%);
	border-radius: var(--lp-radius);
	padding: 56px 40px;
	text-align: center;
	color: #fff;
	max-width: 560px;
	margin: 60px auto;
	box-shadow: 0 8px 40px rgba(0, 0, 170, 0.22);
	position: relative;
	overflow: hidden;
}

.thp-p2p-login-prompt::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image:
		radial-gradient(circle at 80% 20%, rgba(0, 191, 186, .18) 0%, transparent 50%),
		radial-gradient(circle at 10% 90%, rgba(255, 202, 5, .12) 0%, transparent 40%);
	pointer-events: none;
}

.thp-p2p-login-prompt__icon {
	position: relative;
	font-size: 42px;
	line-height: 1;
	margin-bottom: 20px;
	display: block;
}

.thp-p2p-login-prompt h2.thp-p2p-login-prompt__title,
.thp-p2p-login-prompt .thp-p2p-login-prompt__title {
	position: relative;
	font-family: 'Unna', Georgia, serif;
	font-size: clamp(22px, 4vw, 30px);
	font-weight: 700;
	color: #fff !important;
	margin: 0 0 12px;
	line-height: 1.25;
}

.thp-p2p-login-prompt p.thp-p2p-login-prompt__text,
.thp-p2p-login-prompt .thp-p2p-login-prompt__text {
	position: relative;
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 16px;
	line-height: 1.65;
	color: rgba(255, 255, 255, 0.92) !important;
	margin: 0 0 32px;
}

.thp-p2p-login-prompt__actions {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 14px;
	flex-wrap: wrap;
}

.thp-p2p-login-prompt .p2p-btn {
	min-width: 160px;
	justify-content: center;
	border-radius: 8px;
	padding: 14px 28px;
	font-size: 16px;
}

.thp-p2p-login-prompt .p2p-btn--primary {
	background: var(--lp-yellow);
	color: var(--lp-blue);
	border: none;
	box-shadow: 0 2px 12px rgba(255, 202, 5, .3);
}

.thp-p2p-login-prompt .p2p-btn--primary:hover {
	background: #e6b600;
	color: var(--lp-blue);
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(255, 202, 5, .5);
}

.thp-p2p-login-prompt .p2p-btn--ghost {
	background: transparent;
	color: #fff;
	border: 2px solid rgba(255, 255, 255, 0.6);
}

.thp-p2p-login-prompt .p2p-btn--ghost:hover {
	border-color: #fff;
	background: rgba(255, 255, 255, 0.15);
	color: #fff;
	transform: translateY(-2px);
}

@media (max-width: 680px) {
	.thp-p2p-login-prompt {
		padding: 40px 24px;
		margin: 40px 16px;
	}

	.thp-p2p-login-prompt .p2p-btn {
		width: 100%;
	}
}

.thp-p2p-auth {
	position: relative;
	padding: 40px 20px;
	background: transparent;
	overflow: visible;
}

.thp-p2p-auth::before,
.thp-p2p-auth::after {
	content: none;
}

.thp-p2p-auth__shell {
	position: relative;
	z-index: 1;
	width: min(100%, 1160px);
	margin: 0 auto;
	display: grid;
	grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.92fr);
	border-radius: 28px;
	overflow: hidden;
	border: 1px solid rgba(0, 0, 170, 0.08);
	box-shadow: 0 30px 70px rgba(15, 30, 78, 0.12);
	background: #fff;
}

.thp-p2p-auth__aside {
	padding: 48px 44px;
	background: #111fb8;
	color: #fff;
}

.thp-p2p-auth__panel {
	padding: 38px 36px 34px;
	background: rgba(255, 255, 255, 0.96);
}

.thp-p2p-auth__header {
	margin-bottom: 24px;
}

.thp-p2p-auth__eyebrow {
	margin: 0 0 10px;
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.82);
}

.thp-p2p-auth__kicker {
	margin: 0 0 14px;
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 14px;
	font-weight: 700;
	color: #FFCA05;
}

.thp-p2p-auth__title {
	margin: 0 0 14px;
	font-family: 'Unna', Georgia, serif;
	font-size: clamp(34px, 4vw, 54px);
	color: #fff !important;
	line-height: 1.1;
}

.thp-p2p-auth__lead {
	margin: 0;
	max-width: 38rem;
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 16px;
	line-height: 1.75;
	color: rgba(255, 255, 255, 0.92) !important;
}

.thp-p2p-auth__badge-list {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 28px 0 34px;
}

.thp-p2p-auth__badge {
	display: inline-flex;
	align-items: center;
	padding: 9px 14px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.22);
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.3;
	color: #fff;
}

.thp-p2p-auth__section+.thp-p2p-auth__section {
	margin-top: 18px;
}

.thp-p2p-auth__section--soft {
	padding: 14px 22px 18px;
	border-radius: 20px;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.14);
}

.thp-p2p-auth__section-title {
	margin: 0 0 12px;
	font-family: 'Unna', Georgia, serif;
	font-size: 26px;
	color: #fff !important;
}

.thp-p2p-auth__highlights {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 12px;
}

.thp-p2p-auth__highlight {
	position: relative;
	padding-left: 22px;
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 15px;
	line-height: 1.65;
	color: rgba(255, 255, 255, 0.92) !important;
}

.thp-p2p-auth__highlight::before {
	content: '';
	position: absolute;
	top: 9px;
	left: 0;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #FFCA05;
	box-shadow: 0 0 0 4px rgba(255, 202, 5, 0.2);
}

.thp-p2p-auth__journey {
	display: grid;
	gap: 16px;
}

.thp-p2p-auth__journey-item {
	padding-left: 18px;
	border-left: 2px solid rgba(255, 255, 255, 0.22);
}

.thp-p2p-auth__journey-item strong {
	display: block;
	margin-bottom: 4px;
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 14px;
	font-weight: 700;
	color: #fff !important;
}

.thp-p2p-auth__journey-item p {
	margin: 0;
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 14px;
	line-height: 1.65;
	color: rgba(255, 255, 255, 0.86) !important;
}

.thp-p2p-auth__support {
	margin: 28px 0 0;
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 14px;
	line-height: 1.65;
	color: rgba(255, 255, 255, 0.82) !important;
}

.thp-p2p-auth__aside .thp-p2p-auth__eyebrow,
.thp-p2p-auth__aside .thp-p2p-auth__kicker,
.thp-p2p-auth__aside .thp-p2p-auth__title,
.thp-p2p-auth__aside .thp-p2p-auth__lead,
.thp-p2p-auth__aside .thp-p2p-auth__section-title,
.thp-p2p-auth__aside .thp-p2p-auth__highlight,
.thp-p2p-auth__aside .thp-p2p-auth__journey-item strong,
.thp-p2p-auth__aside .thp-p2p-auth__journey-item p,
.thp-p2p-auth__aside .thp-p2p-auth__support,
.thp-p2p-auth__aside .thp-p2p-auth__badge {
	text-shadow: none;
}

.thp-p2p-auth__tabs {
	display: inline-grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 8px;
	width: 100%;
	padding: 6px;
	background: #eef2ff;
	border-radius: 18px;
	margin-bottom: 22px;
}

.thp-p2p-auth__tab {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 12px 18px;
	border-radius: 14px;
	text-decoration: none;
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 15px;
	font-weight: 700;
	color: #4b5570;
	transition: background .18s ease, color .18s ease, transform .18s ease;
}

.thp-p2p-auth__tab.is-active {
	background: #0000AA;
	color: #fff;
	box-shadow: 0 10px 24px rgba(0, 0, 170, 0.22);
}

.thp-p2p-auth__panel-copy {
	margin-bottom: 6px;
}

.thp-p2p-auth__panel-title {
	margin: 0 0 8px;
	font-family: 'Unna', Georgia, serif;
	font-size: 30px;
	line-height: 1.1;
	color: #0000AA;
}

.thp-p2p-auth__panel-text {
	margin: 0;
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 15px;
	line-height: 1.7;
	color: #5a6072;
}

.thp-p2p-auth__notice {
	margin-bottom: 18px;
	padding: 15px 16px;
	border-radius: 14px;
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 14px;
	line-height: 1.6;
}

.thp-p2p-auth__notice--success {
	background: #eaf8ee;
	color: #1d5d33;
	border-left: 4px solid #2E7D32;
}

.thp-p2p-auth__notice--error {
	background: #fff1f1;
	color: #ab2323;
	border-left: 4px solid #d13c3c;
}

.thp-p2p-auth__form {
	display: grid;
	gap: 18px;
}

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

.thp-p2p-auth__field {
	display: grid;
	gap: 8px;
}

.thp-p2p-auth__field label {
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 14px;
	font-weight: 700;
	color: #222b44;
}

.thp-p2p-auth__field input {
	width: 100%;
	padding: 14px 15px;
	border: 1px solid #d7dff0;
	border-radius: 14px;
	background: #fbfcff;
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 15px;
	box-sizing: border-box;
	transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

.thp-p2p-auth__field input:focus {
	outline: none;
	border-color: #0000AA;
	box-shadow: 0 0 0 3px rgba(0, 0, 170, 0.09);
	background: #fff;
}

.thp-p2p-auth__remember {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 14px;
	color: #4b5570;
}

.thp-p2p-auth__hint {
	margin: 0;
	padding: 14px 16px;
	border-radius: 14px;
	background: #f6fbff;
	border: 1px solid #d9edf7;
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 14px;
	line-height: 1.6;
	color: #35556e;
}

.thp-p2p-auth__captcha {
	margin-top: 4px;
}

.thp-p2p-auth__submit {
	justify-content: center;
	width: 100%;
	min-height: 56px;
	border-radius: 16px;
	font-size: 16px;
	box-shadow: 0 14px 28px rgba(0, 0, 170, 0.16);
}

.thp-p2p-auth__meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	flex-wrap: wrap;
	margin-top: 22px;
	padding-top: 18px;
	border-top: 1px solid #e8ecf6;
}

.thp-p2p-auth__switch {
	margin: 0;
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 14px;
	color: #5a6072;
}

.thp-p2p-auth__switch a,
.thp-p2p-auth__footer a {
	color: #0000AA;
	font-weight: 700;
	text-decoration: none;
}

.thp-p2p-auth__footer {
	font-size: 14px;
}

.thp-p2p-auth__honeypot {
	position: absolute;
	left: -10000px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

@media (max-width: 960px) {
	.thp-p2p-auth {
		padding: 24px 16px;
	}

	.thp-p2p-auth__shell {
		grid-template-columns: 1fr;
	}

	.thp-p2p-auth__aside,
	.thp-p2p-auth__panel {
		padding: 30px 24px;
	}
}

@media (max-width: 680px) {
	.thp-p2p-auth {
		padding: 16px 12px;
	}

	.thp-p2p-auth__shell {
		border-radius: 22px;
	}

	.thp-p2p-auth__aside,
	.thp-p2p-auth__panel {
		padding: 24px 18px;
	}

	.thp-p2p-auth__grid {
		grid-template-columns: 1fr;
	}

	.thp-p2p-auth__title {
		font-size: 34px;
	}

	.thp-p2p-auth__section-title,
	.thp-p2p-auth__panel-title {
		font-size: 24px;
	}

	.thp-p2p-auth__meta {
		flex-direction: column;
		align-items: flex-start;
	}
}


.thp-p2p-form-error {
	background: #fff0f0;
	border: 1px solid #e53e3e;
	border-left: 4px solid #e53e3e;
	color: #c53030;
	border-radius: 6px;
	padding: 12px 16px;
	margin-bottom: 20px;
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 15px;
	line-height: 1.5;
}


.sf-form__error {
	color: #c53030;
	font-size: 13px;
	margin: 6px 0 0;
	min-height: 0;
	transition: min-height .15s;
}

.sf-form__error:empty {
	display: none;
}

.sf-form__error--amount {
	margin-top: 8px;
}


.sf-impact {
	margin-top: 10px;
	padding: 10px 12px;
	background: #f0f9f1;
	border-left: 3px solid #2E7D32;
	border-radius: 4px;
	font-size: 14px;
	color: #1b4d1f;
	opacity: 0;
	max-height: 0;
	overflow: hidden;
	transition: opacity .2s, max-height .25s;
}

.sf-impact.is-visible {
	opacity: 1;
	max-height: 120px;
}


.sf-amount-input-wrap {
	position: relative;
	display: flex;
	align-items: center;
}

.sf-form__input--amount {
	padding-right: 40px !important;
	font-variant-numeric: tabular-nums;
}

.sf-amount-suffix {
	position: absolute;
	right: 12px;
	color: var(--sf-muted, #777);
	font-weight: 600;
	pointer-events: none;
}

.sf-form__label--sub {
	font-size: 13px;
	font-weight: 500;
	color: var(--sf-muted, #666);
	margin-top: 12px;
}


.sf-trust {
	margin-top: 14px;
	padding-top: 14px;
	border-top: 1px solid rgba(0, 0, 0, .06);
}

.sf-trust__row {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	color: #555;
}

.sf-trust__row svg {
	flex-shrink: 0;
	color: #2E7D32;
}

.sf-trust__disclosure {
	margin: 10px 0 0;
	font-size: 12px;
	line-height: 1.55;
	color: #777;
}


.cf-steps {
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 8px;
	margin: 0 0 28px;
	padding: 22px 32px 18px;
	max-width: 640px;
	list-style: none;
	background: #fff;
	border: 1px solid #e4e4ee;
	border-radius: 14px;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
	counter-reset: cf-step;
}

/* Single connector line behind all circles — drawn on the OL itself */
.cf-steps::before {
	content: '';
	position: absolute;
	top: calc(22px + 16px); /* top padding + half of 32px circle */
	left: calc(32px + 16px); /* left padding + half of first circle */
	right: calc(32px + 16px); /* right padding + half of last circle */
	height: 2px;
	background: #e4e4ee;
	z-index: 0;
	transform: translateY(-1px);
}

.cf-steps__item {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	font-size: 12px;
	color: #999;
	text-align: center;
	position: relative;
	z-index: 1;
}

.cf-steps__item::before {
	counter-increment: cf-step;
	content: counter(cf-step);
	display: flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: #e6e6e6;
	color: #666;
	font-weight: 700;
	font-size: 14px;
	box-shadow: 0 0 0 4px #fff; /* punches the connector line cleanly around each circle */
	transition: background .18s, color .18s, box-shadow .18s;
}

.cf-steps__item.is-active {
	color: var(--sf-blue, #0000AA);
	font-weight: 600;
}

.cf-steps__item.is-active::before {
	background: var(--sf-blue, #0000AA);
	color: #fff;
}

.cf-steps__item.is-complete::before {
	background: #2E7D32;
	color: #fff;
	content: '\2713';
}

@media (max-width: 600px) {
	.cf-steps {
		padding: 16px 18px 14px;
	}
	.cf-steps::before {
		top: calc(16px + 16px);
		left: calc(18px + 16px);
		right: calc(18px + 16px);
	}
}


.cf-counter {
	font-size: 12px;
	color: #888;
	text-align: right;
	margin-top: 4px;
}

.cf-counter.is-near {
	color: #c27400;
}

.cf-counter.is-over {
	color: #c53030;
}


.cf-duration-chips {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
	margin-top: 8px;
}

.cf-duration-chip {
	padding: 6px 14px;
	border: 1px solid var(--sf-border, #d6d6d6);
	border-radius: 100px;
	background: #fff;
	font-size: 13px;
	color: #333;
	cursor: pointer;
	transition: all .15s;
}

.cf-duration-chip:hover {
	border-color: var(--sf-blue, #0000AA);
}

.cf-duration-chip.is-active {
	background: var(--sf-blue, #0000AA);
	color: #fff;
	border-color: var(--sf-blue, #0000AA);
}


.dash-share {
	background: #fff;
	border: 1px solid var(--sf-border, #e6e6e6);
	border-radius: 10px;
	padding: 20px;
	margin-bottom: 24px;
}

.dash-share__title {
	margin: 0 0 6px;
	font-size: 17px;
	font-weight: 700;
}

.dash-share__subtitle {
	margin: 0 0 16px;
	font-size: 14px;
	color: #666;
}

.dash-share__btns {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
	margin-bottom: 16px;
}

.dash-share__btn {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 8px 14px;
	border: 1px solid var(--sf-border, #d6d6d6);
	border-radius: 6px;
	background: #fff;
	font-size: 13px;
	color: #333;
	text-decoration: none;
	cursor: pointer;
	transition: all .15s;
}

.dash-share__btn:hover {
	border-color: var(--sf-blue, #0000AA);
	color: var(--sf-blue, #0000AA);
}

.dash-share__btn--fb:hover {
	background: #1877F2;
	color: #fff !important;
	border-color: #1877F2;
}

.dash-share__btn--x:hover {
	background: #111;
	color: #fff !important;
	border-color: #111;
}

.dash-share__btn--li:hover {
	background: #0A66C2;
	color: #fff !important;
	border-color: #0A66C2;
}

.dash-share__btn--wa:hover {
	background: #25D366;
	color: #fff !important;
	border-color: #25D366;
}

.dash-share__btn--mail:hover {
	background: #555;
	color: #fff !important;
	border-color: #555;
}

.dash-share__btn--copy:hover {
	background: var(--sf-blue, #0000AA);
	color: #fff !important;
	border-color: var(--sf-blue, #0000AA);
}

.dash-share__copy-field {
	display: flex;
	gap: 0;
	margin-bottom: 16px;
}

.dash-share__copy-field input {
	flex: 1;
	padding: 8px 12px;
	border: 1px solid var(--sf-border, #d6d6d6);
	border-right: none;
	border-radius: 6px 0 0 6px;
	font-size: 13px;
	background: #f9f9f9;
}

.dash-share__copy-field button {
	padding: 8px 14px;
	background: var(--sf-blue, #0000AA);
	color: #fff;
	border: 1px solid var(--sf-blue, #0000AA);
	border-radius: 0 6px 6px 0;
	cursor: pointer;
	font-size: 13px;
	font-weight: 600;
}

.dash-share__copy-field button.is-copied {
	background: #2E7D32;
	border-color: #2E7D32;
}

.dash-share__qr {
	text-align: center;
	padding: 16px;
	background: #f9f9f9;
	border-radius: 8px;
}

.dash-share__qr img {
	display: block;
	margin: 0 auto 8px;
	max-width: 160px;
	height: auto;
	background: #fff;
	padding: 8px;
	border-radius: 6px;
}

.dash-share__qr-hint {
	margin: 0;
	font-size: 12px;
	color: #666;
}


.thp-ty {
	max-width: 640px;
	margin: 60px auto;
	padding: 40px 24px;
	text-align: center;
}

.thp-ty__check {
	width: 64px;
	height: 64px;
	margin: 0 auto 20px;
	background: #2E7D32;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
}

.thp-ty__title {
	font-size: 28px;
	font-weight: 700;
	margin: 0 0 12px;
}

.thp-ty__subtitle {
	font-size: 17px;
	color: #555;
	margin: 0 0 28px;
	line-height: 1.55;
}

.thp-ty__cta-block {
	background: #f9f9f9;
	border-radius: 12px;
	padding: 24px;
	margin: 24px 0;
}

.thp-ty__cta-title {
	font-size: 16px;
	font-weight: 700;
	margin: 0 0 6px;
}

.thp-ty__cta-sub {
	font-size: 14px;
	color: #666;
	margin: 0 0 16px;
}

.thp-ty__hero {
	text-align: center;
	padding: 32px 24px 24px;
}

.thp-ty__icon {
	font-size: 48px;
	line-height: 1;
	margin-bottom: 16px;
}

.thp-ty__amount {
	font-size: 17px;
	color: #333;
	margin: 0;
}

.thp-ty__progress {
	background: #fff;
	border: 1px solid #eaeaea;
	border-radius: 10px;
	padding: 18px 22px;
	margin: 24px auto;
	max-width: 640px;
}

.thp-ty__bar {
	height: 10px;
	background: #f0f0f0;
	border-radius: 999px;
	overflow: hidden;
	margin-bottom: 12px;
}

.thp-ty__fill {
	height: 100%;
	background: linear-gradient(90deg, #2E7D32, #3FB03F);
	border-radius: 999px;
	transition: width 0.6s ease-out;
}

.thp-ty__progress-meta {
	display: flex;
	justify-content: space-between;
	font-size: 14px;
	color: #555;
	flex-wrap: wrap;
	gap: 8px;
}

.thp-ty__share {
	background: #f9f9f9;
	border-radius: 12px;
	padding: 24px;
	margin: 24px auto;
	max-width: 640px;
	text-align: center;
}

.thp-ty__share-title {
	font-size: 17px;
	font-weight: 700;
	margin: 0 0 6px;
}

.thp-ty__share-text {
	font-size: 14px;
	color: #666;
	margin: 0 0 18px;
}

.thp-ty__share-buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: center;
}

.thp-ty__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 10px 18px;
	border-radius: 8px;
	text-decoration: none;
	font-size: 14px;
	font-weight: 600;
	color: #fff;
	background: #444;
	transition: transform 0.15s, opacity 0.15s;
}

.thp-ty__btn:hover {
	transform: translateY(-1px);
	opacity: 0.92;
	color: #fff;
}

.thp-ty__btn--fb { background: #1877f2; }
.thp-ty__btn--x { background: #000; }
.thp-ty__btn--li { background: #0a66c2; }
.thp-ty__btn--wa { background: #25d366; }
.thp-ty__btn--mail { background: #555; }

.thp-ty__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	justify-content: center;
	margin: 28px auto 18px;
	max-width: 640px;
}

.thp-ty__receipt {
	text-align: center;
	font-size: 13px;
	color: #888;
	margin: 12px 0 24px;
}


.arch-sort {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-left: auto;
}

.p2p-search-form .arch-sort {
	margin-left: auto;
}

@media (max-width: 639px) {
	.arch-sort {
		margin-left: 0;
		width: 100%;
		justify-content: flex-start;
	}
}

.arch-sort__label {
	font-size: 14px;
	color: #555;
	font-weight: 500;
}

.arch-sort__select {
	padding: 8px 12px;
	border: 1px solid var(--sf-border, #d6d6d6);
	border-radius: 6px;
	font-size: 14px;
	background: #fff;
}


.form-error {
	color: #c53030;
	font-size: 13px;
	margin: 6px 0 0;
}

.form-error:empty {
	display: none;
}

.form-notice {
	background: #eef4ff;
	border-left: 4px solid #0000AA;
	padding: 16px 20px;
	border-radius: 6px;
	margin: 24px 0;
	font-size: 14px;
	color: #23395d;
}

.form-notice strong {
	display: block;
	margin-bottom: 4px;
	font-size: 15px;
	color: #0000AA;
}

.form-notice p {
	margin: 0;
	line-height: 1.5;
}


.arch-ending-soon {
	background: linear-gradient(135deg, #fff8e6 0%, #fff3c4 100%);
	border-left: 4px solid #f5a623;
	padding: 20px 24px;
	border-radius: 10px;
	margin-bottom: 32px;
}

.arch-ending-soon__title {
	font-size: 18px;
	font-weight: 700;
	margin: 0 0 4px;
	color: #7a4900;
}

.arch-ending-soon__sub {
	font-size: 14px;
	color: #7a4900;
	margin: 0 0 16px;
}

.arch-sort select {
	padding: 8px 12px;
	border: 1px solid var(--sf-border, #d6d6d6);
	border-radius: 6px;
	font-size: 14px;
	background: #fff;
	cursor: pointer;
}

.arch-ending-soon__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	flex-wrap: wrap;
	margin-bottom: 16px;
}

.arch-ending-soon__more {
	font-size: 14px;
	font-weight: 600;
	color: #7a4900;
	text-decoration: none;
}

.arch-ending-soon__more:hover {
	text-decoration: underline;
}

.arch-ending-soon__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 16px;
}

.arch-ending-soon__card {
	display: flex;
	flex-direction: column;
	background: #fff;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 1px 4px rgba(0,0,0,0.06);
	text-decoration: none;
	color: inherit;
	transition: transform 0.2s, box-shadow 0.2s;
}

.arch-ending-soon__card:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.arch-ending-soon__media {
	position: relative;
	aspect-ratio: 16/9;
	background: #eee;
	overflow: hidden;
}

.arch-ending-soon__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.arch-ending-soon__badge {
	position: absolute;
	top: 8px;
	left: 8px;
	background: #f5a623;
	color: #fff;
	font-size: 12px;
	font-weight: 700;
	padding: 4px 10px;
	border-radius: 20px;
}

.arch-ending-soon__body {
	padding: 12px 14px 14px;
}

.arch-ending-soon__name {
	font-size: 15px;
	font-weight: 600;
	margin: 0 0 10px;
	color: #222;
	line-height: 1.3;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.arch-ending-soon__bar {
	height: 6px;
	background: #f0e6cc;
	border-radius: 999px;
	overflow: hidden;
	margin-bottom: 8px;
}

.arch-ending-soon__fill {
	height: 100%;
	background: linear-gradient(90deg, #f5a623, #e88a00);
	border-radius: 999px;
}

.arch-ending-soon__meta {
	display: flex;
	justify-content: space-between;
	font-size: 13px;
	color: #555;
	font-weight: 500;
}

/* ────────────────────────────────────────────────────────────────
   Custom-amount toggle (hides advanced input behind a button)
   ──────────────────────────────────────────────────────────────── */
.sf-custom-toggle {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin-top: 6px;
	padding: 8px 12px;
	background: transparent;
	border: 1px dashed var(--sf-border);
	border-radius: 6px;
	color: var(--sf-blue);
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 13px;
	font-weight: 600;
	cursor: pointer;
	transition: border-color .15s, background .15s, color .15s;
}
.sf-custom-toggle:hover {
	border-color: var(--sf-blue);
	background: var(--sf-lavender);
}
.sf-custom-toggle.is-open {
	background: var(--sf-lavender);
	border-style: solid;
	border-color: var(--sf-blue);
}
.sf-custom-toggle__icon {
	display: inline-block;
	width: 16px;
	height: 16px;
	line-height: 14px;
	text-align: center;
	border: 1.5px solid currentColor;
	border-radius: 50%;
	font-size: 14px;
	font-weight: 700;
	transition: transform .2s;
}
.sf-custom-toggle.is-open .sf-custom-toggle__icon {
	transform: rotate(45deg);
}

/* ────────────────────────────────────────────────────────────────
   Donate button loading state (spinner)
   ──────────────────────────────────────────────────────────────── */
.sf-donate-btn.is-loading {
	pointer-events: none;
	position: relative;
}
.sf-donate-btn.is-loading svg {
	display: none;
}
.sf-donate-btn.is-loading .sf-donate-btn__label {
	opacity: .7;
}
.sf-donate-btn.is-loading::after {
	content: '';
	display: inline-block;
	width: 16px;
	height: 16px;
	border: 2px solid currentColor;
	border-top-color: transparent;
	border-radius: 50%;
	margin-left: 4px;
	animation: sf-spin .7s linear infinite;
}
@keyframes sf-spin {
	to { transform: rotate(360deg); }
}

/* ────────────────────────────────────────────────────────────────
   Anonymous-toggle visual indicator on name field
   ──────────────────────────────────────────────────────────────── */
.sf-form__group.is-anon .sf-form__input {
	background: #fafafa;
	border-color: var(--sf-border);
	color: var(--sf-muted);
}
.sf-form__group.is-anon .sf-form__label {
	color: var(--sf-muted);
}
#sf-name-optional {
	font-size: 12px;
	font-weight: 400;
	color: var(--sf-muted);
	margin-left: 4px;
}

/* ────────────────────────────────────────────────────────────────
   Dashboard empty-state onboarding guide
   ──────────────────────────────────────────────────────────────── */
.empty-state--onboarding {
	max-width: 680px;
	margin: 48px auto;
	padding: 40px 32px;
	background: #fff;
	border: 1px solid #eee;
	border-radius: 14px;
	box-shadow: 0 6px 22px rgba(0,0,0,.06);
	text-align: center;
}
.empty-state__hero {
	margin-bottom: 28px;
}
.empty-state__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 72px;
	height: 72px;
	margin-bottom: 14px;
	background: #fff3f5;
	border-radius: 50%;
	color: #e53e3e;
}
.empty-state__title {
	margin: 0 0 8px;
	font-size: 26px;
	font-weight: 700;
	color: #222;
}
.empty-state__lead {
	margin: 0;
	color: #555;
	font-size: 16px;
	line-height: 1.55;
}
.empty-state__steps {
	list-style: none;
	margin: 0 0 28px;
	padding: 0;
	display: grid;
	gap: 14px;
	text-align: left;
}
.empty-state__step {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	padding: 14px 16px;
	background: #f7f9fc;
	border-radius: 10px;
}
.empty-state__step strong {
	display: block;
	font-size: 15px;
	color: #222;
	margin-bottom: 2px;
}
.empty-state__step p {
	margin: 0;
	color: #555;
	font-size: 14px;
	line-height: 1.5;
}
.empty-state__step-num {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	background: var(--sf-blue, #003da5);
	color: #fff;
	border-radius: 50%;
	font-weight: 700;
	font-size: 14px;
}
.empty-state__cta {
	margin-top: 4px;
}
.empty-state__cta .button {
	min-width: 240px;
}
.empty-state__footnote {
	margin: 12px 0 0;
	color: #777;
	font-size: 13px;
}
@media (max-width: 540px) {
	.empty-state--onboarding {
		padding: 28px 20px;
		margin: 24px auto;
	}
	.empty-state__title { font-size: 22px; }
}

/* ────────────────────────────────────────────────────────────────
   Create-form: real-time story meter
   ──────────────────────────────────────────────────────────────── */
.cf-story-meter {
	margin-top: 8px;
}
.cf-story-meter__bar {
	height: 6px;
	background: #eee;
	border-radius: 4px;
	overflow: hidden;
}
.cf-story-meter__fill {
	display: block;
	height: 100%;
	width: 0;
	background: #e53e3e;
	border-radius: 4px;
	transition: width .25s ease, background .25s ease;
}
.cf-story-meter.is-short .cf-story-meter__fill { background: #e53e3e; }
.cf-story-meter.is-ok    .cf-story-meter__fill { background: #f6ad55; }
.cf-story-meter.is-great .cf-story-meter__fill { background: #38a169; }
.cf-story-meter__status {
	margin: 6px 0 0;
	font-size: 13px;
	line-height: 1.4;
	color: #666;
	min-height: 18px;
}
.cf-story-meter.is-short .cf-story-meter__status { color: #c53030; }
.cf-story-meter.is-ok    .cf-story-meter__status { color: #b7791f; }
.cf-story-meter.is-great .cf-story-meter__status { color: #276749; }
#campaign_story.is-invalid {
	border-color: #e53e3e;
	box-shadow: 0 0 0 2px rgba(229,62,62,.12);
}


/* Create fundraiser UX refresh */
.thp-p2p-create-form-wrapper {
	--cf-blue: #0000AA;
	--cf-blue-d: #000091;
	--cf-aqua: #00BFBA;
	--cf-yellow: #FFCA05;
	--cf-lavender: #EDEDFF;
	--cf-surface: #f7f7fb;
	--cf-border: #dedeee;
	--cf-text: #1a1a2e;
	--cf-muted: #5c5c7a;
	--cf-radius: 10px;
	background: linear-gradient(180deg, #fff 0%, #f6f6ff 100%);
	padding: 56px 0 76px;
}

.thp-p2p-create-form-wrapper .container {
	max-width: 1160px;
}

.cf-page-head {
	max-width: 760px;
	margin: 0 0 28px;
}

.cf-page-head__eyebrow {
	display: inline-block;
	margin-bottom: 10px;
	color: var(--cf-blue);
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 1.4px;
	text-transform: uppercase;
}

.cf-page-head h1 {
	margin: 0;
	color: var(--cf-blue);
	font-family: 'Unna', Georgia, serif;
	font-size: clamp(34px, 5vw, 56px);
	line-height: 1.04;
}

.cf-page-head__lead {
	max-width: 650px;
	margin: 14px 0 0;
	color: var(--cf-text);
	font-size: 18px;
	line-height: 1.55;
}

.cf-page-head__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 18px;
}

.cf-page-head__meta span {
	display: inline-flex;
	align-items: center;
	min-height: 32px;
	padding: 6px 12px;
	border: 1px solid var(--cf-border);
	border-radius: 999px;
	background: #fff;
	color: var(--cf-muted);
	font-size: 13px;
	font-weight: 700;
}

.cf-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 26px;
	align-items: start;
}

@media (min-width: 980px) {
	.cf-layout {
		grid-template-columns: minmax(0, 1fr) 320px;
	}
}

.cf-main {
	min-width: 0;
}

.thp-p2p-create-form-wrapper .cf-section {
	margin: 0 0 22px;
	padding: 24px;
	border: 1px solid var(--cf-border);
	border-radius: var(--cf-radius);
	background: #fff;
	box-shadow: 0 12px 32px rgba(0,0,120,.06);
}

.thp-p2p-create-form-wrapper .cf-section h2 {
	margin: 0 0 6px;
	color: var(--cf-blue);
	font-family: 'Unna', Georgia, serif;
	font-size: 26px;
	line-height: 1.15;
}

.cf-section__intro {
	margin: 0 0 22px;
	color: var(--cf-muted);
	font-size: 15px;
	line-height: 1.5;
}

.thp-p2p-create-form-wrapper .form-group {
	gap: 0;
	margin-top: 20px;
}

.thp-p2p-create-form-wrapper .form-group:first-of-type {
	margin-top: 0;
}

.thp-p2p-create-form-wrapper .form-group label {
	margin-bottom: 8px;
	color: var(--cf-text);
	font-size: 15px;
	font-weight: 800;
}

.thp-p2p-create-form-wrapper .form-group input[type="text"],
.thp-p2p-create-form-wrapper .form-group input[type="number"],
.thp-p2p-create-form-wrapper .form-group input[type="date"],
.thp-p2p-create-form-wrapper .form-group textarea {
	width: 100%;
	padding: 13px 14px;
	border: 1.5px solid var(--cf-border);
	border-radius: 8px;
	background: #fff;
	color: var(--cf-text);
	font-size: 16px;
	box-sizing: border-box;
}

.thp-p2p-create-form-wrapper .form-group textarea {
	min-height: 220px;
	line-height: 1.6;
}

.thp-p2p-create-form-wrapper .form-hint {
	color: var(--cf-muted);
	font-size: 13px;
	line-height: 1.45;
}

.cf-file-control {
	display: grid;
	gap: 12px;
}

.cf-file-control input[type="file"] {
	width: 100%;
	padding: 14px;
	border: 1.5px dashed var(--cf-border);
	border-radius: 10px;
	background: var(--cf-surface);
	color: var(--cf-muted);
	font-size: 14px;
	box-sizing: border-box;
}

.cf-file-control input[type="file"]::file-selector-button {
	margin-right: 12px;
	padding: 9px 14px;
	border: 0;
	border-radius: 6px;
	background: var(--cf-blue);
	color: #fff;
	font-weight: 800;
	cursor: pointer;
}

.cf-photo-preview {
	display: grid;
	grid-template-columns: 88px 1fr;
	align-items: center;
	gap: 12px;
	padding: 10px;
	border: 1px solid var(--cf-border);
	border-radius: 10px;
	background: #fff;
}

.cf-photo-preview[hidden] {
	display: none;
}

.cf-photo-preview img {
	width: 88px;
	aspect-ratio: 4/3;
	height: auto;
	border-radius: 8px;
	object-fit: cover;
	background: var(--cf-lavender);
}

.cf-photo-preview span {
	color: var(--cf-text);
	font-weight: 800;
}

.cf-goal-chips,
.cf-duration-chips {
	margin-top: 10px;
}

.cf-goal-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.cf-goal-chip,
.cf-duration-chip {
	min-height: 36px;
	padding: 8px 14px;
	border: 1px solid var(--cf-border);
	border-radius: 999px;
	background: #fff;
	color: var(--cf-text);
	font-size: 14px;
	font-weight: 800;
	cursor: pointer;
	transition: background .15s, border-color .15s, color .15s, transform .15s;
}

.cf-goal-chip:hover,
.cf-goal-chip.is-active,
.cf-duration-chip:hover,
.cf-duration-chip.is-active {
	border-color: var(--cf-blue);
	background: var(--cf-lavender);
	color: var(--cf-blue);
	transform: translateY(-1px);
}

.cf-sidebar {
	position: relative;
}

.cf-summary {
	position: sticky;
	top: calc(var(--header-height, 72px) + 24px);
	padding: 22px;
	border: 1px solid var(--cf-border);
	border-radius: var(--cf-radius);
	background: var(--cf-blue);
	color: #fff;
	box-shadow: 0 14px 36px rgba(0,0,170,.18);
}

.cf-summary h2 {
	margin: 0 0 14px;
	color: #fff;
	font-family: 'Unna', Georgia, serif;
	font-size: 25px;
	line-height: 1.1;
}

.cf-summary__card {
	display: grid;
	gap: 7px;
	padding: 14px;
	border-radius: 8px;
	background: rgba(255,255,255,.1);
}

.cf-summary__label {
	color: rgba(255,255,255,.65);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: .6px;
	text-transform: uppercase;
}

.cf-summary__card strong,
.cf-summary__card p {
	margin: 0 0 6px;
	color: #fff;
	line-height: 1.35;
	overflow-wrap: anywhere;
}

.cf-summary__list {
	display: grid;
	gap: 8px;
	margin: 18px 0 0;
	padding: 0;
	list-style: none;
}

.cf-summary__list li {
	position: relative;
	padding-left: 26px;
	color: rgba(255,255,255,.78);
	font-size: 14px;
}

.cf-summary__list li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 1px;
	width: 16px;
	height: 16px;
	border: 1.5px solid rgba(255,255,255,.45);
	border-radius: 50%;
}

.cf-summary__list li.is-complete {
	color: #fff;
}

.cf-summary__list li.is-complete::before {
	content: '\2713';
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: var(--cf-yellow);
	border-color: var(--cf-yellow);
	color: var(--cf-blue);
	font-size: 11px;
	font-weight: 900;
}

.cf-summary__note {
	margin: 18px 0 0;
	padding-top: 14px;
	border-top: 1px solid rgba(255,255,255,.18);
	color: rgba(255,255,255,.78);
	font-size: 13px;
	line-height: 1.5;
}

.thp-p2p-create-form-wrapper .form-notice {
	border: 1px solid #d7dcff;
	border-left: 4px solid var(--cf-blue);
	border-radius: 9px;
	background: #f3f5ff;
	color: #23305f;
}

.thp-p2p-create-form-wrapper .form-actions {
	position: sticky;
	bottom: 0;
	z-index: 20;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 6px;
	padding: 14px;
	backdrop-filter: blur(8px);
}

.thp-p2p-create-form-wrapper .form-actions .button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	padding: 10px 18px;
	border-radius: 7px;
	font-weight: 800;
	text-decoration: none;
}

.thp-p2p-create-form-wrapper .form-actions .button-primary {
	border: 0;
	background: var(--cf-yellow);
	color: var(--cf-blue);
}

.thp-p2p-create-form-wrapper .form-actions .button-secondary {
	border: 1px solid var(--cf-border);
	background: #fff;
	color: var(--cf-blue);
}

.thp-p2p-create-form-wrapper .form-actions .form-hint {
	flex-basis: 100%;
	margin: 2px 0 0 !important;
}

@media (max-width: 979px) {
	.cf-summary {
		position: static;
	}
}

@media (max-width: 640px) {
	.thp-p2p-create-form-wrapper {
		padding: 34px 0 56px;
	}

	.thp-p2p-create-form-wrapper .cf-section,
	.cf-summary {
		padding: 18px;
	}

	.cf-page-head__meta span,
	.thp-p2p-create-form-wrapper .form-actions .button {
		width: 100%;
	}

	.thp-p2p-create-form-wrapper .form-actions {
		position: static;
	}
}

/* ──────────────────────────────────────────────────────────────
   Owner reply to donor messages
   ────────────────────────────────────────────────────────────── */

.sf-owner-bar {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 20px;
}

.sf-edit-btn--dashboard {
	background: #0000AA;
	color: #fff !important;
	border-color: #0000AA;
}

.sf-edit-btn--dashboard:hover,
.sf-edit-btn--dashboard:focus-visible {
	background: #00008c;
	border-color: #00008c;
	color: #fff !important;
}

.sf-reply-toggle {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin-top: 10px;
	padding: 8px 14px;
	background: #0000AA;
	border: 1px solid #0000AA;
	border-radius: 999px;
	color: #fff;
	font-size: 13px;
	font-weight: 600;
	cursor: pointer;
	box-shadow: 0 2px 6px rgba(0, 0, 170, 0.18);
	transition: background-color .15s ease, transform .12s ease, box-shadow .15s ease;
}

.sf-reply-toggle:hover,
.sf-reply-toggle:focus-visible {
	background: #00008c;
	border-color: #00008c;
	outline: none;
	transform: translateY(-1px);
	box-shadow: 0 4px 10px rgba(0, 0, 170, 0.25);
}

.sf-reply-toggle svg {
	opacity: .9;
}

.sf-reply-form {
	margin-top: 10px;
	padding: 12px;
	background: #f7f7fb;
	border: 1px solid #e4e4ee;
	border-radius: 10px;
}

.sf-reply-form__input {
	width: 100%;
	min-height: 64px;
	padding: 8px 10px;
	border: 1px solid #d6d6e2;
	border-radius: 8px;
	font: inherit;
	font-size: 14px;
	line-height: 1.45;
	resize: vertical;
	background: #fff;
	color: #1a1a2e;
	box-sizing: border-box;
}

.sf-reply-form__input:focus {
	outline: 2px solid #00BFBA;
	outline-offset: 1px;
	border-color: transparent;
}

.sf-reply-form__actions {
	display: flex;
	justify-content: flex-end;
	gap: 8px;
	margin-top: 8px;
}

.sf-reply-form__cancel,
.sf-reply-form__submit {
	padding: 6px 14px;
	border-radius: 999px;
	font-size: 13px;
	font-weight: 600;
	cursor: pointer;
	border: 1px solid transparent;
	transition: background-color .15s ease;
}

.sf-reply-form__cancel {
	background: transparent;
	color: #555;
	border-color: #d6d6e2;
}

.sf-reply-form__cancel:hover {
	background: #eee;
}

.sf-reply-form__submit {
	background: #0000AA;
	color: #fff;
}

.sf-reply-form__submit:hover,
.sf-reply-form__submit:focus-visible {
	background: #00008c;
}

.sf-reply-form__submit:disabled {
	opacity: .6;
	cursor: not-allowed;
}

.sf-reply-form__error {
	margin: 8px 0 0;
	color: #b91c1c;
	font-size: 12.5px;
	min-height: 1em;
}

.sf-donor__reply {
	margin-top: 10px;
	padding: 10px 12px;
	background: #eef9f8;
	border-left: 3px solid #00BFBA;
	border-radius: 0 8px 8px 0;
}

.sf-donor__reply-label {
	font-size: 11.5px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .04em;
	color: #007d78;
	margin-bottom: 2px;
}

.sf-donor__reply-text {
	font-size: 13.5px;
	line-height: 1.5;
	color: #1a1a2e;
	white-space: pre-wrap;
	word-wrap: break-word;
}

/* ──────────────────────────────────────────────────────────────
   Floating user-nav chip (for logged-in fundraiser users)
   ────────────────────────────────────────────────────────────── */

.thp-p2p-usernav {
	position: fixed;
	right: 20px;
	bottom: 20px;
	z-index: 9998;
	font-family: inherit;
}

.thp-p2p-usernav__toggle {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 8px 14px 8px 8px;
	background: #0000AA;
	color: #fff;
	border: none;
	border-radius: 999px;
	box-shadow: 0 8px 22px rgba(0, 0, 170, 0.25);
	cursor: pointer;
	font-size: 14px;
	font-weight: 600;
	transition: transform .15s ease, background-color .15s ease;
}

.thp-p2p-usernav__toggle:hover,
.thp-p2p-usernav__toggle:focus-visible {
	background: #00008c;
	outline: none;
	transform: translateY(-1px);
}

.thp-p2p-usernav__avatar {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: #00BFBA;
	color: #fff;
	font-weight: 700;
	font-size: 13px;
}

.thp-p2p-usernav__label {
	max-width: 160px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.thp-p2p-usernav__chev {
	transition: transform .2s ease;
	opacity: .85;
}

.thp-p2p-usernav.is-open .thp-p2p-usernav__chev {
	transform: rotate(180deg);
}

.thp-p2p-usernav__menu {
	position: absolute;
	right: 0;
	bottom: calc(100% + 8px);
	min-width: 240px;
	background: #fff;
	border: 1px solid #e4e4ee;
	border-radius: 14px;
	box-shadow: 0 14px 40px rgba(0, 0, 0, 0.12);
	padding: 6px;
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.thp-p2p-usernav__item {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px 12px;
	color: #1a1a2e !important;
	font-size: 14px;
	font-weight: 500;
	text-decoration: none !important;
	border-radius: 10px;
	transition: background-color .12s ease;
}

.thp-p2p-usernav__item:hover,
.thp-p2p-usernav__item:focus-visible {
	background: #f0f0ff;
	color: #0000AA !important;
	outline: none;
}

.thp-p2p-usernav__item--muted {
	color: #6b6b7a !important;
	border-top: 1px solid #eee;
	margin-top: 4px;
	padding-top: 10px;
}

.thp-p2p-usernav__item svg {
	flex-shrink: 0;
	opacity: .75;
}

@media (max-width: 600px) {
	.thp-p2p-usernav {
		right: 12px;
		bottom: 12px;
	}

	.thp-p2p-usernav__label {
		display: none;
	}

	.thp-p2p-usernav__toggle {
		padding: 6px;
		gap: 4px;
	}

	.thp-p2p-usernav__menu {
		min-width: 220px;
	}
}

