/* =============================================================
   Mithila Volunteer — volunteer.css  v1.0.0
   Sections: intro · about · impact · roles · events · process · cta
   ============================================================= */

@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@600&display=swap');

/* ── Color tokens ─────────────────────────────────────────── */
.vol-page {
	--vol-brown:      #834d22;
	--vol-brown-dark: #6b3d1a;
	--vol-cream:      #fdf6e3;
	--vol-earth:      #1a0f08;
	--vol-muted:      #6b5240;
	--vol-border:     rgba(131,77,34,.15);
	--vol-shadow-sm:  0 4px 20px rgba(26,15,8,.10);
	--vol-shadow-lg:  0 12px 40px rgba(26,15,8,.16);
}

/* ── Reset ────────────────────────────────────────────────── */
.vol-page *,
.vol-page *::before,
.vol-page *::after { box-sizing: border-box; }
.vol-page img     { max-width: 100%; height: auto; display: block; }
.vol-page ul,
.vol-page ol      { list-style: none; margin: 0; padding: 0; }
.vol-page p       { margin-top: 0; }

.vol-page {
	width: 100%;
	font-family: var(--wdtFontTypo_Base, 'Roboto', sans-serif);
	color: var(--wdtBodyTxtColor, #202020);
	background: #fff;
}
.vol-page section { display: block; width: 100%; position: relative; }

/* ── Container ────────────────────────────────────────────── */
.vol-container {
	width: 100%;
	max-width: 1240px;
	margin-inline: auto;
	padding-inline: clamp(1.25rem, 4vw, 3rem);
}

/* ── Typography ───────────────────────────────────────────── */
.vol-h2 {
	font-family: var(--wdtFontTypo_Alt, 'Oswald', sans-serif);
	font-size: clamp(1.9rem, 3.8vw, 2.8rem);
	font-weight: 700;
	color: var(--wdtHeadAltColor, #202020);
	line-height: 1.2;
	margin: 0 0 1.1rem;
}
.vol-h2--center { text-align: center; }
.vol-h2--light  { color: #fff; }

.vol-script-kicker {
	display: block;
	font-family: 'Dancing Script', cursive;
	font-size: 1.5rem;
	font-weight: 600;
	color: #834d22;
	margin-bottom: .6rem;
	line-height: 1.3;
}
.vol-script-kicker--center { text-align: center; }
.vol-script-kicker--light  { color: rgba(255,255,255,.85); }

.vol-divider {
	width: 52px; height: 4px;
	background: #834d22;
	border-radius: 2px;
	margin-bottom: 1.5rem;
}
.vol-divider--center { margin-inline: auto; }
.vol-divider--light  { background: rgba(255,255,255,.55); }

/* ── Buttons ──────────────────────────────────────────────── */
.vol-btn {
	display: inline-flex;
	align-items: center;
	gap: .5rem;
	padding: .72rem 1.75rem;
	background: #834d22;
	color: #fff;
	border: 2px solid #834d22;
	border-radius: var(--wdtRadius_Part, 2.5em);
	font-size: .9375rem;
	font-weight: 600;
	font-family: var(--wdtFontTypo_Base, 'Roboto', sans-serif);
	text-decoration: none;
	transition: background .25s ease, border-color .25s ease;
	cursor: pointer;
	line-height: 1;
}
.vol-btn:hover {
	background: #6b3d1a;
	border-color: #6b3d1a;
	color: #fff;
}
.vol-btn--ghost {
	background: transparent;
	color: #834d22;
	border-color: #834d22;
}
.vol-btn--ghost:hover {
	background: #834d22;
	color: #fff;
}
.vol-btn--outline {
	background: transparent;
	color: #fff;
	border-color: rgba(255,255,255,.65);
}
.vol-btn--outline:hover {
	background: rgba(255,255,255,.15);
	border-color: #fff;
}
.vol-btn--cream {
	background: #fdf6e3;
	color: #834d22;
	border-color: #fdf6e3;
}
.vol-btn--cream:hover {
	background: #fff;
	border-color: #fff;
	color: #6b3d1a;
}

/* =============================================================
   1. PAGE INTRO — cream with pattern
   ============================================================= */
.vol-intro {
	background: var(--wdtTertiaryColor, #f8eae1);
	padding-block: clamp(4rem, 7vw, 6rem);
	overflow: hidden;
}
.vol-intro__pattern {
	position: absolute;
	inset: 0;
	background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg stroke='%23834d22' stroke-width='0.5' opacity='0.14'%3E%3Ccircle cx='30' cy='30' r='25'/%3E%3Ccircle cx='30' cy='30' r='15'/%3E%3Ccircle cx='30' cy='30' r='5'/%3E%3Cline x1='5' y1='30' x2='55' y2='30'/%3E%3Cline x1='30' y1='5' x2='30' y2='55'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
	background-size: 60px 60px;
	pointer-events: none;
	z-index: 0;
}
.vol-intro__inner {
	position: relative;
	z-index: 1;
	max-width: 820px;
	margin-inline: auto;
	text-align: center;
}
.vol-intro__lead {
	font-size: clamp(1rem, 2vw, 1.1rem);
	line-height: 1.85;
	color: var(--wdtBodyTxtColor, #202020);
	opacity: .82;
	margin: 0 auto 2rem;
}
.vol-intro__actions {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
	justify-content: center;
}

/* =============================================================
   2. ABOUT — image + text
   ============================================================= */
.vol-about {
	background: #fff;
	padding-block: clamp(4rem, 7vw, 6.5rem);
}
.vol-about__grid {
	display: grid;
	grid-template-columns: 1fr 1.2fr;
	gap: clamp(2.5rem, 6vw, 5rem);
	align-items: center;
}
.vol-about__figure img {
	width: 100%;
	aspect-ratio: 5/4;
	object-fit: cover;
	border-radius: var(--wdtRadius_3X, 10px);
	box-shadow: 0 8px 36px rgba(26,15,8,.14);
	outline: 6px solid #834d22;
	outline-offset: 8px;
}
.vol-about__body > p {
	font-size: 1rem;
	line-height: 1.82;
	color: var(--wdtBodyTxtColor, #202020);
	opacity: .82;
	margin-bottom: 1rem;
}
.vol-about__list {
	margin: 1rem 0 0;
	display: flex;
	flex-direction: column;
	gap: .6rem;
}
.vol-about__list li {
	display: flex;
	align-items: center;
	gap: .7rem;
	font-size: .9625rem;
	color: var(--wdtBodyTxtColor, #202020);
}
.vol-about__list li::before {
	content: '';
	flex-shrink: 0;
	width: 8px; height: 8px;
	border-radius: 50%;
	background: #834d22;
}
@media (max-width: 860px) {
	.vol-about__grid { grid-template-columns: 1fr; }
	.vol-about__figure img { outline: none; max-width: 480px; margin-inline: auto; }
}

/* =============================================================
   3. IMPACT — brown band
   ============================================================= */
.vol-impact {
	background: #834d22;
	padding-block: clamp(3rem, 6vw, 5rem);
	position: relative;
	overflow: hidden;
}
.vol-impact::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image: radial-gradient(rgba(255,255,255,.05) 1px, transparent 1px);
	background-size: 28px 28px;
	pointer-events: none;
}
.vol-impact__grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 2rem;
	text-align: center;
}
.vol-impact__num-row {
	display: flex;
	align-items: baseline;
	justify-content: center;
	gap: 2px;
	margin-bottom: .4rem;
}
.vol-impact__number {
	font-family: var(--wdtFontTypo_Alt, 'Oswald', sans-serif);
	font-size: clamp(2.8rem, 5vw, 4rem);
	font-weight: 700;
	color: #fdf6e3;
	line-height: 1;
}
.vol-impact__suffix {
	font-family: var(--wdtFontTypo_Alt, 'Oswald', sans-serif);
	font-size: clamp(1.8rem, 3vw, 2.6rem);
	font-weight: 700;
	color: #fdf6e3;
	line-height: 1;
}
.vol-impact__label {
	display: block;
	font-size: .9375rem;
	font-weight: 700;
	color: rgba(255,255,255,.9);
	text-transform: uppercase;
	letter-spacing: .07em;
}
.vol-impact__sub {
	display: block;
	font-size: .825rem;
	color: rgba(255,255,255,.5);
	margin-top: .3rem;
}
@media (max-width: 680px) {
	.vol-impact__grid { grid-template-columns: repeat(2, 1fr); }
}

/* =============================================================
   4. VOLUNTEER ROLES — 3-col on cream
   ============================================================= */
.vol-roles {
	background: var(--wdtTertiaryColor, #f8eae1);
	padding-block: clamp(4rem, 7vw, 6.5rem);
}
.vol-roles__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
	margin-top: clamp(2rem, 4vw, 3rem);
}
.vol-roles__card {
	background: #ffffff;
	border-radius: var(--wdtRadius_3X, 10px);
	padding: 1.75rem 1.75rem 2rem;
	box-shadow: 0 4px 20px rgba(26,15,8,.08);
	border: 1px solid rgba(131,77,34,.10);
	border-top: 4px solid transparent;
	transition: border-color .3s ease, transform .3s ease, box-shadow .3s ease;
}
.vol-roles__card:hover {
	border-top-color: #834d22;
	transform: translateY(-4px);
	box-shadow: 0 12px 32px rgba(26,15,8,.14);
}
.vol-roles__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 56px; height: 56px;
	background: rgba(131,77,34,.10);
	border: 2px solid rgba(131,77,34,.20);
	border-radius: 50%;
	color: #834d22;
	margin-bottom: 1.1rem;
}
.vol-roles__title {
	font-family: var(--wdtFontTypo_Alt, 'Oswald', sans-serif);
	font-size: 1.1rem;
	font-weight: 700;
	color: #1a0f08;
	margin: 0 0 .6rem;
}
.vol-roles__desc {
	font-size: .9375rem;
	line-height: 1.72;
	color: var(--wdtBodyTxtColor, #202020);
	opacity: .76;
	margin: 0;
}
@media (max-width: 860px) {
	.vol-roles__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
	.vol-roles__grid { grid-template-columns: 1fr; }
}

/* =============================================================
   5. UPCOMING EVENTS — white section
   ============================================================= */
.vol-events {
	background: #fff;
	padding-block: clamp(4rem, 7vw, 6.5rem);
}
.vol-events__intro {
	text-align: center;
	max-width: 68ch;
	margin-inline: auto;
	margin-bottom: 2.5rem;
	font-size: 1rem;
	line-height: 1.75;
	color: var(--wdtBodyTxtColor, #202020);
	opacity: .78;
}

/* Scope the shortcode list inside the events section */
.vol-events__list .mae-upcoming-vertical-list {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}
.vol-events__list .mae-upcoming-v-card {
	border-radius: var(--wdtRadius_3X, 10px);
	border: 1px solid rgba(131,77,34,.12);
	box-shadow: 0 4px 20px rgba(26,15,8,.08);
	overflow: hidden;
	transition: box-shadow .3s ease, transform .3s ease;
}
.vol-events__list .mae-upcoming-v-card:hover {
	box-shadow: 0 12px 36px rgba(26,15,8,.14);
	transform: translateY(-3px);
}
.vol-events__list .mae-upcoming-v-thumb-link {
	min-height: 180px;
}
.vol-events__list .mae-upcoming-v-title a {
	color: #1a0f08;
	font-family: var(--wdtFontTypo_Alt, 'Oswald', sans-serif);
}
.vol-events__list .mae-upcoming-v-title a:hover {
	color: #834d22;
}
.vol-events__list .mae-upcoming-v-price.free {
	background: rgba(131,77,34,.10);
	color: #834d22;
}
.vol-events__list .mae-upcoming-v-btn,
.vol-events__list button.mae-upcoming-v-btn {
	background: #834d22 !important;
	border-color: #834d22 !important;
	color: #fff !important;
	border-radius: var(--wdtRadius_Part, 2.5em) !important;
	font-weight: 600 !important;
	letter-spacing: .03em !important;
}
.vol-events__list .mae-upcoming-v-btn:hover,
.vol-events__list button.mae-upcoming-v-btn:hover {
	background: #6b3d1a !important;
	border-color: #6b3d1a !important;
}

.vol-events__footer {
	margin-top: 2.5rem;
	text-align: center;
}

/* No-events fallback */
.vol-events__list .mae-no-events {
	text-align: center;
	padding: 3rem 0;
	font-style: italic;
	color: rgba(26,15,8,.4);
}

/* =============================================================
   6. PROCESS — how to apply
   ============================================================= */
.vol-process {
	background: var(--wdtTertiaryColor, #f8eae1);
	padding-block: clamp(4rem, 7vw, 6.5rem);
}
.vol-process__inner {
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	gap: clamp(2.5rem, 6vw, 5rem);
	align-items: start;
}
.vol-process__steps {
	display: flex;
	flex-direction: column;
	gap: 0;
	margin-top: .5rem;
}
.vol-process__step {
	display: grid;
	grid-template-columns: 3.5rem 1fr;
	gap: 1rem;
	padding-bottom: 2rem;
	position: relative;
}
.vol-process__step:not(:last-child)::before {
	content: '';
	position: absolute;
	left: 1.6rem;
	top: 3rem;
	bottom: 0;
	width: 2px;
	background: linear-gradient(to bottom, #834d22, rgba(131,77,34,.12));
}
.vol-process__step:last-child { padding-bottom: 0; }
.vol-process__num {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 3.2rem; height: 3.2rem;
	background: #834d22;
	color: #fff;
	border-radius: 50%;
	font-family: var(--wdtFontTypo_Alt, 'Oswald', sans-serif);
	font-size: 1rem;
	font-weight: 700;
	flex-shrink: 0;
	position: relative;
	z-index: 1;
}
.vol-process__step-title {
	font-family: var(--wdtFontTypo_Alt, 'Oswald', sans-serif);
	font-size: 1.15rem;
	font-weight: 700;
	color: #1a0f08;
	margin: .4rem 0 .5rem;
}
.vol-process__step p {
	font-size: .9375rem;
	line-height: 1.75;
	color: var(--wdtBodyTxtColor, #202020);
	opacity: .78;
	margin: 0;
}

/* Perks highlight box */
.vol-process__highlight {
	position: sticky;
	top: 2rem;
}
.vol-process__highlight-inner {
	background: #834d22;
	border-radius: var(--wdtRadius_3X, 10px);
	padding: 2.25rem 2rem 2.5rem;
	box-shadow: 0 8px 36px rgba(26,15,8,.22);
}
.vol-process__highlight-kicker {
	font-family: 'Dancing Script', cursive;
	font-size: 1.35rem;
	font-weight: 600;
	color: rgba(255,255,255,.75);
	margin-bottom: 1.25rem;
}
.vol-process__perks {
	display: flex;
	flex-direction: column;
	gap: .85rem;
	margin-bottom: 2rem;
}
.vol-process__perks li {
	display: flex;
	align-items: center;
	gap: .75rem;
	font-size: .9625rem;
	color: rgba(255,255,255,.92);
}
.vol-process__perks li svg {
	flex-shrink: 0;
	color: #fdf6e3;
}
@media (max-width: 860px) {
	.vol-process__inner { grid-template-columns: 1fr; }
	.vol-process__highlight { position: static; }
}

/* =============================================================
   7. CTA BAND
   ============================================================= */
.vol-cta {
	position: relative;
	overflow: hidden;
	padding-block: clamp(5rem, 9vw, 8rem);
}
.vol-cta__bg {
	position: absolute; inset: 0;
	background-size: cover;
	background-position: center;
}
.vol-cta__overlay {
	position: absolute; inset: 0;
	background: linear-gradient(
		135deg,
		rgba(26,15,8,.94) 0%,
		rgba(90,50,20,.78) 60%,
		rgba(26,15,8,.90) 100%
	);
}
.vol-cta__inner {
	position: relative;
	z-index: 1;
	max-width: 820px;
	margin-inline: auto;
	text-align: center;
}
.vol-cta__sub {
	font-size: clamp(1rem, 2vw, 1.1rem);
	line-height: 1.8;
	color: rgba(255,255,255,.82);
	max-width: 68ch;
	margin: 0 auto 2.25rem;
}
.vol-cta__actions {
	display: flex;
	gap: 1rem;
	justify-content: center;
	flex-wrap: wrap;
}
