@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&display=swap");
:root {
	--rv-ink: #131220;
	--rv-violet: #302c51;
	--rv-muted: #69657d;
	--rv-line: #e4e5e9;
	--rv-mint: #c6ffeb;
	--rv-coral: #ffd0c2;
	--rv-lilac: #cfc3ff;
	--rv-bg: #fafafa;
}
html:has(.revamp-page) {
	overflow-x: hidden;
}
.revamp-page {
	margin: 0;
	background: #fff;
	color: var(--rv-ink);
	font-family: "DM Sans", sans-serif;
	font-size: 16px;
	overflow-x: hidden;
}
.revamp-page * {
	box-sizing: border-box;
}
.revamp-page h1,
.revamp-page h2,
.revamp-page h3,
.revamp-page p {
	margin-top: 0;
	font-family: inherit;
	color: inherit;
}
.revamp-page a {
	color: inherit;
}
.rv-container {
	width: min(1240px, calc(100% - 48px));
	margin-inline: auto;
}
.rv-section {
	padding: 100px 0;
}
.rv-eyebrow {
	display: block;
	margin-bottom: 14px;
	color: #ff6846;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}
.rv-btn {
	display: inline-flex;
	min-height: 56px;
	align-items: center;
	justify-content: center;
	padding: 14px 24px;
	border: 0;
	border-radius: 8px;
	background: linear-gradient(78deg, #302c51, #131220);
	box-shadow: 0 4px 12px #13122029;
	color: #fff !important;
	font-size: 17px;
	font-weight: 600;
	transition:
		transform 150ms,
		box-shadow 150ms;
	text-decoration: none !important;
}
.rv-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 20px #13122030;
}
.rv-btn:active {
	transform: scale(0.96);
}
.rv-btn:focus-visible,
.rv-nav a:focus-visible,
.rv-text-link:focus-visible,
.rv-menu-toggle:focus-visible,
summary:focus-visible,
input:focus-visible,
textarea:focus-visible,
button:focus-visible {
	outline: 3px solid #ff6846;
	outline-offset: 3px;
}
.rv-text-link {
	display: inline-flex;
	align-items: center;
	min-height: 44px;
	font-weight: 600;
	text-decoration: none !important;
}
.rv-centered-link {
	justify-content: center;
	margin: 40px auto 0;
	width: max-content;
}
.rv-header {
	position: sticky;
	top: 0;
	z-index: 1000;
	background: #fffc;
	border-bottom: 1px solid #eee;
	backdrop-filter: blur(16px);
}
.rv-nav-wrap {
	height: 78px;
	display: flex;
	align-items: center;
	gap: 38px;
}
.rv-brand img {
	display: block;
	width: 181px;
	height: auto;
}
.rv-nav {
	display: flex;
	align-items: center;
	gap: 26px;
	margin-left: auto;
}
.rv-nav a {
	font-size: 14px;
	font-weight: 500;
	text-decoration: none !important;
}
.rv-nav-dropdown-toggle {
	display: inline-flex;
	min-height: 44px;
	align-items: center;
	gap: 8px;
	padding: 0;
	border: 0;
	background: transparent;
	color: inherit;
	font: inherit;
	font-size: 14px;
	font-weight: 500;
	cursor: pointer;
}
.rv-nav-dropdown-toggle svg {
	width: 16px;
	height: 16px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.5;
	transition: transform 150ms cubic-bezier(0.2, 0, 0, 1);
}
.rv-nav-dropdown-toggle[aria-expanded="true"] svg {
	transform: rotate(180deg);
}
.rv-nav a:hover,
.rv-nav a[aria-current],
.rv-nav-dropdown-toggle:hover,
.rv-nav-dropdown-toggle[aria-current],
.rv-nav-dropdown-toggle[aria-expanded="true"] {
	color: #ff6846;
}
.rv-nav-actions {
	display: flex;
	align-items: center;
	gap: 16px;
}
.rv-login {
	font-size: 14px;
	font-weight: 600;
	text-decoration: none !important;
}
.rv-btn-small {
	min-height: 44px;
	padding: 10px 18px;
	font-size: 14px;
}
.rv-menu-toggle {
	display: none;
	width: 44px;
	height: 44px;
	padding: 10px;
	border: 0;
	background: transparent;
}
.rv-menu-toggle span:not(.sr-only) {
	display: block;
	height: 2px;
	margin: 5px 0;
	background: var(--rv-violet);
}
.rv-mega-menu {
	position: absolute;
	z-index: 999;
	top: 100%;
	left: 0;
	width: 100%;
	border-top: 1px solid var(--rv-line);
	background: #fff;
	box-shadow: 0 18px 30px #13122014;
}
.rv-mega-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr)) 1.15fr;
}
.rv-category-item {
	display: grid;
	grid-template-columns: 54px minmax(0, 1fr);
	gap: 20px;
	min-height: 320px;
	padding: 42px 30px 38px 0;
	color: var(--rv-ink) !important;
	text-decoration: none !important;
}
.rv-category-item + .rv-category-item {
	padding-left: 24px;
}
.rv-category-item strong {
	display: block;
	margin-bottom: 22px;
	font-size: 20px;
	line-height: 1.25;
}
.rv-category-item small {
	display: block;
	font-size: 15px;
	line-height: 1.65;
}
.rv-category-icon {
	position: relative;
	display: grid;
	width: 48px;
	height: 48px;
	place-items: end start;
	border-radius: 7px;
}
.rv-category-icon i,
.rv-category-icon i::before,
.rv-category-icon i::after {
	display: block;
	width: 19px;
	height: 30px;
	border-radius: 18px 18px 2px 2px;
	background: currentColor;
}
.rv-category-icon i {
	position: relative;
}
.rv-category-icon i::before,
.rv-category-icon i::after {
	position: absolute;
	bottom: 0;
	content: "";
}
.rv-category-icon i::before { left: 9px; height: 25px; }
.rv-category-icon i::after { left: 18px; height: 18px; }
.rv-category-icon-mint { background: #bff9e5; color: #078667; }
.rv-category-icon-coral { background: #ffd2c5; color: #ff744d; }
.rv-category-icon-lilac { background: #cfc4ff; color: #49368e; }
.rv-mega-purpose {
	margin-right: calc(-1 * max(24px, (100vw - 1240px) / 2));
	padding: 42px max(24px, calc((100vw - 1240px) / 2)) 36px 34px;
	border-left: 1px solid var(--rv-line);
	background: #fafbfc;
}
.rv-mega-purpose > span {
	display: block;
	margin-bottom: 16px;
	color: #ff6846;
	font-size: 14px;
	font-weight: 600;
}
.rv-mega-purpose img {
	display: block;
	width: 100%;
	height: 112px;
	margin-bottom: 15px;
	border-radius: 12px;
	object-fit: cover;
	outline: 1px solid #0000001a;
}
.rv-mega-purpose p {
	display: -webkit-box;
	overflow: hidden;
	margin-bottom: 14px;
	font-size: 14px;
	line-height: 1.5;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}
.rv-mega-purpose a {
	display: inline-flex;
	min-height: 44px;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	font-weight: 500;
}
.rv-mega-close {
	display: none;
}
.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}
.rv-hero {
	position: relative;
	background: linear-gradient(180deg, #fff 0, #fbfaff 100%);
}
.rv-hero-slide {
	display: none;
	min-height: 820px;
	padding: 85px 0;
}
.rv-hero-slide.is-active {
	display: block;
}
.rv-hero-grid {
	display: grid;
	grid-template-columns: 0.9fr 1.1fr;
	gap: 72px;
	align-items: center;
}
.rv-hero-copy h1 {
	max-width: 590px;
	margin-bottom: 24px;
	color: var(--rv-violet);
	font-size: clamp(48px, 5.2vw, 76px);
	line-height: 1.07;
	letter-spacing: -0.045em;
}
.rv-hero-copy p {
	max-width: 550px;
	margin-bottom: 32px;
	color: #454162;
	font-size: 20px;
	line-height: 1.6;
}
.rv-actions {
	display: flex;
	align-items: center;
	gap: 24px;
}
.rv-hero-media {
	position: relative;
	height: 620px;
}
.rv-hero-media img,
.rv-image-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	outline: 1px solid #0000001a;
}
.rv-hero-media img {
	border-radius: 48% 48% 22% 48%;
}
.rv-hero-media i {
	position: absolute;
	width: 110px;
	height: 110px;
	border-radius: 50%;
	background: var(--rv-coral);
	right: -25px;
	bottom: 78px;
	z-index: -1;
}
.rv-hero-media i + i {
	width: 58px;
	height: 58px;
	background: var(--rv-lilac);
	right: auto;
	left: -25px;
	top: 70px;
}
.rv-fallback {
	border-radius: 48% 48% 22% 48%;
	background: linear-gradient(135deg, var(--rv-lilac), var(--rv-coral));
}
.rv-hero-controls {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-top: -130px;
	padding-bottom: 70px;
	position: relative;
	z-index: 2;
}
.rv-hero-controls button,
.rv-round-controls button {
	width: 52px;
	height: 52px;
	border: 1px solid var(--rv-line);
	border-radius: 50%;
	background: #fff;
	color: var(--rv-violet);
	font-size: 20px;
}
.rv-belief {
	text-align: center;
	background: #fbfaff;
}
.rv-belief p {
	margin: 0;
	color: #454162;
	font-size: clamp(30px, 3.1vw, 48px);
	font-weight: 500;
	line-height: 1.5;
}
.rv-belief strong {
	color: #ff6846;
}
.rv-belief em {
	color: var(--rv-violet);
	font-style: normal;
}
.rv-two-col {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 72px;
	align-items: center;
}
.rv-section-copy h2,
.rv-section-heading h2,
.rv-centered-heading h2,
.rv-contact-heading h2 {
	margin-bottom: 20px;
	color: var(--rv-violet);
	font-size: clamp(38px, 4vw, 58px);
	line-height: 1.16;
	letter-spacing: -0.035em;
}
.rv-section-copy p {
	margin-bottom: 30px;
	color: #454162;
	font-size: 18px;
	line-height: 1.75;
}
.rv-image-card {
	height: 586px;
	border-radius: 28px;
	overflow: hidden;
}
.rv-giving {
	background: var(--rv-bg);
}
.rv-giving h2 {
	margin-bottom: 48px;
	color: var(--rv-violet);
	font-size: 46px;
}
.rv-giving-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
}
.rv-giving-card {
	position: relative;
	min-height: 280px;
	padding: 30px 28px;
	border-radius: 20px;
	overflow: hidden;
}
.rv-giving-card h3 {
	max-width: 290px;
	font-size: 29px;
	line-height: 1.28;
}
.rv-giving-card a {
	position: absolute;
	bottom: 28px;
	left: 28px;
	z-index: 1;
	font-weight: 600;
	text-decoration: none;
}
.rv-giving-card i {
	position: absolute;
	width: 160px;
	height: 160px;
	right: -70px;
	bottom: -85px;
	border-radius: 50%;
	background: #302c51;
}
.rv-mint {
	background: var(--rv-mint);
}
.rv-coral {
	background: var(--rv-coral);
}
.rv-lilac {
	background: var(--rv-lilac);
}
.rv-programs {
	background: #fafafa;
}
.rv-section-heading {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	margin-bottom: 56px;
}
.rv-section-heading > div:first-child {
	max-width: 820px;
}
.rv-section-heading p,
.rv-centered-heading p {
	color: #69657d;
	font-size: 18px;
}
.rv-round-controls {
	display: flex;
	gap: 16px;
}
.rv-program-track {
	display: grid;
	grid-auto-flow: column;
	grid-auto-columns: calc((100% - 64px) / 3);
	gap: 32px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scrollbar-width: none;
	padding: 4px;
}
.rv-program-card {
	border-radius: 20px;
	overflow: hidden;
	scroll-snap-align: start;
}
.rv-program-image {
	position: relative;
	display: block;
	height: 278px;
}
.rv-program-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.rv-program-image span {
	position: absolute;
	left: 22px;
	top: 22px;
	padding: 7px 12px;
	border-radius: 10px;
	background: #fff;
	font-size: 12px;
}
.rv-program-body {
	padding: 24px;
}
.rv-program-body h3 {
	min-height: 64px;
	font-size: 20px;
	line-height: 1.5;
}
.rv-program-body h3 a {
	text-decoration: none;
}
.rv-progress {
	height: 5px;
	margin: 18px 0;
	background: #13122022;
	border-radius: 5px;
	overflow: hidden;
}
.rv-progress i {
	display: block;
	height: 100%;
	background: var(--rv-violet);
}
.rv-program-meta {
	display: flex;
	justify-content: space-between;
	gap: 12px;
	font-size: 12px;
}
.rv-program-meta span:last-child {
	text-align: right;
}
.rv-program-meta strong {
	display: block;
	margin-top: 3px;
	font-size: 14px;
}
.rv-program-body > p {
	margin: 15px 0 0;
	font-size: 13px;
}
.rv-why .rv-image-card {
	height: 698px;
}
.rv-reasons details {
	border-left: 3px solid transparent;
	padding: 18px 0 18px 22px;
}
.rv-reasons details[open] {
	border-color: #ff6846;
}
.rv-reasons summary {
	cursor: pointer;
	list-style: none;
	color: var(--rv-violet);
	font-size: 21px;
	font-weight: 600;
}
.rv-reasons details p {
	margin: 10px 0 0;
	font-size: 16px;
}
.rv-centered-heading {
	max-width: 900px;
	margin: 0 auto 56px;
	text-align: center;
}
.rv-activities {
	padding-bottom: 70px;
}
.rv-activity-track {
	display: flex;
	align-items: center;
	gap: 16px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scrollbar-width: none;
	padding: 0 24px 30px;
}
.rv-activity-track a {
	flex: 0 0 280px;
	height: 300px;
	border-radius: 20px;
	overflow: hidden;
	scroll-snap-align: center;
}
.rv-activity-track a.is-featured {
	flex-basis: 420px;
	height: 360px;
}
.rv-activity-track img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	outline: 1px solid #0000001a;
}
.rv-faq {
	background: #fafafa;
}
.rv-accordion {
	max-width: 1240px;
	margin: auto;
}
.rv-accordion details {
	border: 1px solid var(--rv-line);
	border-radius: 12px;
	background: #fff;
	margin-bottom: 16px;
	padding: 28px 32px;
}
.rv-accordion summary {
	display: flex;
	justify-content: space-between;
	cursor: pointer;
	list-style: none;
	color: #454162;
	font-size: 20px;
	font-weight: 600;
}
.rv-accordion summary i {
	position: relative;
	width: 24px;
	height: 24px;
}
.rv-accordion summary i:before,
.rv-accordion summary i:after {
	content: "";
	position: absolute;
	left: 4px;
	top: 11px;
	width: 16px;
	height: 2px;
	background: currentColor;
}
.rv-accordion summary i:after {
	transform: rotate(90deg);
	transition: transform 150ms;
}
.rv-accordion details[open] summary i:after {
	transform: rotate(0);
}
.rv-accordion details div {
	padding-top: 18px;
	color: #69657d;
	line-height: 1.7;
}
.rv-contact-heading {
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	gap: 70px;
	align-items: end;
	margin-bottom: 52px;
}
.rv-contact-heading p {
	font-size: 18px;
	line-height: 1.7;
}
.rv-contact-form {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px 16px;
}
.rv-contact-form label {
	color: #050408;
	font-size: 17px;
}
.rv-contact-form input,
.rv-contact-form textarea {
	display: block;
	width: 100%;
	margin-top: 8px;
	padding: 16px 18px;
	border: 1.5px solid #a7aab9;
	border-radius: 8px;
	background: #fff;
	font: inherit;
	color: var(--rv-ink);
}
.rv-contact-form input {
	height: 60px;
}
.rv-field-wide {
	grid-column: 1 / -1;
}
.rv-contact-form .rv-btn {
	justify-self: start;
}
.rv-alert {
	margin-bottom: 28px;
	padding: 16px 18px;
	border-radius: 10px;
	background: #c6ffeb;
}
.rv-alert-error {
	background: #ffd0c2;
}
.rv-cta {
	padding-top: 40px;
}
.rv-cta-card {
	min-height: 520px;
	padding: 70px 30px;
	border-radius: 32px;
	background:
		linear-gradient(#0008, #0008),
		url("../img/revamp/cta.jpeg") center 43% / cover;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
}
.rv-cta-card h2 {
	color: #fff;
	font-size: clamp(38px, 4vw, 58px);
	line-height: 1.3;
}
.rv-footer {
	border-top: 1px solid var(--rv-line);
	padding: 90px 0 48px;
	background: #fff;
}
.rv-footer-grid {
	display: grid;
	grid-template-columns: 1.5fr 0.65fr 1fr;
	gap: 70px;
}
.rv-footer-about p {
	max-width: 500px;
	margin: 28px 0;
	line-height: 1.7;
}
.rv-footer h2 {
	font-size: 20px;
	color: var(--rv-violet);
}
.rv-footer-links,
.rv-footer address {
	display: flex;
	flex-direction: column;
	gap: 15px;
	font-style: normal;
}
.rv-footer a {
	text-decoration: none;
}
.rv-footer address span {
	line-height: 1.6;
}
.rv-socials {
	display: flex;
	gap: 16px;
}
.rv-socials a {
	display: grid;
	place-items: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: #f5f5f7;
}
.rv-socials img {
	max-width: 20px;
	max-height: 20px;
}
.rv-copyright {
	display: flex;
	justify-content: space-between;
	margin-top: 72px;
	padding-top: 30px;
	border-top: 1px solid var(--rv-line);
	font-size: 14px;
}
@media (max-width: 900px) {
	.rv-section {
		padding: 72px 0;
	}
	.rv-menu-toggle {
		display: block;
		margin-left: auto;
	}
	.rv-nav {
		display: none;
		position: absolute;
		top: 78px;
		left: 0;
		width: 100%;
		padding: 22px 24px;
		background: #fff;
		box-shadow: 0 14px 30px #1312201a;
		flex-direction: column;
		align-items: flex-start;
	}
	.rv-nav.is-open {
		display: flex;
	}
	.rv-nav-dropdown-toggle {
		width: 100%;
		justify-content: space-between;
	}
	.rv-mega-menu {
		max-height: calc(100vh - 78px);
		overflow-y: auto;
	}
	.rv-mega-grid {
		grid-template-columns: 1fr;
		width: 100%;
	}
	.rv-category-item,
	.rv-category-item + .rv-category-item {
		min-height: 0;
		padding: 26px 54px 26px 24px;
		border-bottom: 1px solid var(--rv-line);
	}
	.rv-category-item strong {
		margin-bottom: 10px;
		font-size: 18px;
	}
	.rv-mega-purpose {
		margin-right: 0;
		padding: 28px 24px;
		border-left: 0;
	}
	.rv-mega-close {
		position: absolute;
		z-index: 2;
		top: 10px;
		right: 12px;
		display: grid;
		width: 44px;
		height: 44px;
		place-items: center;
		padding: 0;
		border: 0;
		background: transparent;
		color: var(--rv-violet);
		font-size: 28px;
		line-height: 1;
	}
	body.rv-mega-open {
		overflow: hidden;
	}
	.rv-nav-actions .rv-login {
		display: none;
	}
	.rv-hero-slide {
		min-height: auto;
		padding: 60px 0 90px;
	}
	.rv-hero-grid,
	.rv-two-col {
		grid-template-columns: 1fr;
		gap: 45px;
	}
	.rv-hero-media {
		height: 500px;
	}
	.rv-hero-controls {
		margin-top: -70px;
	}
	.rv-giving-grid {
		grid-template-columns: 1fr;
	}
	.rv-program-track {
		grid-auto-columns: 65%;
	}
	.rv-contact-heading {
		grid-template-columns: 1fr;
		gap: 10px;
	}
	.rv-contact-form {
		grid-template-columns: 1fr 1fr;
	}
	.rv-field-wide {
		grid-column: 1 / -1;
	}
	.rv-footer-grid {
		grid-template-columns: 1fr 1fr;
	}
	.rv-footer-about {
		grid-column: 1 / -1;
	}
}
@media (max-width: 600px) {
	.rv-container {
		width: min(100% - 32px, 1240px);
	}
	.rv-nav-wrap {
		height: 68px;
	}
	.rv-brand img {
		width: 150px;
	}
	.rv-nav {
		top: 68px;
	}
	.rv-mega-menu {
		max-height: calc(100vh - 68px);
	}
	.rv-nav-actions .rv-btn {
		min-height: 40px;
		padding: 9px 14px;
	}
	.rv-hero-copy h1 {
		font-size: 43px;
	}
	.rv-hero-copy p {
		font-size: 17px;
	}
	.rv-actions {
		align-items: flex-start;
		flex-direction: column;
		gap: 10px;
	}
	.rv-hero-media {
		height: 360px;
	}
	.rv-belief p {
		font-size: 28px;
	}
	.rv-two-col {
		gap: 34px;
	}
	.rv-image-card,
	.rv-why .rv-image-card {
		height: 390px;
	}
	.rv-giving h2 {
		font-size: 36px;
	}
	.rv-program-track {
		grid-auto-columns: 88%;
		gap: 18px;
	}
	.rv-section-heading {
		align-items: flex-start;
	}
	.rv-round-controls {
		display: none;
	}
	.rv-activity-track a {
		flex-basis: 75vw;
		height: 280px;
	}
	.rv-activity-track a.is-featured {
		flex-basis: 82vw;
		height: 310px;
	}
	.rv-accordion details {
		padding: 22px 18px;
	}
	.rv-accordion summary {
		font-size: 17px;
	}
	.rv-contact-form {
		grid-template-columns: 1fr;
	}
	.rv-field-wide {
		grid-column: auto;
	}
	.rv-footer-grid {
		grid-template-columns: 1fr;
	}
	.rv-footer-about {
		grid-column: auto;
	}
	.rv-copyright {
		flex-direction: column;
		gap: 10px;
	}
}
@media (prefers-reduced-motion: reduce) {
	.revamp-page * {
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
	}
}
.rv-program-image {
	background: linear-gradient(135deg, #302c51, #8176c3);
}

/* Revamped legacy-backed inner pages */
.rv-inner-page .page-title-area {
	display: none;
}
.rv-inner-page .about-area,
.rv-inner-page .donations-area,
.rv-inner-page .gallery-area {
	padding: 90px 0 !important;
	background: #fff;
}
.rv-inner-page .container {
	max-width: 1240px;
}
.rv-inner-page .section-title h2 {
	color: var(--rv-violet);
	font-size: 48px;
	letter-spacing: -0.035em;
}
.rv-inner-page .section-title p {
	max-width: 760px;
	margin-inline: auto;
	color: var(--rv-muted);
	font-size: 18px;
}
.rv-inner-page .common-btn {
	border: 0 !important;
	border-radius: 8px !important;
	background: linear-gradient(78deg, #302c51, #131220) !important;
	color: #fff !important;
	box-shadow: 0 4px 12px #13122029 !important;
}
.rv-inner-page .form-control {
	min-height: 56px;
	border: 1.5px solid #a7aab9 !important;
	border-radius: 8px !important;
	background: #fff !important;
	color: var(--rv-ink) !important;
}
.rv-inner-page textarea.form-control {
	min-height: 150px;
}
.rv-inner-page .donation-item {
	height: 100%;
	border: 0;
	border-radius: 20px;
	overflow: hidden;
	background: var(--rv-lilac);
	box-shadow: none;
}
.rv-inner-page .donation-item .img img {
	width: 100%;
	height: 260px !important;
	object-fit: cover;
}
.rv-inner-page .donation-item .inner {
	min-height: 300px !important;
	padding: 24px;
}
.rv-inner-page .donation-item h3 {
	color: var(--rv-ink);
	font-size: 20px;
}
.rv-inner-page .donation-item .skill {
	background: #13122022;
}
.rv-inner-page .donation-item .skill-bar {
	background: var(--rv-violet) !important;
}
.rv-donations-page .donations-area:before {
	content: "Temukan Program untuk Berbagi Kebaikan";
	display: block;
	max-width: 650px;
	margin: 0 auto 20px;
	text-align: center;
	color: var(--rv-violet);
	font-size: 44px;
	font-weight: 700;
	line-height: 1.25;
}
.rv-donations-page .section-title h2 {
	display: none;
}
.rv-donations-page .row > div:nth-child(3n + 2) .donation-item {
	background: var(--rv-mint);
}
.rv-donations-page .row > div:nth-child(3n) .donation-item {
	background: var(--rv-coral);
}
.rv-contact-page .contact-info-area {
	display: none;
}
.rv-contact-page .contact-area {
	padding: 100px 0 !important;
	background: #f7f7f7;
}
.rv-contact-page #contactForm {
	max-width: 1240px !important;
	padding: 0 !important;
	background: transparent !important;
	box-shadow: none !important;
}
.rv-contact-page #contactForm h2 {
	max-width: 680px;
	color: var(--rv-violet) !important;
	font-size: 48px !important;
}
.rv-contact-page #contactForm .row {
	margin-top: 45px;
}
.rv-contact-page #contactForm .form-group label {
	display: none;
}
.rv-contact-page #contactForm .form-control {
	padding: 16px 18px !important;
}
.rv-inner-page .about-area .row {
	gap: 40px;
}
.rv-inner-page .about-area img {
	width: 100%;
	min-height: 520px;
	object-fit: cover;
	border-radius: 28px !important;
	padding: 0 !important;
	outline: 1px solid #0000001a;
}
.rv-inner-page .about-content .sub-title {
	color: #ff6846 !important;
	text-transform: uppercase;
	letter-spacing: 0.12em;
}
.rv-inner-page .about-span {
	display: block;
	margin-bottom: 25px;
	color: var(--rv-violet);
	font-size: 48px !important;
	font-weight: 700;
	line-height: 1.18;
}
.rv-inner-page .about-content {
	color: #454162;
	font-size: 18px;
	line-height: 1.75;
}
.rv-program-detail-page .donations-area,
.rv-program-detail-page .event-details-area,
.rv-program-detail-page .blog-details-area {
	padding: 80px 0 !important;
}
.rv-program-detail-page .event-details-item,
.rv-program-detail-page .blog-details-item,
.rv-program-detail-page .donation-details {
	border-radius: 16px;
}
.rv-program-detail-page img {
	border-radius: 16px;
}
.rv-payment-page {
	background: #f7f7f7;
}
.rv-payment-page .gallery-area {
	padding: 70px 0 !important;
	background: transparent;
}
.rv-payment-page .gallery-area form {
	max-width: 620px;
	margin: auto;
	padding: 34px;
	border-radius: 20px;
	background: #fff;
	box-shadow: 0 8px 30px #13122012;
}
.rv-payment-page .rv-payment-error {
	max-width: 620px;
	margin: 0 auto 20px;
	padding: 14px 16px;
	border: 1px solid #efb2ae;
	border-radius: 10px;
	background: #fff0ef;
	color: #a5322e;
	font: 500 14px/1.5 'DM Sans', sans-serif;
}
.rv-payment-page .gallery-area .col-md-4 {
	max-width: 100%;
	flex: 0 0 100%;
}
.rv-payment-page .gallery-area .row > .col-md-4:empty {
	display: none;
}
.rv-payment-page .btn-radio {
	min-height: 48px;
	border: 1px solid var(--rv-line);
	background: #fff !important;
	text-align: left;
}
.rv-payment-page .btn-radio:hover {
	background: #f7f7f7 !important;
	color: var(--rv-ink) !important;
}
.rv-payment-page .rv-payment-actions {
	display: flex;
	flex-direction: column;
	gap: 14px;
	margin-top: 28px;
}
.rv-payment-page .rv-payment-continue {
	display: inline-flex;
	width: 100%;
	min-height: 58px;
	align-items: center;
	justify-content: center;
	border: 0;
	border-radius: 8px;
	background: linear-gradient(81deg, #302c51 8.6%, #131220 112.9%);
	box-shadow: 0 4px 12px #13122029;
	color: #fff !important;
	font: 500 17px 'DM Sans', sans-serif;
	letter-spacing: 0;
	transition: transform 150ms cubic-bezier(.2, 0, 0, 1), box-shadow 150ms cubic-bezier(.2, 0, 0, 1);
}
.rv-payment-page .rv-payment-continue:not(:disabled):hover {
	box-shadow: 0 8px 20px #13122030;
	color: #fff !important;
	transform: translateY(-1px);
}
.rv-payment-page .rv-payment-continue:not(:disabled):active {
	transform: scale(.96);
}
.rv-payment-page .rv-payment-continue:disabled {
	background: #9694a5;
	box-shadow: none;
	cursor: not-allowed;
	opacity: .7;
}
.rv-payment-page .rv-payment-cancel {
	display: inline-flex;
	width: 100%;
	min-height: 44px;
	align-items: center;
	justify-content: center;
	padding: 10px 18px;
	border: 1px solid #d3d3db;
	border-radius: 8px;
	background: #fff;
	color: var(--rv-violet);
	font: 600 15px 'DM Sans', sans-serif;
	text-decoration: none !important;
	transition: background-color 150ms cubic-bezier(.2, 0, 0, 1), border-color 150ms cubic-bezier(.2, 0, 0, 1);
}
.rv-payment-page .rv-payment-cancel:hover {
	border-color: var(--rv-violet);
	background: #f7f7fa;
	color: var(--rv-violet);
}
.rv-qris-page { background: #f7f7f9; }
.rv-qris-main { padding: 68px 0 88px; }
.rv-qris-container { max-width: 1050px; }
.rv-qris-back { display: inline-flex; gap: 8px; align-items: center; margin-bottom: 34px; color: var(--rv-violet); font: 600 15px 'DM Sans', sans-serif; }
.rv-qris-heading { display: flex; gap: 28px; align-items: flex-start; justify-content: space-between; margin-bottom: 35px; }
.rv-qris-heading h1 { margin: 7px 0 10px; color: var(--rv-violet); font-size: clamp(32px, 4vw, 46px); }
.rv-qris-heading p { max-width: 570px; color: #625f72; font-size: 17px; }
.rv-qris-status { display: inline-flex; flex: none; gap: 8px; align-items: center; padding: 10px 14px; border-radius: 999px; font: 600 14px 'DM Sans', sans-serif; }
.rv-qris-status span { width: 8px; height: 8px; border-radius: 50%; background: currentColor; }
.rv-qris-status-pending { background: #fff3d8; color: #a76700; }
.rv-qris-status-success { background: #ddf6e8; color: #197345; }
.rv-qris-status-expired { background: #ffe4e3; color: #b93532; }
.rv-qris-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(340px, .88fr); gap: 24px; align-items: start; }
.rv-qris-payment { display: flex; flex-direction: column; gap: 16px; }
.rv-qris-card { padding: 28px; border: 1px solid #e2e1e8; border-radius: 18px; background: #fff; box-shadow: 0 10px 30px #29254a0a; }
.rv-qris-card h2 { margin: 0; color: var(--rv-violet); font-size: 21px; }
.rv-qris-information dl { margin: 24px 0; }
.rv-qris-information dl > div { display: grid; grid-template-columns: 42% 1fr; gap: 14px; padding: 14px 0; border-bottom: 1px solid #ebeaf0; }
.rv-qris-information dt { color: #817e90; font: 500 14px 'DM Sans', sans-serif; }
.rv-qris-information dd { margin: 0; color: #2a273c; font: 600 14px 'DM Sans', sans-serif; overflow-wrap: anywhere; }
.rv-qris-security { display: flex; gap: 10px; align-items: flex-start; padding: 14px; border-radius: 10px; background: #fff1ec; color: #c95736; font-size: 13px; }
.rv-qris-code-card { text-align: center; }
.rv-qris-method { display: inline-block; margin-bottom: 14px; padding: 5px 10px; border-radius: 999px; background: #eeeafa; color: var(--rv-violet); font: 700 12px 'DM Sans', sans-serif; letter-spacing: .08em; }
.rv-qris-code-card img { display: block; width: min(100%, 234px); margin: 0 auto 20px; padding: 10px; border: 1px solid #ebeaf0; border-radius: 12px; }
.rv-qris-code-card p, .rv-qris-result p { margin: 9px auto 0; color: #706d7f; font-size: 14px; line-height: 1.6; }
.rv-qris-result { padding: 28px 0; }
.rv-qris-result i { display: block; margin-bottom: 12px; color: #198754; font-size: 48px; }
.rv-qris-expired-result i { color: #c74d49; }
.rv-qris-summary { text-align: center; }
.rv-qris-summary > span { display: block; color: #817e90; font-size: 14px; }
.rv-qris-summary > strong { display: block; margin-top: 4px; color: #fb7046; font-size: 28px; }
.rv-qris-deadline { display: flex; justify-content: space-between; align-items: center; margin-top: 22px; padding: 12px 14px; border-radius: 10px; background: #fff1ec; color: #a94e38; font-size: 14px; }
.rv-qris-deadline i { margin-right: 5px; }
.rv-qris-deadline b { font-size: 15px; }
.rv-qris-actions { display: flex; flex-direction: column; gap: 10px; }
.rv-qris-download { display: inline-flex; width: 100%; min-height: 50px; align-items: center; justify-content: center; gap: 8px; border: 0; }
.rv-qris-secondary-action { width: 100%; min-height: 48px; border: 1px solid #d9d6e4; border-radius: 8px; background: #fff; color: var(--rv-violet); font: 600 14px 'DM Sans', sans-serif; }
.rv-qris-copy-status { margin: 0; color: #197345; font-size: 13px; text-align: center; }
.rv-va-page { background: #f7f7f9; }
.rv-va-main { padding: 68px 0 88px; }
.rv-va-container { max-width: 690px; }
.rv-va-card { padding: 38px; border: 1px solid #e2e1e8; border-radius: 20px; background: #fff; box-shadow: 0 10px 30px #29254a0a; text-align: center; }
.rv-va-card h1 { margin: 7px 0 10px; color: var(--rv-violet); font-size: clamp(30px, 4vw, 42px); }
.rv-va-intro { max-width: 480px; margin: 0 auto; color: #706d7f; font-size: 16px; }
.rv-va-amount { margin: 30px 0 16px; padding: 18px; border-radius: 12px; background: #fff1ec; }
.rv-va-amount span { display: block; color: #817e90; font-size: 14px; }
.rv-va-amount strong { display: block; margin-top: 4px; color: #f26d45; font-size: 30px; }
.rv-va-number { padding: 24px; border: 1px solid #e8e6ed; border-radius: 14px; }
.rv-va-number img { display: block; width: 80px; margin: 0 auto 18px; }
.rv-va-number span { display: block; color: #817e90; font-size: 14px; }
.rv-va-number strong { display: block; margin: 6px 0 17px; color: var(--rv-violet); font-size: 26px; letter-spacing: .08em; overflow-wrap: anywhere; }
.rv-va-expiry { margin: 18px 0; color: #a94e38; font-size: 14px; }
.rv-va-expiry i { margin-right: 6px; }
.rv-va-guide-button { width: 100%; border: 0; }
.rv-va-guide { margin-top: 20px; padding: 22px; border-radius: 12px; background: #f6f5f9; color: #514e60; text-align: left; }
.rv-va-guide h2 { margin: 0 0 10px; color: var(--rv-violet); font-size: 17px; }
.rv-va-guide ol { margin: 0 0 22px; padding-left: 20px; font-size: 14px; line-height: 1.7; }
.rv-va-guide ol:last-child { margin-bottom: 0; }
.rv-va-empty { padding: 64px 36px; }
.rv-va-empty > i { display: block; margin-bottom: 14px; color: #f26d45; font-size: 46px; }
.rv-va-empty p { max-width: 460px; margin: 0 auto 24px; color: #706d7f; }
.rv-terms-page { background: #f8f8fa; }
.rv-terms-hero {
	position: relative;
	overflow: hidden;
	padding: 64px 0 112px;
	background:
		linear-gradient(135deg, transparent 49.9%, #302c510d 50%, transparent 50.1%) 76% -330px / 760px 760px,
		#fff;
}
.rv-terms-breadcrumb {
	display: flex;
	gap: 8px;
	align-items: center;
	margin-bottom: 54px;
	color: #777389;
	font-size: 14px;
}
.rv-terms-breadcrumb a {
	color: var(--rv-violet);
	font-weight: 600;
	text-decoration: none;
}
.rv-terms-breadcrumb i { font-size: 13px; }
.rv-terms-heading { max-width: 800px; }
.rv-terms-heading h1 {
	margin: 0 0 22px;
	color: var(--rv-violet);
	font-size: clamp(42px, 5vw, 64px);
	font-weight: 700;
	line-height: 1.15;
	letter-spacing: -.04em;
}
.rv-terms-heading p {
	max-width: 720px;
	margin: 0;
	color: #514e60;
	font-size: 19px;
	line-height: 1.65;
}
.rv-terms-section { position: relative; z-index: 2; padding: 0 0 100px; }
.rv-terms-card {
	max-width: 980px;
	margin: -48px auto 0;
	padding: 56px 64px;
	border: 1px solid #e5e4eb;
	border-radius: 24px;
	background: #fff;
	box-shadow: 0 16px 45px #302c510d;
}
.rv-terms-content {
	color: #4c495a;
	font-size: 17px;
	line-height: 1.8;
}
.rv-terms-content > :first-child { margin-top: 0; }
.rv-terms-content > :last-child { margin-bottom: 0; }
.rv-terms-content h1,
.rv-terms-content h2,
.rv-terms-content h3,
.rv-terms-content h4 {
	margin: 42px 0 14px;
	color: var(--rv-violet);
	font-weight: 700;
	line-height: 1.35;
}
.rv-terms-content h1 { font-size: 30px; }
.rv-terms-content h2 { font-size: 25px; }
.rv-terms-content h3 { font-size: 21px; }
.rv-terms-content h4 { font-size: 18px; }
.rv-terms-content p { margin-bottom: 20px; }
.rv-terms-content ul,
.rv-terms-content ol {
	margin: 0 0 24px;
	padding-left: 24px;
}
.rv-terms-content li { margin-bottom: 10px; padding-left: 5px; }
.rv-terms-content a {
	color: #e85f3d;
	font-weight: 600;
	text-decoration: underline;
	text-underline-offset: 3px;
}
.rv-terms-content strong { color: #2f2c41; }
.rv-terms-content table {
	display: block;
	width: 100%;
	margin: 28px 0;
	overflow-x: auto;
	border-collapse: collapse;
}
.rv-terms-content th,
.rv-terms-content td { padding: 12px 14px; border: 1px solid #e2e1e8; text-align: left; }
.rv-terms-content th { background: #f4f2fa; color: var(--rv-violet); }
.rv-login-page {
	position: relative;
	min-height: 100vh;
	padding-top: 0;
	background-color: #fff;
	background-image:
		linear-gradient(45deg, transparent 49.94%, #302c5117 50%, transparent 50.06%),
		linear-gradient(135deg, transparent 49.94%, #302c5117 50%, transparent 50.06%);
	background-position: -220px 410px, 520px -400px;
	background-size: 1100px 1100px;
}
.rv-login-page::before,
.rv-login-page::after {
	position: fixed;
	z-index: 0;
	background: #302c5117;
	content: '';
	pointer-events: none;
}
.rv-login-page::before { top: 0; bottom: 0; left: 8.5vw; width: 1px; }
.rv-login-page::after { top: 31%; right: 0; left: 0; height: 1px; }
.rv-login-main {
	position: relative;
	z-index: 1;
	display: grid;
	min-height: 100vh;
	place-items: center;
	padding: 56px 24px;
}
.rv-login-card {
	width: min(100%, 510px);
	padding: 34px 32px 32px;
	border-radius: 18px;
	background: #fff;
	box-shadow:
		0 18px 48px #302c5112,
		0 3px 12px #302c510a;
}
.rv-login-brand {
	display: inline-flex;
	margin-bottom: 28px;
}
.rv-login-brand img {
	display: block;
	width: 270px;
	height: auto;
}
.rv-login-heading h1 {
	margin: 0 0 14px;
	color: #15131d;
	font-size: 29px;
	font-weight: 700;
	line-height: 1.18;
	letter-spacing: -.025em;
}
.rv-login-heading p {
	margin: 0 0 30px;
	color: #9290a5;
	font-size: 17px;
	line-height: 1.5;
}
.rv-login-alert {
	margin-bottom: 20px;
	padding: 12px 14px;
	border-radius: 9px;
	font-size: 14px;
	line-height: 1.45;
}
.rv-login-alert-error { background: #fff0ef; color: #a5322e; }
.rv-login-alert-success { background: #e9f8ef; color: #197345; }
.rv-google-login {
	display: flex;
	min-height: 51px;
	align-items: center;
	justify-content: center;
	gap: 10px;
	border: 1.5px solid #4f4c5e;
	border-radius: 8px;
	background: #fff;
	color: #1f1d27;
	font-size: 17px;
	font-weight: 600;
	text-decoration: none !important;
	transition: background-color 150ms cubic-bezier(.2, 0, 0, 1), border-color 150ms cubic-bezier(.2, 0, 0, 1), transform 150ms cubic-bezier(.2, 0, 0, 1);
}
.rv-google-login:hover { border-color: var(--rv-violet); background: #f8f7fa; color: #1f1d27; }
.rv-google-login:active { transform: scale(.96); }
.rv-google-login img { width: 22px; height: 22px; object-fit: contain; }
.rv-login-divider {
	display: flex;
	align-items: center;
	gap: 15px;
	margin: 30px 0;
	color: #706d7f;
	font-size: 14px;
	white-space: nowrap;
}
.rv-login-divider::before,
.rv-login-divider::after {
	width: 100%;
	height: 1px;
	background: repeating-linear-gradient(90deg, #cac8d2 0 5px, transparent 5px 10px);
	content: '';
}
.rv-login-form { display: flex; flex-direction: column; }
.rv-login-field { margin-bottom: 20px; }
.rv-login-field label {
	display: block;
	margin-bottom: 8px;
	color: #25232d;
	font-size: 15px;
	font-weight: 500;
}
.rv-login-field input {
	width: 100%;
	height: 50px;
	padding: 0 14px;
	border: 1.5px solid #aaa8bb;
	border-radius: 7px;
	background: #fff;
	color: #1f1d27;
	font: 400 16px 'DM Sans', sans-serif;
	outline: none;
	transition: border-color 150ms cubic-bezier(.2, 0, 0, 1), box-shadow 150ms cubic-bezier(.2, 0, 0, 1);
}
.rv-login-field input::placeholder { color: #a09db2; }
.rv-login-field input:focus {
	border-color: var(--rv-violet);
	box-shadow: 0 0 0 3px #302c5117;
}
.rv-password-wrap { position: relative; }
.rv-password-wrap input { padding-right: 50px; }
.rv-password-toggle {
	position: absolute;
	top: 5px;
	right: 5px;
	display: grid;
	width: 40px;
	height: 40px;
	padding: 0;
	place-items: center;
	border: 0;
	background: transparent;
	color: #181720;
	cursor: pointer;
}
.rv-password-toggle svg {
	position: absolute;
	width: 23px;
	height: 23px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 2;
	transition: opacity 150ms cubic-bezier(.2, 0, 0, 1), transform 150ms cubic-bezier(.2, 0, 0, 1), filter 150ms cubic-bezier(.2, 0, 0, 1);
}
.rv-password-toggle .rv-eye-closed,
.rv-password-toggle[aria-pressed="true"] .rv-eye-open { opacity: 0; filter: blur(4px); transform: scale(.25); }
.rv-password-toggle[aria-pressed="true"] .rv-eye-closed { opacity: 1; filter: blur(0); transform: scale(1); }
.rv-forgot-password {
	align-self: flex-start;
	margin: -5px 0 30px;
	color: var(--rv-violet);
	font-size: 15px;
	font-weight: 500;
	text-decoration: underline;
	text-underline-offset: 3px;
}
.rv-login-submit {
	min-height: 58px;
	border: 0;
	border-radius: 8px;
	background: linear-gradient(81deg, #302c51 8.6%, #131220 112.9%);
	box-shadow: 0 4px 12px #13122029;
	color: #fff;
	font: 600 16px 'DM Sans', sans-serif;
	cursor: pointer;
	transition: transform 150ms cubic-bezier(.2, 0, 0, 1), box-shadow 150ms cubic-bezier(.2, 0, 0, 1), opacity 150ms cubic-bezier(.2, 0, 0, 1);
}
.rv-login-submit:not(:disabled):hover { box-shadow: 0 8px 20px #13122030; }
.rv-login-submit:not(:disabled):active { transform: scale(.96); }
.rv-login-submit:disabled {
	background: #f1f1f4;
	box-shadow: none;
	color: #d0ced7;
	cursor: not-allowed;
}
.rv-google-login:focus-visible,
.rv-password-toggle:focus-visible,
.rv-forgot-password:focus-visible,
.rv-login-submit:focus-visible {
	outline: 3px solid #ff68464d;
	outline-offset: 3px;
}
@media (max-width: 600px) {
	.rv-login-main { align-items: start; padding: 28px 16px; }
	.rv-login-card { padding: 28px 22px; border-radius: 14px; }
	.rv-login-brand { margin-bottom: 24px; }
	.rv-login-brand img { width: 225px; }
	.rv-login-heading h1 { font-size: 25px; }
	.rv-login-heading p { margin-bottom: 25px; font-size: 15px; }
}
@media (max-width: 768px) {
	.rv-terms-hero { padding: 40px 0 88px; }
	.rv-terms-breadcrumb { margin-bottom: 38px; }
	.rv-terms-heading p { font-size: 17px; }
	.rv-terms-section { padding-bottom: 64px; }
	.rv-terms-card { margin-top: -36px; padding: 34px 22px; border-radius: 18px; }
	.rv-terms-content { font-size: 16px; line-height: 1.75; }
	.rv-terms-content h1,
	.rv-terms-content h2,
	.rv-terms-content h3,
	.rv-terms-content h4 { margin-top: 34px; }
}
@media (max-width: 768px) {
	.rv-va-main { padding: 40px 0 60px; }
	.rv-va-card { padding: 26px 20px; }
	.rv-va-number strong { font-size: 22px; }
}
@media (max-width: 768px) {
	.rv-qris-main { padding: 40px 0 60px; }
	.rv-qris-heading { flex-direction: column; gap: 16px; margin-bottom: 26px; }
	.rv-qris-grid { grid-template-columns: 1fr; }
	.rv-qris-card { padding: 21px; }
}
@media (max-width: 768px) {
	.rv-inner-page .about-area,
	.rv-inner-page .donations-area,
	.rv-inner-page .gallery-area,
	.rv-contact-page .contact-area {
		padding: 60px 0 !important;
	}
	.rv-donations-page .donations-area:before,
	.rv-contact-page #contactForm h2,
	.rv-inner-page .about-span {
		font-size: 36px;
	}
	.rv-payment-page .gallery-area form {
		padding: 22px;
	}
	.rv-inner-page .about-area img {
		min-height: 360px;
	}
}
.revamp-page {
	padding-top: 78px;
}
.rv-header {
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
}
@media (max-width: 600px) {
	.revamp-page {
		padding-top: 68px;
	}
}
.rv-donations-page .rv-donation-grid {
	row-gap: 32px;
}
.rv-donations-page .rv-donation-grid > [class*="col-"] {
	display: flex;
}
.rv-donations-page .rv-donation-grid .donation-item {
	width: 100%;
	margin: 0 !important;
	transform: none !important;
	transition: none !important;
}
.rv-donations-page .rv-donation-grid .donation-item:hover {
	transform: none !important;
	box-shadow: none !important;
}
.rv-donations-page .rv-donation-grid .donation-item:hover .img img {
	transform: none !important;
}
.rv-load-more-wrap {
	justify-content: center;
	margin-top: 20px;
}
.rv-load-more {
	min-width: 190px;
	min-height: 54px;
	padding: 14px 26px;
	border: 1px solid #ccc;
	border-radius: 8px;
	background: #fff;
	color: var(--rv-violet);
	font:
		600 16px "DM Sans",
		sans-serif;
	cursor: pointer;
}
.rv-load-more:hover {
	border-color: var(--rv-violet);
	background: #f7f7f7;
}
.rv-load-more:disabled {
	cursor: wait;
	opacity: 0.65;
}
.rv-donations-page #list_isi > div[align="center"] {
	display: flex;
	flex: 0 0 100%;
	max-width: 100%;
	justify-content: center;
	margin-top: 20px;
}
.rv-donations-page #list_isi > div[align="center"] .common-btn {
	min-width: 190px;
	max-width: 190px;
	min-height: 54px;
	padding: 14px 26px !important;
	border: 1px solid #ccc !important;
	border-radius: 8px !important;
	background: #fff !important;
	box-shadow: none !important;
	color: var(--rv-violet) !important;
	text-align: center;
}
.rv-donations-page #list_isi > div[align="center"] .common-btn:hover {
	border-color: var(--rv-violet) !important;
	background: #f7f7f7 !important;
	transform: none !important;
}
.rv-donations-page .donation-item,
.rv-donations-page .donation-item * {
	transition: none !important;
}
.rv-donations-page .donation-item:hover h3,
.rv-donations-page .donation-item:hover h3 a,
.rv-donations-page .donation-item h3 a:hover,
.rv-donations-page .donation-item:hover p,
.rv-donations-page .donation-item:hover li,
.rv-donations-page .donation-item:hover h4,
.rv-donations-page .donation-item:hover h4 span {
	color: var(--rv-ink) !important;
}
.rv-donations-page .donation-item:hover .common-btn,
.rv-donations-page .donation-item .common-btn:hover {
	color: #fff !important;
	transform: none !important;
}
.rv-hero {
	background: #fff;
}
.rv-hero-slide {
	min-height: 850px;
	padding: 0;
}
.rv-hero-grid {
	grid-template-columns: 47% 53%;
	gap: 0;
	min-height: 850px;
}
.rv-hero-copy {
	padding: 72px 56px 42px 0;
}
.rv-hero-copy h1 {
	max-width: 670px;
	margin-bottom: 42px;
	font-size: clamp(56px, 4.45vw, 74px);
	line-height: 1.45;
	letter-spacing: -0.035em;
}
.rv-hero-copy p {
	max-width: 650px;
	margin-bottom: 40px;
	font-size: 24px;
	line-height: 1.5;
}
.rv-hero-copy .rv-text-link {
	color: #ff6846;
	font-size: 20px;
}
.rv-hero-copy .rv-btn {
	min-width: 280px;
	font-size: 20px;
}
.rv-hero-partners {
	display: flex;
	align-items: center;
	gap: 34px;
	margin-top: 95px;
	color: #8b89a0;
	font-size: 17px;
	font-weight: 600;
	line-height: 1.25;
}
.rv-hero-partners img {
	width: auto;
	height: 52px;
	max-width: 125px;
	object-fit: contain;
}
.rv-hero-media {
	width: calc(100% + max(24px, (100vw - 1240px) / 2));
	height: 850px;
	overflow: hidden;
}
.rv-hero-media img {
	border-radius: 50% 0 0 50% / 48% 0 0 48%;
	outline: 0;
}
.rv-hero-media i {
	z-index: 2;
	right: 28px;
	bottom: auto;
	top: 330px;
	width: 74px;
	height: 74px;
	background: #49328f;
}
.rv-hero-media i + i {
	left: -62px;
	top: 125px;
	width: 145px;
	height: 145px;
	background: #068c70;
}
.rv-hero-media b {
	position: absolute;
	z-index: 2;
	left: 80px;
	bottom: -165px;
	width: 360px;
	height: 360px;
	border: 78px solid #ff734f;
	border-radius: 50%;
}
.rv-hero-controls {
	position: absolute;
	bottom: 24px;
	left: max(24px, calc((100vw - 1240px) / 2));
	width: auto;
	margin: 0;
	padding: 0;
}
.rv-hero-controls span {
	font-weight: 600;
}
@media (max-width: 900px) {
	.rv-hero-slide {
		min-height: auto;
		padding: 55px 0 90px;
	}
	.rv-hero-grid {
		grid-template-columns: 1fr;
		min-height: auto;
		gap: 45px;
	}
	.rv-hero-copy {
		padding: 0;
	}
	.rv-hero-copy h1 {
		font-size: 52px;
		line-height: 1.2;
		margin-bottom: 25px;
	}
	.rv-hero-copy p {
		font-size: 19px;
		margin-bottom: 28px;
	}
	.rv-hero-partners {
		margin-top: 45px;
	}
	.rv-hero-media {
		width: 100%;
		height: 520px;
	}
	.rv-hero-media img {
		border-radius: 48% 48% 22% 48%;
	}
	.rv-hero-media i + i {
		left: -18px;
		top: 55px;
		width: 85px;
		height: 85px;
	}
	.rv-hero-media b {
		left: 35%;
		bottom: -185px;
	}
	.rv-hero-controls {
		position: static;
		width: min(1240px, calc(100% - 48px));
		margin: -65px auto 0;
		padding-bottom: 32px;
	}
}
@media (max-width: 600px) {
	.rv-hero-copy h1 {
		font-size: 43px;
	}
	.rv-hero-copy p {
		font-size: 17px;
	}
	.rv-hero-copy .rv-btn {
		min-width: 0;
		font-size: 16px;
	}
	.rv-hero-partners {
		gap: 18px;
		margin-top: 34px;
		font-size: 13px;
	}
	.rv-hero-partners img {
		height: 38px;
		max-width: 82px;
	}
	.rv-hero-media {
		height: 380px;
	}
	.rv-hero-media b {
		width: 240px;
		height: 240px;
		border-width: 52px;
		bottom: -125px;
	}
}
.rv-hero-media b:after {
	content: "";
	position: absolute;
	top: 70px;
	right: -90px;
	width: 58px;
	height: 58px;
	border-radius: 50%;
	background: #baf8e1;
}

/* Static homepage hero */
.rv-hero-static {
	min-height: 760px;
	overflow: hidden;
	background: #fff;
}
.rv-hero-static-content {
	position: relative;
	z-index: 3;
	min-height: 760px;
}
.rv-hero-static-copy {
	display: flex;
	width: 49%;
	min-height: 760px;
	flex-direction: column;
	justify-content: center;
	padding: 70px 42px 54px 0;
}
.rv-hero-static-copy h1 {
	max-width: 680px;
	margin: 0 0 42px;
	color: var(--rv-violet);
	font-size: clamp(52px, 4vw, 74px);
	font-weight: 700;
	line-height: 1.48;
	letter-spacing: -0.035em;
}
.rv-hero-static-copy > p {
	max-width: 650px;
	margin: 0 0 34px;
	color: #26242e;
	font-size: clamp(19px, 1.45vw, 27px);
	line-height: 1.58;
}
.rv-hero-static-actions {
	display: flex;
	align-items: center;
	gap: 38px;
}
.rv-hero-static-actions .rv-btn {
	min-width: 250px;
	gap: 18px;
	border-radius: 8px;
	font-size: 20px;
}
.rv-hero-static-actions .rv-btn span {
	font-size: 22px;
	line-height: 1;
}
.rv-hero-about-link {
	display: inline-flex;
	min-height: 48px;
	align-items: center;
	color: #ff6846 !important;
	font-size: 20px;
	font-weight: 600;
	text-decoration: none !important;
}
.rv-hero-static-media {
	position: absolute;
	z-index: 1;
	top: 0;
	right: 0;
	bottom: 0;
	width: 55%;
	overflow: hidden;
	border-radius: 52% 0 0 48% / 58% 0 0 42%;
}
.rv-hero-static-media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	outline: 1px solid #00000012;
}
.rv-hero-static .rv-hero-partners {
	display: flex;
	align-items: center;
	gap: 34px;
	margin-top: auto;
	padding-top: 58px;
	color: #8c89a2;
	font-size: 15px;
	font-weight: 600;
	line-height: 1.35;
}
.rv-hero-static .rv-hero-partners img {
	width: auto;
	height: 50px;
	max-width: 130px;
	object-fit: contain;
}
.rv-hero-shape {
	position: absolute;
	z-index: 4;
	display: block;
	pointer-events: none;
}
.rv-hero-shape-green {
	top: 30px;
	left: 46.3%;
	width: 150px;
	height: 150px;
	border-radius: 50%;
	background: #0c8a6c;
}
.rv-hero-shape-purple {
	top: 39%;
	right: 2.3%;
	width: 76px;
	height: 76px;
	border-radius: 50%;
	background: #48358f;
}
.rv-hero-shape-coral {
	right: 17%;
	bottom: -180px;
	width: 340px;
	height: 340px;
	border: 78px solid #ff754d;
	border-radius: 50%;
}
.rv-hero-shape-mint {
	right: 20.5%;
	bottom: 29px;
	width: 67px;
	height: 67px;
	border-radius: 50%;
	background: #b8f9e4;
}
@media (max-width: 900px) {
	.rv-hero-static {
		display: flex;
		min-height: auto;
		flex-direction: column;
	}
	.rv-hero-static-content {
		order: 1;
		min-height: auto;
	}
	.rv-hero-static-copy {
		width: 100%;
		min-height: auto;
		padding: 64px 0 48px;
	}
	.rv-hero-static-copy h1 {
		margin-bottom: 26px;
		font-size: 40px;
		line-height: 1.25;
	}
	.rv-hero-static-copy > p {
		max-width: 680px;
		font-size: 20px;
	}
	.rv-hero-static-media {
		position: relative;
		order: 2;
		width: 100%;
		height: 500px;
		border-radius: 0;
	}
	.rv-hero-static .rv-hero-partners {
		margin-top: 0;
		padding-top: 46px;
	}
	.rv-hero-shape-green {
		top: auto;
		bottom: 438px;
		left: auto;
		right: 7%;
		width: 92px;
		height: 92px;
	}
	.rv-hero-shape-coral {
		right: -80px;
		bottom: -130px;
	}
	.rv-hero-shape-mint {
		display: none;
	}
}
@media (max-width: 600px) {
	.rv-hero-static-copy {
		padding: 44px 0 38px;
	}
	.rv-hero-static-copy h1 {
		font-size: 38px;
	}
	.rv-hero-static-copy > p {
		margin-bottom: 24px;
		font-size: 17px;
	}
	.rv-hero-static-actions {
		align-items: flex-start;
		flex-direction: column;
		gap: 8px;
	}
	.rv-hero-static-actions .rv-btn {
		min-width: 220px;
		font-size: 17px;
	}
	.rv-hero-static-media {
		height: 390px;
	}
	.rv-hero-static .rv-hero-partners {
		flex-wrap: wrap;
		gap: 16px;
		padding-top: 32px;
		font-size: 12px;
	}
	.rv-hero-static .rv-hero-partners img {
		height: 38px;
		max-width: 86px;
	}
	.rv-hero-shape-green,
	.rv-hero-shape-purple {
		display: none;
	}
}

.rv-login[aria-current="page"] {
	color: #ff6846;
}

/* FAQ page */
.rv-faq-page { background: #fff; }
.rv-faq-hero { position: relative; padding: 104px 0 112px; overflow: hidden; background-color: #fff; background-image: linear-gradient(45deg, transparent 49.92%, #dedee5 50%, transparent 50.08%), linear-gradient(135deg, transparent 49.92%, #dedee5 50%, transparent 50.08%); background-size: 860px 860px; background-position: -180px -16px, 680px -420px; }
.rv-faq-page .rv-centered-heading { max-width: 900px; margin-bottom: 64px; }
.rv-faq-page .rv-centered-heading h1 { margin: 0 0 28px; color: var(--rv-violet); font-size: clamp(38px, 3.55vw, 60px); font-weight: 700; line-height: 1.25; letter-spacing: -.035em; }
.rv-faq-page .rv-centered-heading p { max-width: 760px; margin: 0 auto; color: #2b2934; font-size: 20px; line-height: 1.55; }
.rv-faq-list { max-width: 1220px; margin: 0 auto; }
.rv-faq-item { margin-bottom: 26px; padding: 30px 36px; border: 1px solid #dfe0ea; border-radius: 20px; background: #fff; box-shadow: 0 7px 15px #302c5112; }
.rv-faq-item[open] { border-color: var(--rv-violet); }
.rv-faq-item summary { display: flex; align-items: center; justify-content: space-between; gap: 24px; cursor: pointer; list-style: none; color: var(--rv-violet); font-size: 25px; font-weight: 700; line-height: 1.35; }
.rv-faq-item summary::-webkit-details-marker { display: none; }
.rv-faq-item summary i { position: relative; width: 26px; height: 26px; flex: 0 0 26px; }
.rv-faq-item summary i::before, .rv-faq-item summary i::after { position: absolute; top: 12px; left: 2px; width: 22px; height: 2px; background: currentColor; content: ''; }
.rv-faq-item summary i::after { transform: rotate(90deg); }
.rv-faq-item[open] summary i::after { transform: rotate(0); }
.rv-faq-answer { padding-top: 24px; color: #2d2b36; font-size: 19px; line-height: 1.7; }
.rv-faq-answer p:last-child { margin-bottom: 0; }
@media (max-width: 768px) { .rv-faq-hero { padding: 72px 0; background-size: 620px 620px; } .rv-faq-page .rv-centered-heading { margin-bottom: 44px; } .rv-faq-page .rv-centered-heading p { font-size: 17px; } .rv-faq-item { margin-bottom: 16px; padding: 23px 20px; border-radius: 14px; } .rv-faq-item summary { font-size: 19px; } .rv-faq-answer { padding-top: 18px; font-size: 16px; } }

/* About page */
.rv-about-page { background: #fff; }
.rv-about-hero { position:relative; min-height:760px; overflow:hidden; }
.rv-about-hero-grid { min-height:760px; }
.rv-about-hero-copy { position:relative; z-index:2; display:flex; width:49%; min-height:760px; flex-direction:column; justify-content:center; padding:70px 56px 54px 0; }
.rv-about-hero-copy h1 { margin-bottom: 25px; color: var(--rv-violet); font-size: clamp(48px, 4.25vw, 68px); line-height: 1.15; letter-spacing: -.04em; }
.rv-about-hero-copy p { max-width: 510px; margin-bottom: 32px; color: #3e3b4c; font-size: 18px; line-height: 1.65; }
.rv-about-hero-copy .rv-btn { min-width: 190px; }
.rv-about-hero-media { position:absolute; z-index:1; top:0; right:0; bottom:0; width:55%; min-height:760px; overflow:hidden; border-radius:52% 0 0 48% / 58% 0 0 42%; }
.rv-about-hero-media > img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; object-position:center; outline:1px solid #0000001a; }
.rv-about-dot, .rv-about-ring { position: absolute; z-index: 2; display: block; border-radius: 50%; }
.rv-about-dot-green { top: 126px; left: -44px; width: 112px; height: 112px; background: #078a6f; }
.rv-about-dot-purple { top: 330px; right: 36px; width: 68px; height: 68px; background: #49328f; }
.rv-about-ring { bottom: -150px; left: 90px; width: 330px; height: 330px; border: 72px solid #ff734f; }
.rv-about-statement { padding: 68px 0; background: #fcfcfc; text-align: center; }
.rv-about-statement h2 { margin: 0; color: #131220; font-size: clamp(30px, 3.25vw, 48px); font-weight: 400; line-height: 1.45; letter-spacing: -.025em; }
.rv-about-statement h2 strong { color: #ff6846; font-weight: 600; }
.rv-about-statement p { margin: 5px 0 0; color: #777389; font-size: 22px; }
.rv-about-section { padding: 82px 0; }
.rv-about-centered-title { margin-bottom: 50px; text-align: center; }
.rv-about-centered-title h2, .rv-about-section-intro h2, .rv-about-copy h2 { margin: 0; color: var(--rv-violet); font-size: clamp(36px, 3.2vw, 48px); line-height: 1.3; letter-spacing: -.035em; }
.rv-about-pillar-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.rv-about-pillar { display: flex; min-height: 415px; flex-direction: column; overflow: hidden; border-radius: 20px; }
.rv-about-pillar > div { min-height: 178px; padding: 27px 25px 22px; }
.rv-about-pillar h3 { margin-bottom: 10px; font-size: 24px; }
.rv-about-pillar p { margin: 0; color: #312f3b; font-size: 15px; line-height: 1.55; }
.rv-about-pillar img { width: 100%; height: 237px; margin-top: auto; object-fit: cover; outline: 1px solid #0000001a; }
.rv-about-mint { background: var(--rv-mint); }
.rv-about-coral { background: var(--rv-coral); }
.rv-about-lilac { background: var(--rv-lilac); }
.rv-about-management { background: #fff; }
.rv-about-split { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.rv-about-feature-image { display: block; width: 100%; height: 610px; border-radius: 30px; object-fit: cover; outline: 1px solid #0000001a; }
.rv-about-copy > p { max-width: 540px; margin: 24px 0 32px; color: #383643; font-size: 18px; line-height: 1.7; }
.rv-about-program-list { display: flex; flex-direction: column; }
.rv-about-program-list span { min-height: 62px; padding: 19px 20px; border-left: 3px solid transparent; color: #191823; font-size: 18px; font-weight: 600; }
.rv-about-program-list span:first-child { border-color: var(--rv-violet); background: #f8f7ff; }
.rv-about-vision { background: #fcfcfc; }
.rv-about-section-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; margin-bottom: 50px; }
.rv-about-section-intro p { margin: 0; color: #292733; font-size: 20px; line-height: 1.6; }
.rv-about-vision-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.rv-about-vision-card { min-height: 315px; padding: 24px; border-radius: 30px; }
.rv-about-vision-card > div { height: 100%; min-height: 267px; padding: 28px; border-radius: 18px; background: #fcfcfc; }
.rv-about-vision-card h3 { margin-bottom: 14px; font-size: 30px; }
.rv-about-vision-card p { margin: 0; font-size: 20px; line-height: 1.65; }
.rv-about-value-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 34px 42px; margin-top: 35px; }
.rv-about-value-grid span { display: flex; align-items: center; gap: 12px; color: var(--rv-violet); font-size: 18px; }
.rv-about-value-grid img { width: 48px; height: 48px; padding: 8px; border-radius: 12px; background: #ebe9ff; object-fit: contain; }
.rv-about-cta { padding-top: 72px; }
.rv-about-cta-card { display: flex; min-height: 520px; flex-direction: column; align-items: center; justify-content: center; overflow: hidden; border-radius: 32px; background: linear-gradient(#0008, #0008), url('../img/revamp/about-vision-texture.png') center 42% / cover; text-align: center; }
.rv-about-cta-card h2 { margin-bottom: 22px; color: #fff; font-size: clamp(38px, 4vw, 58px); line-height: 1.35; }
@media (max-width: 900px) {
  .rv-about-hero { min-height:auto; }
  .rv-about-hero-grid { min-height:auto; }
  .rv-about-hero-copy { padding: 66px 0 44px; }
  .rv-about-hero-copy { width:100%; min-height:auto; }
  .rv-about-hero-media { position:relative; width:100vw; min-height:560px; margin-left:calc(50% - 50vw); border-radius:0; }
  .rv-about-dot-green { left: -20px; }
  .rv-about-pillar-grid { grid-template-columns: 1fr; }
  .rv-about-pillar { min-height: 0; }
  .rv-about-pillar img { height: 320px; }
  .rv-about-split { grid-template-columns: 1fr; gap: 42px; }
  .rv-about-split-reverse .rv-about-copy { order: 1; }
  .rv-about-split-reverse .rv-about-feature-image { order: 2; }
  .rv-about-feature-image { height: 520px; }
}
@media (max-width: 600px) {
  .rv-about-hero-copy h1 { font-size: 42px; }
  .rv-about-hero-media { min-height: 420px; }
  .rv-about-dot-green { top: 70px; width: 74px; height: 74px; }
  .rv-about-dot-purple { top: 220px; right: 14px; width: 48px; height: 48px; }
  .rv-about-ring { bottom: -100px; left: 70px; width: 220px; height: 220px; border-width: 48px; }
  .rv-about-statement, .rv-about-section { padding: 60px 0; }
  .rv-about-statement p { font-size: 17px; }
  .rv-about-pillar img { height: 230px; }
  .rv-about-section-intro, .rv-about-vision-grid { grid-template-columns: 1fr; gap: 24px; }
  .rv-about-feature-image { height: 390px; border-radius: 22px; }
  .rv-about-vision-card { min-height: 0; padding: 16px; border-radius: 22px; }
  .rv-about-vision-card > div { min-height: 0; padding: 22px; border-radius: 12px; }
  .rv-about-vision-card p { font-size: 17px; }
  .rv-about-value-grid { grid-template-columns: 1fr; gap: 18px; }
  .rv-about-cta-card { min-height: 420px; border-radius: 22px; }
}

/* Program listing and filters */
.rv-program-list-hero { display:grid; min-height:440px; place-items:center; background-color:#fff; background-image:linear-gradient(45deg,transparent 49.93%,#e3e3e8 50%,transparent 50.07%),linear-gradient(135deg,transparent 49.93%,#e3e3e8 50%,transparent 50.07%); background-position:-380px -250px,680px -420px; background-size:900px 900px; }
.rv-program-list-heading { max-width:700px; margin-inline:auto; text-align:center; }
.rv-program-list-heading h1 { margin:0 0 22px; color:var(--rv-violet); font-size:clamp(38px,4vw,58px); line-height:1.2; letter-spacing:-.035em; }
.rv-program-list-heading p { max-width:620px; margin:0 auto 42px; font-size:17px; line-height:1.55; }
.rv-program-list-partners { display:flex; align-items:center; justify-content:center; gap:30px; color:#8c89a2; font-size:12px; font-weight:500; line-height:1.25; text-align:left; }
.rv-program-list-partners strong { color:#17406a; font-size:17px; line-height:.8; }
.rv-program-list-partners i { width:32px; height:42px; background:url('../img/revamp/about-value-sustainable.svg') center/contain no-repeat; }
.rv-program-list-section { padding:76px 0 110px; }
.rv-program-list-toolbar { display:flex; align-items:center; justify-content:space-between; gap:30px; margin-bottom:52px; }
.rv-program-search { position:relative; width:min(440px,100%); }
.rv-program-search > span { position:absolute; top:50%; left:18px; width:13px; height:13px; border:1.5px solid #777483; border-radius:50%; transform:translateY(-55%); }
.rv-program-search > span::after { position:absolute; right:-5px; bottom:-3px; width:6px; height:1.5px; background:#777483; content:''; transform:rotate(45deg); }
.rv-program-search input[type="search"] { width:100%; height:52px; padding:0 18px 0 46px; border:0; border-radius:8px; background:#f3f3f5; color:var(--rv-ink); font:400 15px 'DM Sans',sans-serif; }
.rv-filter-trigger { display:inline-flex; min-height:52px; align-items:center; gap:12px; padding:0 18px; border:1px solid #d3d2da; border-radius:8px; background:#fff; color:var(--rv-ink); font:500 15px 'DM Sans',sans-serif; cursor:pointer; transition:border-color 150ms cubic-bezier(.2,0,0,1),background-color 150ms cubic-bezier(.2,0,0,1),transform 150ms cubic-bezier(.2,0,0,1); }
.rv-filter-trigger:hover { border-color:var(--rv-violet); background:#f8f8fa; }
.rv-filter-trigger:active { transform:scale(.96); }
.rv-filter-trigger > span { display:grid; width:22px; gap:4px; }
.rv-filter-trigger i { position:relative; display:block; height:1.5px; background:currentColor; }
.rv-filter-trigger i::after { position:absolute; top:-2px; width:5px; height:5px; border:1.5px solid currentColor; border-radius:50%; background:#fff; content:''; }
.rv-filter-trigger i:nth-child(1)::after,.rv-filter-trigger i:nth-child(3)::after { left:4px; }
.rv-filter-trigger i:nth-child(2)::after { right:4px; }
.rv-active-filters { display:flex; flex-wrap:wrap; align-items:center; gap:10px; margin:-28px 0 32px; }
.rv-active-filters span { padding:8px 12px; border-radius:999px; background:#eeeafc; color:var(--rv-violet); font-size:13px; font-weight:600; }
.rv-active-filters a { min-height:36px; padding:8px; color:#69657d; font-size:13px; }
.rv-program-list-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:32px; }
.rv-list-program-card { min-width:0; }
.rv-list-program-image { position:relative; display:block; height:278px; overflow:hidden; border-radius:20px 20px 0 0; }
.rv-list-program-image img { display:block; width:100%; height:100%; object-fit:cover; outline:1px solid #0000001a; }
.rv-list-program-image > span { position:absolute; top:24px; left:24px; padding:8px 12px; border-radius:10px; background:#fff; color:#050408; font-size:12px; font-weight:500; }
.rv-list-program-image > span.is-ended { background:#eee; color:#777; }
.rv-list-program-body { position:relative; display:flex; min-height:244px; margin-top:-28px; padding:24px; border-radius:20px; flex-direction:column; gap:16px; }
.rv-card-lilac .rv-list-program-body { background:#cfc3ff; }
.rv-card-mint .rv-list-program-body { background:#c6ffeb; }
.rv-card-coral .rv-list-program-body { background:#ffd0c2; }
.rv-card-neutral .rv-list-program-body { background:#e5ebf2; }
.rv-list-program-body h2 { margin:0 0 6px; font-size:20px; line-height:1.35; letter-spacing:-.02em; }
.rv-list-program-body p { margin:0; font-size:12px; line-height:1.5; }
.rv-list-program-body p i { display:inline-block; width:4px; height:4px; margin:0 4px 2px; border-radius:50%; background:currentColor; }
.rv-list-program-funding { display:flex; align-items:baseline; gap:8px; margin-top:auto; padding:16px 0; overflow:hidden; border-top:1px solid #05040833; border-bottom:1px solid #05040833; white-space:nowrap; }
.rv-list-program-funding strong { font-size:16px; font-weight:600; }
.rv-list-program-funding span { overflow:hidden; font-size:13px; text-overflow:ellipsis; }
.rv-list-program-detail { display:flex; min-height:50px; align-items:center; justify-content:center; border-radius:8px; background:var(--rv-violet); color:#fff!important; font-size:14px; font-weight:600; text-decoration:none!important; transition:transform 150ms cubic-bezier(.2,0,0,1); }
.rv-card-mint .rv-list-program-detail { background:#077e60; }
.rv-card-coral .rv-list-program-detail { background:#f9764e; }
.rv-card-neutral .rv-list-program-detail { background:#526174; }
.rv-list-program-detail:active { transform:scale(.96); }
.rv-program-load-more { display:flex; min-height:56px; align-items:center; gap:12px; margin:48px auto 0; padding:12px 18px; border:0; border-radius:10px; background:#fff; box-shadow:0 4px 10px #00000017; color:var(--rv-violet); font:600 16px 'DM Sans',sans-serif; cursor:pointer; transition:box-shadow 150ms cubic-bezier(.2,0,0,1),transform 150ms cubic-bezier(.2,0,0,1); }
.rv-program-load-more:hover { box-shadow:0 8px 18px #0000001f; }
.rv-program-load-more:active { transform:scale(.96); }
.rv-program-load-more:disabled { opacity:.6; cursor:wait; }
.rv-program-empty { padding:70px 20px; color:var(--rv-muted); text-align:center; }
.rv-filter-backdrop { position:fixed; z-index:1990; inset:0; background:#05040870; }
.rv-filter-drawer { position:fixed; z-index:2000; top:0; bottom:0; left:0; width:min(420px,90vw); padding:46px 36px; overflow-y:auto; background:#fff; box-shadow:14px 0 32px #1312201f; transform:translateX(0); transition:transform 150ms cubic-bezier(.2,0,0,1); }
.rv-filter-drawer[aria-hidden="true"] { visibility:hidden; transform:translateX(-100%); }
.rv-filter-heading { display:flex; align-items:center; justify-content:space-between; margin-bottom:38px; }
.rv-filter-heading h2 { margin:0; color:var(--rv-violet); font-size:22px; }
.rv-filter-close { display:grid; width:44px; height:44px; place-items:center; padding:0; border:0; background:transparent; color:var(--rv-ink); font-size:27px; cursor:pointer; }
.rv-filter-drawer form > label { display:block; margin-bottom:24px; color:#8a8799; font-size:14px; }
.rv-filter-drawer select { width:100%; height:48px; margin-top:10px; padding:0 42px 0 13px; border:1px solid #aaa8ba; border-radius:6px; background:#fff; color:var(--rv-ink); font:400 14px 'DM Sans',sans-serif; }
.rv-filter-drawer fieldset { padding:0; border:0; margin:0; }
.rv-filter-drawer legend { margin-bottom:10px; color:#8a8799; font-size:14px; }
.rv-filter-status { display:grid; grid-template-columns:repeat(3,1fr); gap:8px; }
.rv-filter-status label { cursor:pointer; }
.rv-filter-status input { position:absolute; opacity:0; pointer-events:none; }
.rv-filter-status span { display:flex; min-height:46px; align-items:center; justify-content:center; padding:8px; border:1px solid #d6d5dc; border-radius:6px; color:#777483; font-size:13px; }
.rv-filter-status input:checked + span { border-color:var(--rv-violet); color:var(--rv-violet); }
.rv-filter-status input:focus-visible + span { outline:3px solid #ff68464d; outline-offset:2px; }
.rv-filter-actions { display:grid; grid-template-columns:1fr 1fr; gap:18px; margin-top:44px; }
.rv-filter-actions a,.rv-filter-actions button { display:flex; min-height:52px; align-items:center; justify-content:center; border:1px solid #d6d5dc; border-radius:7px; background:#fff; color:#777483; font:500 14px 'DM Sans',sans-serif; text-decoration:none!important; cursor:pointer; }
.rv-filter-actions button { border-color:var(--rv-violet); background:var(--rv-violet); color:#fff; }
.rv-filter-actions a:active,.rv-filter-actions button:active { transform:scale(.96); }
body.rv-filter-open { overflow:hidden; }
@media (max-width:900px) { .rv-program-list-grid { grid-template-columns:repeat(2,minmax(0,1fr)); } }
@media (max-width:600px) {
  .rv-program-list-hero { min-height:390px; padding:56px 0; }
  .rv-program-list-heading h1 { font-size:36px; }
  .rv-program-list-heading p { font-size:15px; }
  .rv-program-list-section { padding:48px 0 72px; }
  .rv-program-list-toolbar { align-items:stretch; margin-bottom:36px; }
  .rv-program-search { flex:1; }
  .rv-filter-trigger { padding-inline:14px; }
  .rv-program-list-grid { grid-template-columns:1fr; gap:24px; }
  .rv-list-program-image { height:250px; }
  .rv-filter-drawer { width:100%; padding:30px 22px; }
}
