@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;0,700&display=swap');/*
 * KINEARA — Homepage Design CSS
 * ================================
 * Paste this into: SiteOrigin CSS plugin (Appearance → SiteOrigin CSS)
 * OR: Appearance → Customise → Additional CSS
 *
 * All rules are scoped to .page-id-16479 so they ONLY apply to the homepage
 * and cannot conflict with any other page on the site.
 *
 * Font: Montserrat (add this to your  or via a Google Fonts plugin)
 * @import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400;1,600&display=swap');
 *
 * SECTIONS IN THIS FILE:
 * 1.  Variables & base
 * 2.  Hero
 * 3.  Stats strip
 * 4.  Shared section styles
 * 5.  Testimonials
 * 6.  Donate CTA (mid-page)
 * 7.  Impact numbers
 * 8.  Events & workshops
 * 9.  Mediation spotlight
 * 10. News
 * 11. Newsletter
 * 12. Footer
 * 13. Animations
 */


/* ============================================================
   1. VARIABLES & BASE
   ============================================================ */

.page-id-16479 {
  --purple:       #512b66;
  --orange:       #f16728;
  --violet:       #8f2c8b;
  --purple-dark:  #341744;
  --purple-light: #f5eef9;
  --orange-light: #fef0e8;
  --white:        #ffffff;
  --off-white:    #faf8fc;
  --text:         #1a0a22;
  --text-mid:     #5a4566;
  --text-light:   #9a7daa;
  --border:       rgba(81,43,102,0.12);
}

.page-id-16479,
.page-id-16479 * {
  font-family: 'Montserrat', sans-serif;
  box-sizing: border-box;
}

/* ============================================================
   THEME OVERLAY FIX
   The theme adds a grey overlay to this page. These rules
   remove it and ensure the page background is clean white.
   ============================================================ */

/* Remove any pseudo-element overlays the theme adds */
.page-id-16479::before,
.page-id-16479::after,
.page-id-16479 .site::before,
.page-id-16479 .site::after,
.page-id-16479 .site-content::before,
.page-id-16479 .site-content::after,
.page-id-16479 .entry-content::before,
.page-id-16479 .entry-content::after {
  display: none !important;
  background: none !important;
}

/* Force clean white background on page body and main content areas */
.page-id-16479 body,
.page-id-16479,
.page-id-16479 .site,
.page-id-16479 .site-content,
.page-id-16479 #content,
.page-id-16479 .entry-content,
.page-id-16479 main {
  background: #ffffff !important;
}

/* Remove any rgba overlay divs the theme or page builder adds */
.page-id-16479 .panel-grid-cell > .so-panel::before,
.page-id-16479 .panel-row-style::before,
.page-id-16479 .panel-grid::before {
  display: none !important;
  background: none !important;
  opacity: 0 !important;
}



/* ============================================================
   2. HERO
   Full-bleed background image with frosted glass content box
   bottom-left. Set your client photo as the background image
   of the hero row in SiteOrigin Row Settings → Design → Background.
   ============================================================ */

.page-id-16479 .hero {
  position: relative;
  min-height: 92vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

/* Dark overlay — keeps text readable over any photo */
.page-id-16479 .hero-dim {
  position: absolute;
  inset: 0;
  background: transparent;
  z-index: 1;
}

/* Wrapper that positions content at bottom-left */
.page-id-16479 .hero-layout {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 56px 72px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  min-height: 92vh;
}

/* The frosted glass box */
.page-id-16479 .hero-content-box {
  background: rgba(52, 18, 70, 0.72);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 14px;
  padding: 22px 32px;
  max-width: 460px;
  width: 100%;
}

/* Small pill label above the headline */
.page-id-16479 .hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(241,103,40,0.18);
  border: 1px solid rgba(241,103,40,0.32);
  color: #f8a070;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 14px;
  width: fit-content;
}

.page-id-16479 .hero-eyebrow-dot {
  width: 5px;
  height: 5px;
  background: var(--orange);
  border-radius: 50%;
  display: inline-block;
}

/* Main headline */
.page-id-16479 .hero-h1 {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 700;
  color: white;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 12px;
}

.page-id-16479 .hero-h1 em {
  font-style: italic;
  color: var(--orange);
  font-weight: 600;
}

/* Subheading */
.page-id-16479 .hero-sub {
  font-size: 14px;
  color: rgba(255,255,255,0.72);
  line-height: 1.65;
  margin-bottom: 22px;
  font-weight: 300;
}

/* Button row */
.page-id-16479 .hero-actions {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

/* Primary orange donate button */
.page-id-16479 .btn-donate-hero {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: white;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  padding: 13px 26px;
  border-radius: 100px;
  transition: transform 0.2s, opacity 0.2s;
  box-shadow: 0 6px 24px rgba(241,103,40,0.35);
}

.page-id-16479 .btn-donate-hero:hover {
  transform: translateY(-2px);
  opacity: 0.92;
}

.page-id-16479 .btn-donate-hero svg {
  width: 14px;
  height: 14px;
  fill: white;
}

/* Ghost secondary button */
.page-id-16479 .btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 13px;
  font-weight: 400;
  padding: 13px 20px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.22);
  transition: border-color 0.2s, color 0.2s;
}

.page-id-16479 .btn-ghost:hover {
  border-color: rgba(255,255,255,0.5);
  color: white;
}




/* ============================================================
   3. STATS STRIP
   Full-width purple bar with 4 large numbers
   ============================================================ */

.page-id-16479 .stats-strip {
  background: var(--purple);
  padding: 44px 72px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.page-id-16479 .stat-item {
  text-align: center;
  padding: 0 20px;
  border-right: 1px solid rgba(255,255,255,0.1);
}

.page-id-16479 .stat-item:last-child {
  border-right: none;
}

.page-id-16479 .stat-number {
  font-size: 46px;
  font-weight: 700;
  color: white;
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -1px;
}

.page-id-16479 .stat-number sup {
  font-size: 26px;
  vertical-align: super;
}

.page-id-16479 .stat-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.45;
  font-weight: 300;
}


/* ============================================================
   4. SHARED SECTION STYLES
   Used across multiple sections below
   ============================================================ */

/* Orange uppercase label above headings */
.page-id-16479 .section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}

/* Main section heading */
.page-id-16479 .section-heading {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  color: var(--purple-dark);
  line-height: 1.15;
  letter-spacing: -0.8px;
  margin-bottom: 14px;
}

.page-id-16479 .section-body {
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.75;
  font-weight: 300;
}

/* Outlined purple button used in impact and other sections */
.page-id-16479 .btn-outline-purple {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--purple);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 100px;
  border: 2px solid var(--purple);
  transition: background 0.2s, color 0.2s;
}

.page-id-16479 .btn-outline-purple:hover {
  background: var(--purple);
  color: white;
}


/* ============================================================
   5. TESTIMONIALS
   White background section — contrasts with purple stats above
   and orange donate section below
   ============================================================ */

.page-id-16479 .testimonials-section {
  background: white;
  padding: 96px 72px;
  position: relative;
  overflow: hidden;
}

.page-id-16479 .testimonials-section::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(143,44,139,0.05) 0%, transparent 70%);
  pointer-events: none;
}

/* Header area */
.page-id-16479 .testimonials-header {
  margin-bottom: 48px;
}

.page-id-16479 .testimonials-header .section-heading {
  font-size: clamp(36px, 4vw, 52px);
  margin-bottom: 12px;
}

/* Row with subhead and "read all stories" link side by side */
.page-id-16479 .testimonials-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 8px;
}

.page-id-16479 .testimonials-subhead {
  font-size: 16px;
  color: var(--text-mid);
  font-weight: 300;
  line-height: 1.6;
  max-width: 480px;
}

.page-id-16479 .btn-stories {
  color: var(--text-light);
  text-decoration: none;
  font-size: 14px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 2px;
  transition: color 0.2s;
  white-space: nowrap;
}

.page-id-16479 .btn-stories:hover {
  color: var(--purple);
}

/* 3-column grid — first card is wider */
.page-id-16479 .testimonials-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 14px;
}

/* Default card — light grey background */
.page-id-16479 .testimonial-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: border-color 0.2s, transform 0.2s;
}

.page-id-16479 .testimonial-card:hover {
  border-color: var(--violet);
  transform: translateY(-3px);
}

/* Featured card — dark purple, stands out */
.page-id-16479 .testimonial-card.featured {
  background: var(--purple-dark);
  border-color: var(--purple-dark);
}

.page-id-16479 .testimonial-card.featured:hover {
  border-color: var(--violet);
}

/* Large opening quote mark */
.page-id-16479 .quote-mark {
  font-size: 52px;
  color: var(--violet);
  line-height: 0.6;
  opacity: 0.6;
  font-weight: 700;
}

.page-id-16479 .testimonial-card.featured .quote-mark {
  color: var(--orange);
}

/* Quote text */
.page-id-16479 .testimonial-text {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.7;
  font-weight: 300;
  flex: 1;
}

.page-id-16479 .testimonial-card.featured .testimonial-text {
  font-size: 17px;
  font-style: italic;
  font-weight: 400;
  color: rgba(255,255,255,0.9);
}

/* Person row at the bottom of each card */
.page-id-16479 .testimonial-person {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--border);
  padding-top: 18px;
}

.page-id-16479 .testimonial-card.featured .testimonial-person {
  border-top-color: rgba(255,255,255,0.1);
}

/* Initials avatar circle — set background colour inline per person */
.page-id-16479 .testimonial-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  color: white;
  flex-shrink: 0;
}

.page-id-16479 .testimonial-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}

.page-id-16479 .testimonial-card.featured .testimonial-name {
  color: white;
}

.page-id-16479 .testimonial-role {
  font-size: 11px;
  color: var(--text-light);
  margin-top: 2px;
}

.page-id-16479 .testimonial-card.featured .testimonial-role {
  color: rgba(255,255,255,0.4);
}


/* ============================================================
   6. DONATE CTA — MID-PAGE ASK
   Orange section with suggested amounts and main donate button.
   Sits right after testimonials while emotion is high.
   ============================================================ */

.page-id-16479 .donate-cta-section {
  background: var(--orange);
  padding: 80px 72px;
  position: relative;
  overflow: hidden;

}

.page-id-16479 .donate-cta-section::after {
  content: '';
  position: absolute;
  left: -80px;
  bottom: -80px;
  width: 300px;
  height: 300px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
  pointer-events: none;
}

/* Two-column layout: text left, amounts right */
.page-id-16479 .donate-cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.page-id-16479 .donate-cta-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-bottom: 14px;
}

.page-id-16479 .donate-cta-heading {
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 700;
  color: white;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 16px;
}

.page-id-16479 .donate-cta-body {
  font-size: 16px;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  font-weight: 300;
  max-width: 540px;
}

/* Right column — amount buttons stacked */
.page-id-16479 .donate-cta-right {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: centre;
  min-width: 220px;
}

.page-id-16479 .donate-amounts {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

/* Each suggested amount row */
.page-id-16479 .donate-amount-btn {
  background: rgba(255,255,255,0.12);
  border: 1.5px solid rgba(255,255,255,0.25);
  color: white;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  padding: 13px 20px;
  border-radius: 10px;
  text-align: left;
  transition: background 0.2s, border-color 0.2s;
  display: flex;
  justify-content: flex-start;
  align-items: center;
	gap: 10px;
}

.page-id-16479 .donate-amount-btn:hover {
  background: rgba(255,255,255,0.22);
  border-color: rgba(255,255,255,0.5);
}

.page-id-16479 .donate-amount-btn span {
  font-size: 12px;
  font-weight: 700;
  opacity: 1;
}

/* White "donate your own amount" button */
.page-id-16479 .btn-donate-full {
  display: block;
  width: 100%;
  text-align: center;
  background: white;
  color: var(--orange);
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  padding: 15px 28px;
  border-radius: 100px;
  transition: transform 0.2s;
}

.page-id-16479 .btn-donate-full:hover {
  transform: translateY(-2px);
}

.page-id-16479 .donate-cta-note {
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  text-align: center;
}


/* ============================================================
   7. IMPACT NUMBERS
   Off-white section with 4 horizontal blocks.
   First child and last child get rounded outer corners.
   Add class "highlight" to whichever block you want in purple.
   ============================================================ */

.page-id-16479 .impact-section {
  background: var(--off-white);
  padding: 96px 72px;
}

.page-id-16479 .impact-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
}

/* 4 blocks side-by-side with 2px gap */
.page-id-16479 .impact-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

.page-id-16479 .impact-block {
  background: white;
  padding: 38px 30px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color 0.25s, transform 0.25s;
}

.page-id-16479 .impact-block:first-child { border-radius: 16px 0 0 16px; }
.page-id-16479 .impact-block:last-child  { border-radius: 0 16px 16px 0; }

.page-id-16479 .impact-block:hover {
  border-color: var(--violet);
  transform: translateY(-4px);
  z-index: 1;
  position: relative;
}

/* Highlighted block — purple background */
.page-id-16479 .impact-block.highlight {
  background: var(--purple);
  border-color: var(--purple);
}

.page-id-16479 .impact-block.highlight:hover {
  border-color: var(--violet);
}

/* Small icon box */
.page-id-16479 .impact-icon {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-id-16479 .impact-block:not(.highlight) .impact-icon { background: var(--purple-light); }
.page-id-16479 .impact-block.highlight .impact-icon        { background: rgba(255,255,255,0.12); }

.page-id-16479 .impact-icon svg {
  width: 20px;
  height: 20px;
  stroke-width: 1.8;
  fill: none;
}

.page-id-16479 .impact-block:not(.highlight) .impact-icon svg { stroke: var(--violet); }
.page-id-16479 .impact-block.highlight .impact-icon svg        { stroke: #f8a070; }

/* Large stat number */
.page-id-16479 .impact-big-num {
  font-size: 50px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -2px;
}

.page-id-16479 .impact-block:not(.highlight) .impact-big-num { color: var(--purple); }
.page-id-16479 .impact-block.highlight .impact-big-num        { color: white; }

/* Description below the number */
.page-id-16479 .impact-num-label {
  font-size: 14px;
  line-height: 1.55;
  font-weight: 400;
}

.page-id-16479 .impact-block:not(.highlight) .impact-num-label { color: var(--text-mid); }
.page-id-16479 .impact-block.highlight .impact-num-label        { color: rgba(255,255,255,0.65); }


/* ============================================================
   8. EVENTS & WORKSHOPS
   White section. 3-column card grid.
   Add class "featured" to the first card to give it an orange header.
   ============================================================ */

.page-id-16479 .events-section {
  background: white;
  padding: 96px 72px;
}

.page-id-16479 .events-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
}

.page-id-16479 .btn-all-events {
  color: var(--purple);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  border-bottom: 1.5px solid var(--border);
  padding-bottom: 2px;
  transition: border-color 0.2s;
}

.page-id-16479 .btn-all-events:hover { border-color: var(--purple); }

.page-id-16479 .events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.page-id-16479 .event-card {
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, transform 0.25s;
}

.page-id-16479 .event-card:hover {
  border-color: var(--violet);
  transform: translateY(-3px);
}

/* Coloured header strip with date box */
.page-id-16479 .event-date-strip {
  background: var(--purple);
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
}

/* Featured card gets orange header instead of purple */
.page-id-16479 .event-card.featured .event-date-strip { background: var(--orange); }

/* Date box inside the strip */
.page-id-16479 .event-date-box {
  text-align: center;
  background: rgba(255,255,255,0.12);
  border-radius: 10px;
  padding: 8px 12px;
  min-width: 50px;
}

.page-id-16479 .event-day {
  font-size: 24px;
  font-weight: 700;
  color: white;
  line-height: 1;
}

.page-id-16479 .event-month {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 2px;
}

.page-id-16479 .event-meta { flex: 1; }

.page-id-16479 .event-type {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #f8a070;
  margin-bottom: 3px;
}

.page-id-16479 .event-name-strip {
  font-size: 14px;
  font-weight: 600;
  color: white;
  line-height: 1.35;
}

/* White body area */
.page-id-16479 .event-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  background: white;
}

.page-id-16479 .event-desc {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.6;
  font-weight: 300;
  flex: 1;
}

/* Footer row with location and CTA link */
.page-id-16479 .event-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

.page-id-16479 .event-location {
  font-size: 12px;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 5px;
}

.page-id-16479 .event-location svg {
  width: 13px;
  height: 13px;
  stroke: var(--text-light);
  fill: none;
  stroke-width: 2;
}

.page-id-16479 .event-cta {
  font-size: 12px;
  font-weight: 600;
  color: var(--purple);
}


/* ============================================================
   9. MEDIATION SPOTLIGHT
   Full-width purple rounded card inside a white section.
   Two columns: intro text left, feature bullets right.
   ============================================================ */

.page-id-16479 .mediation-section {
  padding: 0 72px 96px;
  background: white;
}

.page-id-16479 .mediation-inner {
  background: var(--purple);
  border-radius: 24px;
  padding: 60px 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* Subtle decorative glow top-right */
.page-id-16479 .mediation-inner::after {
  content: '';
  position: absolute;
  right: -80px;
  top: -80px;
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%);
  pointer-events: none;
}

/* Orange pill tag */
.page-id-16479 .mediation-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(241,103,40,0.2);
  border: 1px solid rgba(241,103,40,0.35);
  color: #f8a070;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 18px;
}

.page-id-16479 .mediation-heading {
  font-size: 36px;
  font-weight: 700;
  color: white;
  line-height: 1.15;
  letter-spacing: -0.8px;
  margin-bottom: 16px;
}

.page-id-16479 .mediation-body {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 28px;
}

/* White pill button */
.page-id-16479 .btn-mediation {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  color: var(--purple);
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  padding: 13px 26px;
  border-radius: 100px;
  transition: transform 0.2s;
}

.page-id-16479 .btn-mediation:hover { transform: translateY(-2px); }

/* Feature bullet cards on the right */
.page-id-16479 .mediation-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  z-index: 1;
}

.page-id-16479 .mediation-feature {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 18px 20px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.page-id-16479 .mediation-icon {
  width: 36px;
  height: 36px;
  background: rgba(241,103,40,0.2);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.page-id-16479 .mediation-icon svg {
  width: 17px;
  height: 17px;
  stroke: #f8a070;
  fill: none;
  stroke-width: 2;
}

.page-id-16479 .mediation-feature-title {
  font-size: 13px;
  font-weight: 600;
  color: white;
  margin-bottom: 3px;
}

.page-id-16479 .mediation-feature-desc {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  line-height: 1.55;
}


/* ============================================================
   10. NEWS
   Off-white section. Asymmetric 3-column grid — first card wider.
   Images are placeholder-coloured — replace inline background
   colours with real featured images per card.
   ============================================================ */

.page-id-16479 .news-section {
  background: var(--off-white);
  padding: 96px 72px;
}

.page-id-16479 .news-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 44px;
}

.page-id-16479 .btn-all-news {
  color: var(--purple);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  border-bottom: 1.5px solid var(--border);
  padding-bottom: 2px;
  transition: border-color 0.2s;
}

.page-id-16479 .btn-all-news:hover { border-color: var(--purple); }

/* Asymmetric grid — first card 1.6x wider */
.page-id-16479 .news-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 18px;
}

.page-id-16479 .news-card {
  background: white;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s, border-color 0.2s;
}

.page-id-16479 .news-card:hover {
  transform: translateY(-4px);
  border-color: rgba(81,43,102,0.3);
}

/* Image area — set background colour per card inline,
   or replace with actual featured images */
.page-id-16479 .news-img {
  height: 190px;
  background: var(--purple-light);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* First (wider) card gets a taller image */
.page-id-16479 .news-card:first-child .news-img { height: 230px; }

.page-id-16479 .news-img svg {
  width: 44px;
  height: 44px;
  opacity: 0.2;
}

/* Card body */
.page-id-16479 .news-body-card {
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  flex: 1;
}

/* Orange category label */
.page-id-16479 .news-category {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
}

.page-id-16479 .news-title-card {
  font-size: 16px;
  font-weight: 700;
  color: var(--purple-dark);
  line-height: 1.35;
  letter-spacing: -0.2px;
}

/* Smaller title on narrower cards */
.page-id-16479 .news-card:not(:first-child) .news-title-card { font-size: 14px; }

.page-id-16479 .news-excerpt {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.6;
  font-weight: 300;
  flex: 1;
}

.page-id-16479 .news-date {
  font-size: 11px;
  color: var(--text-light);
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}


/* ============================================================
   11. NEWSLETTER
   Pale purple section above the footer.
   Two columns: description left, form right.
   ============================================================ */

.page-id-16479 .newsletter-section {
  background: var(--purple-light);
  padding: 72px;
  border-top: 1px solid var(--border);
}

.page-id-16479 .newsletter-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
}

.page-id-16479 .newsletter-heading {
  font-size: 26px;
  font-weight: 700;
  color: var(--purple-dark);
  line-height: 1.2;
  letter-spacing: -0.4px;
  margin-bottom: 10px;
}

.page-id-16479 .newsletter-sub {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.65;
  font-weight: 300;
}

.page-id-16479 .newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.page-id-16479 .newsletter-row {
  display: flex;
  gap: 10px;
}

.page-id-16479 .newsletter-input {
  flex: 1;
  background: white;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 13px 16px;
  font-size: 14px;
  font-family: 'Montserrat', sans-serif;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s;
}

.page-id-16479 .newsletter-input::placeholder { color: var(--text-light); }
.page-id-16479 .newsletter-input:focus { border-color: var(--purple); }

.page-id-16479 .btn-newsletter {
  background: var(--purple);
  color: white;
  border: none;
  border-radius: 8px;
  padding: 13px 24px;
  font-size: 14px;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  cursor: pointer;
  transition: opacity 0.2s;
  white-space: nowrap;
}

.page-id-16479 .btn-newsletter:hover { opacity: 0.88; }

.page-id-16479 .newsletter-consent {
  font-size: 11px;
  color: var(--text-light);
  line-height: 1.5;
}

.page-id-16479 .newsletter-consent a { color: var(--violet); }


/* ============================================================
   12. FOOTER
   Your theme already handles the footer — no custom CSS needed here.
   ============================================================ */


/* ============================================================
   13. ANIMATIONS
   Fade-up on page load for hero elements only
   ============================================================ */

@keyframes kineara-fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.page-id-16479 .hero-eyebrow  { animation: kineara-fadeUp 0.5s 0.00s ease both; }
.page-id-16479 .hero-h1       { animation: kineara-fadeUp 0.5s 0.10s ease both; }
.page-id-16479 .hero-sub      { animation: kineara-fadeUp 0.5s 0.18s ease both; }
.page-id-16479 .hero-actions  { animation: kineara-fadeUp 0.5s 0.26s ease both; }

/* ============================================================
   HERO — Fundraiser name & support line
   ============================================================ */

.page-id-16479 .hero-fundraiser-name {
  font-size: 13px;
  font-weight: 700;
  color: white;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 6px;
  margin-top: 16px;
}

.page-id-16479 .hero-fundraiser-line {
  font-size: 12px;
  font-weight: 300;
  color: rgba(255,255,255,0.65);
  line-height: 1.55;
}

/* ============================================================
   HERO COPY UPDATES
   Hides the trust badges line (removed per brief)
   ============================================================ */

.page-id-16479 .hero-trust {
  display: none !important;
}

/* Fundraiser name — bold line below the main CTA buttons */
.page-id-16479 .hero-fundraiser-name {
  font-size: 12px;
  font-weight: 700;
  color: white;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 20px;
  margin-bottom: 5px;
}

/* Support line — smaller, lighter, below fundraiser name */
.page-id-16479 .hero-fundraiser-line {
  font-size: 12px;
  font-weight: 300;
  color: rgba(255,255,255,0.65);
  line-height: 1.55;
}
.page-id-16479 .impact-cta-block {
  margin-bottom: 48px;
}

.page-id-16479 .impact-cta-heading {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 700;
  color: #341744;
  line-height: 1.15;
  letter-spacing: -0.8px;
  margin-bottom: 16px;
  font-family: 'Montserrat', sans-serif;
}

.page-id-16479 .impact-cta-bar {
  width: 44px;
  height: 3px;
  background: #f16728;
  border-radius: 2px;
  margin-bottom: 18px;
}

.page-id-16479 .impact-cta-body {
  font-size: 16px;
  color: #5a4566;
  line-height: 1.8;
  font-weight: 300;
  max-width: 680px;
  margin-bottom: 28px;
  font-family: 'Montserrat', sans-serif;
}

.page-id-16479 .impact-cta-body strong {
  font-weight: 700;
  color: #341744;
}

.page-id-16479 .impact-rule {
  height: 1px;
  background: rgba(81,43,102,0.1);
  margin: 0 0 44px;
}

.page-id-16479 .impact-who-heading {
  font-size: 26px;
  font-weight: 700;
  color: #341744;
  letter-spacing: -0.5px;
  margin-bottom: 6px;
  font-family: 'Montserrat', sans-serif;
}
.page-id-16479 .so-panel div[style*="position"],
.page-id-16479 .panel-grid-cell .so-panel:after,
.page-id-16479 .panel-grid-cell .so-panel:before,
.page-id-16479 .sow-slider-base,
.page-id-16479 a.so-widget-link {
  pointer-events: none !important;
}

.page-id-16479 a,
.page-id-16479 button,
.page-id-16479 input,
.page-id-16479 select,
.page-id-16479 textarea {
  pointer-events: auto !important;
  position: relative;
  z-index: 10;
}