/*
 * The Camel Project
 * Helix 3 Custom CSS
 */

:root {
    --color-hope: #4B2E83;
    --color-courage: #F47C20;
    --color-healing: #2E9D9B;
    --color-growth: #F4B942;
    --color-compassion: #E9DDF8;

    --color-text: #1F2937;
    --color-muted: #6B7280;
    --color-border: #E5E7EB;
    --color-white: #FFFFFF;
    --color-surface: #F7F1E8;
    --color-surface-alt: #F8F5FF;
    --color-surface-warm: #FDF9F2;
}


/* =========================================================
   GLOBAL
   ========================================================= */

body {
    color: var(--color-text);
    background: var(--color-white);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--color-hope);
}

a {
    color: var(--color-hope);
}

a:hover,
a:focus {
    color: var(--color-courage);
}


/* =========================================================
   HEADER
   ========================================================= */

/* =========================================================
   The Camel Project — Helix 3
   Header
   ========================================================= */

#sp-header {
    background: #ffffff;
    border-bottom: 1px solid #eeeeee;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

/* Match the site's Helix 1320px container */

#sp-header .container {
    max-width: 1320px;
}

/* Header row */

#sp-header .sp-row {
    align-items: center;
}

/* =========================================================
   LOGO
   ========================================================= */

#sp-logo {
    display: flex;
    align-items: center;
}

#sp-logo .logo {
    display: inline-flex;
    align-items: center;
}

#sp-logo img {
    width: auto;
    height: 72px;
    padding-left: 6px;
    display: block;
}

/* =========================================================
   MAIN NAVIGATION
   ========================================================= */

#sp-menu {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

#sp-menu .sp-column {
    width: 100%;
}

#sp-menu .sp-megamenu-wrapper {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

#sp-menu .sp-megamenu-parent {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
}

/* Top-level menu links */

#sp-menu .sp-megamenu-parent > li > a {
    color: #2f2940;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 0 16px;
    line-height: 78px;
    transition: color 0.2s ease;
}

#sp-menu .sp-megamenu-parent > li > a:hover,
#sp-menu .sp-megamenu-parent > li.active > a {
    color: #4f2d7f;
}

/* Dropdown arrows */

#sp-menu .sp-megamenu-parent > li.sp-has-child > a::after {
    color: #4f2d7f;
}

/* =========================================================
   DROPDOWN
   ========================================================= */

#sp-menu .sp-dropdown {
    border-top: 3px solid #f58220;
}

#sp-menu .sp-dropdown-inner {
    background: #ffffff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

#sp-menu .sp-dropdown-items > li > a {
    color: #2f2940;
    font-size: 14px;
    padding: 12px 18px;
    transition: all 0.2s ease;
}

#sp-menu .sp-dropdown-items > li > a:hover {
    background: #f58220;
    color: #ffffff;
}

/* =========================================================
   MOBILE MENU BUTTON
   ========================================================= */

#offcanvas-toggler {
    color: #2f2940;
    font-size: 24px;
}

#offcanvas-toggler:hover {
    color: #4f2d7f;
}

/* =========================================================
   MOBILE HEADER
   ========================================================= */

@media (max-width: 991px) {

    #sp-header {
        min-height: 56px;
    }

    #sp-header .container {
        max-width: 100%;
        width: 100%;
        padding-left: 15px;
        padding-right: 15px;
    }

    #sp-header .sp-row {
        min-height: 56px;
        align-items: center;
    }

    /* Mobile logo */

    #sp-logo {
        display: flex;
        align-items: center;
    }

    #sp-logo img {
        width: auto !important;
        height: 52px !important;
        max-height: 52px;
        padding-left: 0;
        display: block;
    }

    /* Mobile menu button */

    #offcanvas-toggler {
        display: flex;
        align-items: center;
        justify-content: center;

        width: 44px;
        height: 44px;
        margin-left: auto;

        font-size: 22px;
        line-height: 1;
    }
}


/* =========================================================
   SMALL PHONES
   ========================================================= */

@media (max-width: 480px) {

    #sp-header {
        min-height: 52px;
    }

    #sp-header .sp-row {
        min-height: 52px;
    }

    #sp-logo img {
        height: 46px !important;
        max-height: 46px;
    }

    #offcanvas-toggler {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
}

/* =========================================================
   THE CAMEL PROJECT
   FOOTER
   ========================================================= */

#sp-footer {
    padding: 3.5rem 0 2.5rem;
    background: var(--color-hope);
    color: var(--color-white);
    text-align: center;
}

#sp-footer .container {
    max-width: 1200px;
}

#sp-footer a {
    color: var(--color-white);
    text-decoration: none;
    transition: color 0.2s ease;
}

#sp-footer a:hover,
#sp-footer a:focus {
    color: var(--color-courage);
}

/* Footer text */

#sp-footer p {
    margin-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
}

#sp-footer small {
    color: rgba(255, 255, 255, 0.75);
}

/* Footer headings */

#sp-footer h2,
#sp-footer h3,
#sp-footer h4 {
    color: var(--color-white);
    margin-bottom: 0.75rem;
}

/* Footer navigation */

#sp-footer ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

#sp-footer li {
    margin-bottom: 0.4rem;
}

/* Footer bottom / copyright */

#sp-footer .sp-copyright {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.85rem;
    line-height: 1.6;
}

/* ---------------------------------------------------------
   Footer — Mobile
   --------------------------------------------------------- */

@media (max-width: 768px) {

    #sp-footer {
        padding: 2.75rem 1.25rem 2rem;
    }

    #sp-footer p {
        font-size: 0.85rem;
        line-height: 1.6;
    }

    #sp-footer .sp-copyright {
        margin-top: 1.5rem;
        padding-top: 1.25rem;
        font-size: 0.75rem;
    }
}

/* =========================================================
   THE CAMEL PROJECT
   HERO
   ========================================================= */

.hero {
    min-height: 680px;
    display: flex;
    align-items: center;

    background:
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.98) 0%,
            rgba(255, 255, 255, 0.95) 35%,
            rgba(255, 255, 255, 0.82) 55%,
            rgba(255, 255, 255, 0) 72%
        ),
        url("../images/hero/hero-scene.webp");

    background-repeat: no-repeat;
    background-position: right center;
    background-size: auto 100%;
}

.hero__content {
    width: 100%;
    max-width: 620px;
    padding: 6rem 0;
}

.hero__eyebrow {
    display: inline-block;
    margin-bottom: 1rem;

    color: var(--color-hope);

    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero h1 {
    max-width: 11ch;
    margin: 0 0 1.5rem;

    color: var(--color-hope);

    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1.1;
}

.hero__description {
    max-width: 34rem;
    margin-bottom: 2rem;

    font-size: 1.15rem;
    line-height: 1.8;
}

.hero__actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ---------------------------------------------------------
   Tablet
   --------------------------------------------------------- */

@media (max-width: 991px) {

    .hero {
        min-height: 560px;
    }

    .hero__content {
        width: 55%;
        padding: 60px 0;
    }

    .hero h1 {
        font-size: clamp(2.75rem, 6vw, 4rem);
    }

    .hero__description {
        font-size: 17px;
    }
}


/* ---------------------------------------------------------
   Mobile Hero
   --------------------------------------------------------- */

@media (max-width: 768px) {


    .hero {
        min-height: 0;
        display: block;

        background:
            url("../images/hero/hero-scene.webp");

        background-repeat: no-repeat;
        background-position: 115% top;
        background-size: auto 440px;

        padding-top: 430px;
        padding-bottom: 2.5rem;
    }

    .hero__content {
        width: 100%;
        max-width: none;
        padding: 2rem 1.5rem 0;

        background:
            linear-gradient(
                180deg,
                rgba(255, 255, 255, 0.98) 0%,
                rgba(255, 255, 255, 1) 12%,
                rgba(255, 255, 255, 1) 100%
            );
    }

    .hero__eyebrow {
        display: inline-block;
        margin-bottom: 0.6rem;

        font-size: 0.7rem;
        letter-spacing: 0.06em;
    }

    .hero h1 {
        max-width: 11ch;
        margin: 0 0 1rem;

        font-size: 2.35rem;
        line-height: 1.05;
    }

    .hero__description {
        max-width: 34rem;
        margin-bottom: 1.5rem;

        font-size: 0.95rem;
        line-height: 1.6;
    }

    .hero__actions {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 0.75rem;
        flex-wrap: wrap;
    }

    .hero__actions .btn {
        width: auto;
    }
}

/* ---------------------------------------------------------
   Extra Small Mobile Hero
   --------------------------------------------------------- */

@media (max-width: 480px) {

    .hero {
        background-size: auto 330px;
        background-position: 115% top;

        padding-top: 320px;
        padding-bottom: 2rem;
    }

    .hero__content {
        padding: 1.5rem 1.25rem 0;
    }

    .hero h1 {
        font-size: 2.1rem;
        line-height: 1.05;
    }

    .hero__description {
        font-size: 0.9rem;
        line-height: 1.55;
    }
}
/* =========================================================
   THE CAMEL PROJECT
   MISSION
   ========================================================= */

.mission {
    padding: 4rem 0 4.5rem;
    background: #ffffff;
}

/* ---------------------------------------------------------
   Introduction
   --------------------------------------------------------- */

.mission__intro {
    max-width: 760px;
    margin: 0 auto 2.5rem;
    text-align: center;
}

.mission__intro h2 {
    margin: 1rem 0 1.5rem;

    font-size: clamp(2rem, 3vw, 2.75rem);
    line-height: 1.2;
    font-weight: 700;
    color: var(--color-hope);
}

.mission__intro p {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;

    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--color-text);
}

/* ---------------------------------------------------------
   Mission Cards
   --------------------------------------------------------- */

.mission__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.mission-card {
    min-height: 0;
    padding: 1.75rem 2rem 2rem;

    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.06);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.mission-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

.mission-card h3 {
    margin-bottom: 0.75rem;

    color: var(--color-hope);
    font-size: 1.2rem;
    font-weight: 700;
}

.mission-card p,
.mission-values {
    line-height: 1.65;
}

.mission-values {
    padding-left: 1.25rem;
}

.mission-values li + li {
    margin-top: 0.5rem;
}

/* ---------------------------------------------------------
   Card Accent Colors
   --------------------------------------------------------- */

.mission-card--mission {
    border-top: 6px solid var(--color-courage);
}

.mission-card--vision {
    border-top: 6px solid var(--color-hope);
}

.mission-card--values {
    border-top: 6px solid var(--color-healing);
}

/* ---------------------------------------------------------
   Tablet
   --------------------------------------------------------- */

@media (max-width: 992px) {

    .mission__grid {
        grid-template-columns: 1fr;
    }
}

/* ---------------------------------------------------------
   Mobile
   --------------------------------------------------------- */

@media (max-width: 768px) {

    .mission {
        padding: 2.75rem 0 3rem;
    }

    .mission__intro {
        max-width: none;
        margin-bottom: 1.75rem;
        padding: 0 1.25rem;
    }

    .mission__intro h2 {
        margin: 0 0 1rem;
        font-size: 1.75rem;
        line-height: 1.2;
    }

    .mission__intro p {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .mission__grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
        margin-top: 1.5rem;
        padding: 0 1.25rem;
    }

    .mission-card {
        min-height: 0;
        padding: 1.5rem 1.25rem;
        border-radius: 0.85rem;
    }

    .mission-card h3 {
        margin-bottom: 0.65rem;
        font-size: 1rem;
    }

    .mission-card p,
    .mission-values {
        font-size: 0.85rem;
        line-height: 1.55;
    }

    .mission-values {
        padding-left: 1rem;
    }

    .mission-values li + li {
        margin-top: 0.3rem;
    }
}
/* =========================================================
   THE CAMEL PROJECT
   HEALING FRAMEWORK
   ========================================================= */

.framework {
  position: relative;
  overflow: hidden;
  padding: 2.5rem 0 5.5rem;
  background: #ffffff;
}

.framework__intro {
  max-width: 760px;
  margin: 0 auto 2.5rem;
  text-align: center;
  font-size: 1.125rem;
}

.framework__intro h2 {
    margin: 1rem 0 1.5rem;
    font-size: clamp(2rem, 3vw, 2.75rem);
    line-height: 1.2;
    font-weight: 700;
    color: var(--color-hope);
}

.framework__text p {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;

    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--color-text);
}

.framework__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.framework-card {
    position: relative;
    min-height: 300px;
    padding: 3rem 2.5rem;
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.07);
    overflow: hidden;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.framework-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.framework-card h3 {
    position: relative;
    margin-bottom: 1rem;
    color: var(--color-primary);
}

.framework-card__number {
    position: absolute;
    top: 18px;
    right: 22px;
    font-size: 4rem;
    font-weight: 800;
    line-height: 1;
    color: rgba(76, 54, 142, 0.12);
    opacity: 0.46;
    user-select: none;
    pointer-events: none;
}

.framework-card--discover {
    border-top: 5px solid var(--color-courage);
}

.framework-card--define {
    border-top: 5px solid var(--color-hope);
}

.framework-card--develop {
    border-top: 5px solid var(--color-healing);
}

.framework-card--defend {
    border-top: 5px solid var(--color-compassion);
}


.framework > * {
    position: relative;
    z-index: 2;
}

@media (max-width: 992px) {
    .framework__grid {
        grid-template-columns: 1fr;
    }
}

/* ---------------------------------------------------------
   Healing Framework — Mobile
   --------------------------------------------------------- */

@media (max-width: 768px) {

    .framework {
        padding: 3rem 0 3.5rem;
    }

    .framework__intro {
        max-width: none;
        margin-bottom: 1.75rem;
        padding: 0 1.25rem;
    }

    .framework__intro h2 {
        margin: 0 0 1rem;
        font-size: 1.75rem;
        line-height: 1.2;
    }

    .framework__text p {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .framework__grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
        padding: 0 1.25rem;
    }

    .framework-card {
        min-height: 0;
        padding: 1.5rem 1.25rem;
        border-radius: 0.85rem;
    }

    .framework-card h3 {
        margin-bottom: 0.65rem;
        font-size: 1rem;
    }

    .framework-card p {
        font-size: 0.85rem;
        line-height: 1.55;
    }

    .framework-card__number {
        top: 12px;
        right: 14px;
        font-size: 3rem;
    }
}

/* ==========================================================
   PROGRAMS
   ========================================================== */

.programs {
  padding: 3.5rem 0 4rem;
  background: #ffffff;
}

.programs__title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-bottom: 1rem;
}

.programs__intro {
  max-width: 760px;
  margin: 0 auto 2.5rem;
  text-align: center;
  font-size: 1.125rem;
}


.programs__intro h2 {
    margin: 1rem 0 1.5rem;
    font-size: clamp(2rem, 3vw, 2.75rem);
    line-height: 1.2;
    font-weight: 700;
    color: var(--color-hope);
}

.programs__intro h2::after {
  content: "";
  display: block;
  width: 64px;
  height: 4px;
  margin: 1rem auto 0;
  background: var(--color-courage);
  border-radius: var(--radius-round);
}

.programs__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem 2rem;
  margin-top: 2.5rem;
}

/* ----------------------------------------------------------
   Program Card
   ---------------------------------------------------------- */

.program-card {
  display: grid;
  grid-template-columns: 72px 1fr;
  grid-template-rows: auto auto auto;
  column-gap: 1.25rem;
  align-items: start;

  min-height: 0;
  padding: 1.5rem;

  background: #ffffff;
  border-radius: 1rem;

  border-top: 4px solid var(--color-hope);

  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.06);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.program-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.10);
}

/* ----------------------------------------------------------
   Icon
   ---------------------------------------------------------- */

.program-card__icon {
  grid-column: 1;
  grid-row: 1 / span 3;

  width: 64px;
  height: 64px;

  margin: 0;

  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 1.6rem;
}

.program-card__icon svg,
.program-card__icon i {
  width: auto;
  height: auto;
  font-size: 1.5rem;
}

/* =========================================================
   OPERATION SAFE LIVES
   INITIATIVE COMPONENTS
   ========================================================= */

.program-article__component-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.program-article__component {
  padding: 1.5rem;

  background: var(--color-white);
  border: 1px solid rgba(75, 46, 131, 0.08);
  border-top: 4px solid var(--color-hope);
  border-radius: var(--radius-lg);

  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.06);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.program-article__component:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.10);
}

.program-article__component--orange {
  border-top-color: var(--color-courage);
}

.program-article__component--purple {
  border-top-color: var(--color-hope);
}

.program-article__component--teal {
  border-top-color: var(--color-healing);
}

.program-article__component-icon {
  width: 48px;
  height: 48px;

  margin-bottom: 1rem;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: rgba(75, 46, 131, 0.10);
  color: var(--color-hope);

  font-size: 1.25rem;
}

.program-article__component--orange
.program-article__component-icon {
  color: var(--color-courage);
  background: rgba(244, 124, 32, 0.10);
}

.program-article__component--teal
.program-article__component-icon {
  color: var(--color-healing);
  background: rgba(46, 157, 155, 0.10);
}

.program-article__component h3 {
  margin-bottom: 0.75rem;
}

.program-article__component p {
  margin-bottom: 1rem;
}

.program-article__component-note {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-hope);
}

.program-article__component-link {
  display: inline-block;
  margin-top: 0.25rem;

  font-weight: 600;
  text-decoration: none;

  color: var(--color-primary);
}

.program-article__component-link:hover {
  color: var(--color-courage);
}


/* ---------------------------------------------------------
   Responsive
   --------------------------------------------------------- */

@media (max-width: 992px) {

  .program-article__component-grid {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 640px) {

  .program-article__component {
    padding: 1.25rem;
  }

}
/* ----------------------------------------------------------
   Title
   ---------------------------------------------------------- */

.program-card__title {
  grid-column: 2;
  grid-row: 1;

  margin: 0 0 0.5rem;

  text-align: left;
  font-size: 1.15rem;
  line-height: 1.3;
}

/* ----------------------------------------------------------
   Summary
   ---------------------------------------------------------- */

.program-card__summary {
  grid-column: 2;
  grid-row: 2;

  margin: 0;

  text-align: left;

  font-size: 0.95rem;
  line-height: 1.55;

  color: var(--color-muted);
}

.program-card__summary {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

/* ----------------------------------------------------------
   Link
   ---------------------------------------------------------- */

.program-card__footer {
  grid-column: 2;
  grid-row: 3;

  margin-top: 0.75rem;
  text-align: left;
}

.program-card__link {
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
}

/* ----------------------------------------------------------
   Accent Colors
   ---------------------------------------------------------- */

.program-card--orange {
  border-top-color: var(--color-courage);
}

.program-card--orange .program-card__icon {
  color: var(--color-courage);
  background: rgba(244, 124, 32, 0.10);
}

.program-card--purple {
  border-top-color: var(--color-hope);
}

.program-card--purple .program-card__icon {
  color: var(--color-hope);
  background: rgba(75, 46, 131, 0.10);
}

.program-card--teal {
  border-top-color: var(--color-healing);
}

.program-card--teal .program-card__icon {
  color: var(--color-healing);
  background: rgba(46, 157, 155, 0.10);
}

.program-card--gold {
  border-top-color: var(--color-growth);
}

.program-card--gold .program-card__icon {
  color: var(--color-growth);
  background: rgba(244, 185, 66, 0.12);
}

.program-card--green {
  border-top-color: #4a9b62;
}

.program-card--green .program-card__icon {
  color: #4a9b62;
  background: rgba(74, 155, 98, 0.10);
}

.program-card--blue {
  border-top-color: #2b6cb0;
}

.program-card--blue .program-card__icon {
  color: #2b6cb0;
  background: rgba(43, 108, 176, 0.10);
}

.program-card--pink {
  border-top-color: #e83e8c;
}

.program-card--pink .program-card__icon {
  color: #e83e8c;
  background: rgba(232, 62, 140, 0.10);
}

/* ----------------------------------------------------------
   Responsive
   ---------------------------------------------------------- */

@media (max-width: 992px) {
  .programs__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .programs__grid {
    grid-template-columns: 1fr;
  }

  .program-card {
    grid-template-columns: 64px 1fr;
    padding: 1.25rem;
  }

  .program-card__icon {
    width: 56px;
    height: 56px;
  }
}
/* =========================================================
   THE CAMEL PROJECT
   FEATURED PROGRAM
   ========================================================= */

.featured-program {
  padding: 3rem 0;
}

.featured-program__card {
  display: grid;
  grid-template-columns: 38% 62%;
  gap: 2.5rem;
  align-items: center;
  padding: 1.75rem;
  background: var(--color-white);
  border: 1px solid rgba(75, 46, 131, 0.08);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.07);
}

.featured-program__visual {
    overflow: hidden;
    border-radius: var(--radius-lg);
    aspect-ratio: 4 / 3;
}

.featured-program__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.featured-program__content h2 {
    margin-bottom: 1rem;
}

.featured-program__lead {
    margin-bottom: 1.5rem;

    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-courage);
}

.featured-program__highlights {
    margin: 2rem 0;
    padding: 0;
    list-style: none;
}

.featured-program__highlights li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

@media (max-width: 992px) {
    .featured-program__card {
        grid-template-columns: 1fr;
    }
}

/* ---------------------------------------------------------
   Featured Program — Mobile
   --------------------------------------------------------- */

@media (max-width: 768px) {

    .featured-program {
        padding: 2.5rem 0 3rem;
    }

    .featured-program__card {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1.25rem;
        border-radius: 0.85rem;
    }

    .featured-program__visual {
        border-radius: 0.75rem;
        aspect-ratio: 16 / 10;
    }

    .featured-program__content h2 {
        margin-bottom: 0.75rem;
        font-size: 1.6rem;
        line-height: 1.2;
    }

    .featured-program__lead {
        margin-bottom: 1rem;
        font-size: 1rem;
    }

    .featured-program__highlights {
        margin: 1.25rem 0;
    }

    .featured-program__highlights li {
        gap: 0.6rem;
    }
}

/* =========================================================
   THE CAMEL PROJECT
   IMPACT
   ========================================================= */

.impact {
  padding: 4.5rem 0;
  background: #ffffff;
}

.impact__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.impact-card {
  position: relative;
  padding: 1rem 1.5rem;
  background: transparent;
  border-radius: 0;
  text-align: center;
  box-shadow: none;
  transition: transform 0.25s ease;
}

.impact-card + .impact-card {
  border-left: 1px solid rgba(75, 46, 131, 0.12);
}
.impact-card:hover {
  transform: translateY(-4px);
}

.impact-card:hover {
    transform: translateY(-6px);
}

.impact-card__number {
  margin-bottom: 0.5rem;

  font-size: clamp(2.25rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1;

  color: var(--color-courage);
}

.impact-card h3 {
  margin-bottom: 0.5rem;
  color: var(--color-hope);
}

.impact-card p {
    margin: 0;
}

@media (max-width: 992px) {
  .impact__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .impact-card + .impact-card {
    border-left: none;
  }

  .impact-card:nth-child(2n) {
    border-left: 1px solid rgba(75, 46, 131, 0.12);
  }

  .impact-card:nth-child(n + 3) {
    border-top: 1px solid rgba(75, 46, 131, 0.12);
    padding-top: 1.5rem;
  }
}

@media (max-width: 640px) {
  .impact__grid {
    grid-template-columns: 1fr;
  }

  .impact-card + .impact-card,
  .impact-card:nth-child(2n) {
    border-left: none;
    border-top: 1px solid rgba(75, 46, 131, 0.12);
    padding-top: 1.5rem;
  }

  .impact-card:first-child {
    border-top: none;
    padding-top: 1rem;
  }
}

.impact__intro {
  max-width: 700px;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.impact__intro h2 {
    margin: 1rem 0 1.5rem;

}


/* Impact section introduction */

.impact > .container > .section-eyebrow,
.impact > .container > .section-title,
.impact > .container > .section-intro {
    text-align: center;
}

.impact > .container > .section-intro {
    max-width: 760px;
    margin: 0 auto 2.5rem;
  text-align: center;
	font-size: 1.125rem;
}



/* =========================================================
   THE CAMEL PROJECT
   CTA / GET INVOLVED
   ========================================================= */

.cta {
    padding: 4.5rem 0;
    background: #ffffff;
    text-align: center;
    border-top: 1px solid rgba(75, 46, 131, 0.06);
}

/* ---------------------------------------------------------
   Section Heading
   --------------------------------------------------------- */

.cta .section-heading {
    max-width: 760px;
    margin: 0 auto 2.75rem;
}

.cta .section-heading > * {
    text-align: center;
}

.cta .section-heading .section-eyebrow {
    display: block;
    width: 100%;
    text-align: center;
    margin-bottom: 1rem;
}

.cta .section-title {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.cta .section-intro {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--color-text-muted);
    padding-bottom: 1rem;
}

/* ---------------------------------------------------------
   CTA Cards
   --------------------------------------------------------- */

.cta__cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.cta-card {
    position: relative;
    padding: 1.25rem 1.5rem 1.5rem;

    background: transparent;
    border: 0;
    border-top: 3px solid transparent;
    border-radius: 0;
    box-shadow: none;

    transition: transform 0.25s ease;
}

.cta-card:hover {
    transform: translateY(-4px);
}

.cta-card--orange {
    border-top-color: var(--color-courage);
}

.cta-card--purple {
    border-top-color: var(--color-hope);
}

.cta-card--teal {
    border-top-color: var(--color-healing);
}

.cta-card h3 {
    margin: 0.75rem 0;
    font-size: 1.2rem;
}

.cta-card p {
    margin-bottom: 1rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* ---------------------------------------------------------
   Icons
   --------------------------------------------------------- */

.cta-card__icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1rem;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    border: 0;

    transition: transform 0.25s ease;
}

.cta-card__icon svg {
    width: 28px;
    height: 28px;
    display: block;
}

.cta-card--orange .cta-card__icon {
    color: var(--color-courage);
    background: rgba(244, 124, 32, 0.10);
}

.cta-card--purple .cta-card__icon {
    color: var(--color-hope);
    background: rgba(75, 46, 131, 0.10);
}

.cta-card--teal .cta-card__icon {
    color: var(--color-healing);
    background: rgba(46, 157, 155, 0.11);
}

.cta-card:hover .cta-card__icon {
    transform: scale(1.08);
}

/* ---------------------------------------------------------
   Links
   --------------------------------------------------------- */

.cta-card__link {
    font-weight: 600;
    text-decoration: none;
    color: var(--color-primary);
}

.cta-card__link:hover {
    color: var(--color-accent);
}

/* ---------------------------------------------------------
   Footer / Quote / Buttons
   --------------------------------------------------------- */

.cta__footer {
    max-width: 760px;
    margin: 0 auto;
}

.cta__quote {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-primary);
    font-style: italic;
}

.cta__buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ---------------------------------------------------------
   Tablet
   --------------------------------------------------------- */

@media (max-width: 992px) {

    .cta__cards {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* ---------------------------------------------------------
   Mobile
   --------------------------------------------------------- */

@media (max-width: 768px) {

    .cta {
        padding: 3rem 0 3.5rem;
    }

    .cta .section-heading {
        margin-bottom: 2rem;
        padding: 0 1.25rem;
    }

    .cta .section-title {
        font-size: 1.35rem;
    }

    .cta .section-intro {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .cta__cards {
        gap: 0;
        margin-bottom: 2rem;
        padding: 0 1.25rem;
    }

    .cta-card {
        padding: 1.25rem 1rem 1.5rem;
    }

    .cta-card__icon {
        width: 48px;
        height: 48px;
        margin-bottom: 0.75rem;
    }

    .cta-card__icon svg {
        width: 24px;
        height: 24px;
    }

    .cta-card h3 {
        margin: 0.6rem 0;
        font-size: 1.05rem;
    }

    .cta-card p {
        margin-bottom: 0.75rem;
        font-size: 0.85rem;
        line-height: 1.55;
    }

    .cta__footer {
        padding: 0 1.25rem;
    }

    .cta__quote {
        margin-bottom: 1.25rem;
        font-size: 1rem;
    }

    .cta__buttons {
        gap: 0.75rem;
    }
}
  
 
/* hide eyebrows */
.section-eyebrow {
	display: none;
}


/* =========================================================
   THE CAMEL PROJECT
   LEADERSHIP
   ========================================================= */

.leadership {
    padding: 4rem 0 5rem;
}

/* ---------------------------------------------------------
   Introduction
   --------------------------------------------------------- */

.leadership__intro {
    max-width: 760px;
    margin: 0 auto 3.5rem;
    text-align: center;
}

.leadership__intro h2 {
    margin: 0 0 1.25rem;
    color: var(--color-hope);
    font-size: clamp(2rem, 3vw, 2.75rem);
    line-height: 1.2;
}

.leadership__intro p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-text);
}

/* ---------------------------------------------------------
   Sections
   --------------------------------------------------------- */

.leadership-section {
    margin-bottom: 4.5rem;
}

.leadership-section > h3 {
    margin: 0 0 2rem;
    color: var(--color-hope);
    font-size: 1.75rem;
    line-height: 1.25;
}

.leadership-section__note {
    margin: -1.25rem 0 1.75rem;
    color: var(--color-text-muted);
    font-size: 0.9rem;
    font-style: italic;
}

/* ---------------------------------------------------------
   Leadership Grid
   --------------------------------------------------------- */

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.leadership-grid--single {
    grid-template-columns: minmax(0, 1fr);
    max-width: 720px;
}

/* ---------------------------------------------------------
   Leadership Card
   --------------------------------------------------------- */

.leadership-card {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 1.5rem;

    padding: 1.5rem;

    background: #ffffff;
    border-radius: 1rem;
    border-top: 4px solid var(--color-hope);

    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.leadership-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.09);
}

/* ---------------------------------------------------------
   Headshot
   --------------------------------------------------------- */

.leadership-card__image {
    align-self: start;
    overflow: hidden;
    border-radius: 0.75rem;
}

.leadership-card__image img {
    display: block;
    width: 100%;
    height: auto;
    margin: 0;
}

/* ---------------------------------------------------------
   Content
   --------------------------------------------------------- */

.leadership-card__content {
    min-width: 0;
}

.leadership-card h4 {
    margin: 0 0 0.4rem;

    color: var(--color-hope);
    font-size: 1.3rem;
    line-height: 1.25;
}

.leadership-card__role {
    margin: 0 0 1rem;

    color: var(--color-text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
    font-weight: 600;
}

.leadership-card__statement {
    margin: 0;

    padding: 0;

    border: 0;

    color: var(--color-text);
    font-size: 0.95rem;
    line-height: 1.7;
    font-style: italic;
}

.leadership-card__links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;

    margin-top: 1rem;
}

.leadership-card__links a {
    color: var(--color-primary);
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
}

.leadership-card__links a:hover {
    color: var(--color-courage);
}

.leadership-card__placeholder {
    margin: 1rem 0 0;

    color: var(--color-text-muted);
    font-size: 0.95rem;
    font-style: italic;
}

/* ---------------------------------------------------------
   Advisory Committee
   --------------------------------------------------------- */

.leadership-section--advisory {
    max-width: 760px;
}

.leadership-advisory {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;

    margin: 0;
    padding: 0;

    list-style: none;

    border-top: 1px solid rgba(75, 46, 131, 0.12);
}

.leadership-advisory li {
    padding: 1rem 1.25rem;

    border-bottom: 1px solid rgba(75, 46, 131, 0.12);
}

.leadership-advisory li:nth-child(odd) {
    border-right: 1px solid rgba(75, 46, 131, 0.12);
}

.leadership-advisory strong {
    display: block;
    margin-bottom: 0.25rem;
    color: var(--color-hope);
}

.leadership-advisory span {
    display: block;
    color: var(--color-text-muted);
    font-size: 0.85rem;
}

/* ---------------------------------------------------------
   Leadership CTA
   --------------------------------------------------------- */

.leadership-cta {
    max-width: 760px;
    margin: 0 auto 4rem;

    padding: 2.5rem;

    text-align: center;

    background: rgba(46, 157, 155, 0.06);
    border-radius: 1rem;
}

.leadership-cta h3 {
    margin: 0 0 0.75rem;
    color: var(--color-hope);
}

.leadership-cta p {
    margin: 0 0 1.25rem;
    line-height: 1.7;
}

.leadership-cta__link {
    display: inline-block;

    color: var(--color-hope);
    font-weight: 700;
    text-decoration: none;
}

.leadership-cta__link:hover {
    color: var(--color-courage);
}

/* ---------------------------------------------------------
   Good Will Ambassadors
   --------------------------------------------------------- */

.leadership-ambassadors {
    max-width: 760px;
    margin: 0 auto;

    text-align: center;
}

.leadership-ambassadors h3 {
    margin-bottom: 1.5rem;
    color: var(--color-hope);
}

.leadership-ambassadors__figure {
    margin: 0;
}

.leadership-ambassadors__figure img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
    border-radius: 1rem;
}

.leadership-ambassadors__figure figcaption {
    margin-top: 0.75rem;
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

/* ---------------------------------------------------------
   Tablet
   --------------------------------------------------------- */

@media (max-width: 992px) {

    .leadership-grid {
        grid-template-columns: 1fr;
    }

    .leadership-card {
        grid-template-columns: 150px 1fr;
    }
}

/* ---------------------------------------------------------
   Mobile
   --------------------------------------------------------- */

@media (max-width: 767px) {

    .leadership {
        padding: 2.75rem 0 3.5rem;
    }

    .leadership__intro {
        margin-bottom: 2.75rem;
        padding: 0 1.25rem;
    }

    .leadership__intro h2 {
        margin-bottom: 1rem;
        font-size: 1.75rem;
    }

    .leadership__intro p {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .leadership-section {
        margin-bottom: 3rem;
        padding: 0 1.25rem;
    }

    .leadership-section > h3 {
        margin-bottom: 1.5rem;
        font-size: 1.45rem;
    }

    .leadership-grid,
    .leadership-grid--single {
        grid-template-columns: 1fr;
        max-width: none;
        gap: 1rem;
    }

    .leadership-card {
        grid-template-columns: 90px 1fr;
        gap: 1rem;

        padding: 1rem;

        border-radius: 0.85rem;
    }

    .leadership-card h4 {
        font-size: 1.05rem;
    }

    .leadership-card__role {
        font-size: 0.8rem;
        line-height: 1.45;
    }

    .leadership-card__statement {
        font-size: 0.85rem;
        line-height: 1.6;
    }

    .leadership-card__links {
        gap: 0.75rem;
        margin-top: 0.75rem;
    }

    .leadership-card__links a {
        font-size: 0.8rem;
    }

    .leadership-advisory {
        grid-template-columns: 1fr;
    }

    .leadership-advisory li:nth-child(odd) {
        border-right: 0;
    }

    .leadership-cta {
        margin: 0 1.25rem 3rem;
        padding: 2rem 1.25rem;
    }

    .leadership-ambassadors {
        margin: 0 1.25rem;
    }
}

/* =========================================================
   THE CAMEL PROJECT
   PROGRAMS LANDING PAGE
   ========================================================= */

.programs-page {
    padding: 3.5rem 0 5rem;
}

/* ---------------------------------------------------------
   Introduction
   --------------------------------------------------------- */

.programs-page__intro {
    max-width: 760px;
    margin: 0 auto 3.5rem;
    text-align: center;
}

.programs-page__intro p {
    margin-bottom: 1rem;
    color: var(--color-text);
    font-size: 1.1rem;
    line-height: 1.8;
}

.programs-page__intro .programs-page__lead {
    margin-bottom: 1rem;
    color: var(--color-hope);
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
}

/* ---------------------------------------------------------
   Programs Section
   --------------------------------------------------------- */

.programs-page__section {
    margin-bottom: 4.5rem;
}

.programs-page__section > h2 {
    margin: 0 0 2rem;
    color: var(--color-hope);
    text-align: center;
    font-size: clamp(2rem, 3vw, 2.75rem);
    line-height: 1.2;
}

/* ---------------------------------------------------------
   Program Grid
   --------------------------------------------------------- */

.programs-page__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

/* ---------------------------------------------------------
   Program Item
   --------------------------------------------------------- */

.programs-page__item {
    position: relative;

    padding: 1.75rem 2rem 1.5rem;

    background: #ffffff;
    border-radius: 1rem;

    border-top: 4px solid var(--color-hope);

    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.programs-page__item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 34px rgba(0, 0, 0, 0.09);
}

.programs-page__item h3 {
    margin: 0 0 0.75rem;

    color: var(--color-hope);
    font-size: 1.25rem;
    line-height: 1.3;
}

.programs-page__item p {
    margin-bottom: 1rem;

    color: var(--color-text);
    font-size: 0.95rem;
    line-height: 1.65;
}

.programs-page__item a {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--color-primary);
    text-decoration: none;
}

.programs-page__item a:hover {
    color: var(--color-courage);
}

/* ---------------------------------------------------------
   Program Accent Colors
   --------------------------------------------------------- */

.programs-page__item:nth-child(1) {
    border-top-color: var(--color-courage);
}

.programs-page__item:nth-child(2) {
    border-top-color: var(--color-hope);
}

.programs-page__item:nth-child(3) {
    border-top-color: var(--color-healing);
}

.programs-page__item:nth-child(4) {
    border-top-color: var(--color-growth);
}

.programs-page__item:nth-child(5) {
    border-top-color: var(--color-compassion);
}

.programs-page__item:nth-child(6) {
    border-top-color: var(--color-courage);
}

/* ---------------------------------------------------------
   Framework Callout
   --------------------------------------------------------- */

.programs-page__framework {
    max-width: 800px;
    margin: 0 auto 4rem;

    padding: 2.5rem;

    text-align: center;

    background: rgba(75, 46, 131, 0.045);
    border-radius: 1rem;
    border-left: 5px solid var(--color-hope);
}

.programs-page__framework h2 {
    margin: 0 0 1rem;
    color: var(--color-hope);
}

.programs-page__framework p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

.programs-page__framework p:last-child {
    margin-bottom: 0;
}

/* ---------------------------------------------------------
   Programs CTA
   --------------------------------------------------------- */

.programs-page__cta {
    max-width: 760px;
    margin: 0 auto;

    padding: 2.75rem 2rem;

    text-align: center;

    background: rgba(46, 157, 155, 0.06);
    border-radius: 1rem;
}

.programs-page__cta h2 {
    margin: 0 0 0.75rem;
    color: var(--color-hope);
}

.programs-page__cta p {
    margin-bottom: 1.25rem;
    line-height: 1.7;
}

.programs-page__cta a {
    display: inline-block;

    font-weight: 700;
   /* color: var(--color-hope); */
    text-decoration: none;
}

.programs-page__cta a:hover {
    color: var(--color-courage);
}


/* =========================================================
   THE CAMEL PROJECT
   INDIVIDUAL PROGRAM ARTICLES
   ========================================================= */

.program-article {
    padding: 2.2rem 0 5rem;
}

/* ---------------------------------------------------------
   Introduction
   --------------------------------------------------------- */

.program-article__intro {
    max-width: 760px;
    margin: 0 auto 3.5rem;
    text-align: center;
}

.program-article__intro p {
    margin-bottom: 1rem;

    color: var(--color-text);
    font-size: 1.05rem;
    line-height: 1.8;
}

.program-article__intro .program-article__lead {
    margin-bottom: 1rem;

    color: var(--color-courage);
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
}

/* ---------------------------------------------------------
   Sections
   --------------------------------------------------------- */

.program-article__section {
    max-width: 800px;
    margin: 0 auto 3.5rem;
}

.program-article__section h2,
.program-article__framework h2 {
    margin: 1.75rem 0 1.25rem;

    color: var(--color-hope);
    font-size: clamp(1.65rem, 3vw, 2.1rem);
    line-height: 1.25;
}

.program-article__section p,
.program-article__framework p {
    margin-bottom: 1rem;

    color: var(--color-text);
    font-size: 1rem;
    line-height: 1.75;
}

/* ---------------------------------------------------------
   Lists
   --------------------------------------------------------- */

.program-article__section ul {
    margin: 1.25rem 0;
    padding-left: 1.5rem;
}

.program-article__section li {
    margin-bottom: 0.6rem;

    color: var(--color-text);
    line-height: 1.65;
}

/* ---------------------------------------------------------
   Four-Step Framework
   --------------------------------------------------------- */

.program-article__steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;

    margin-top: 2rem;
}

.program-article__step {
    padding: 1.5rem 1.25rem;

    background: #ffffff;
    border-radius: 0.85rem;

    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.06);

    text-align: center;
}

.program-article__step h3 {
    margin: 0 0 0.75rem;
    color: var(--color-hope);
}

.program-article__step p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Individual framework accents */

.program-article__step:nth-child(1) {
    border-top: 4px solid var(--color-courage);
}

.program-article__step:nth-child(2) {
    border-top: 4px solid var(--color-hope);
}

.program-article__step:nth-child(3) {
    border-top: 4px solid var(--color-healing);
}

.program-article__step:nth-child(4) {
    border-top: 4px solid var(--color-compassion);
}

/* ---------------------------------------------------------
   Framework Callout
   --------------------------------------------------------- */

.program-article__framework {
    max-width: 800px;
    margin: 0 auto 3.5rem;

    padding: 2.5rem;

    background: rgba(75, 46, 131, 0.045);
    border-left: 5px solid var(--color-hope);
    border-radius: 0 1rem 1rem 0;
}

/* ---------------------------------------------------------
   CTA
   --------------------------------------------------------- */

.program-article__cta {
    max-width: 760px;
    margin: 0 auto;

    padding: 2.5rem 2rem;

    text-align: center;

    background: rgba(46, 157, 155, 0.06);
    border-radius: 1rem;
}

.program-article__cta h2 {
    margin: 0 0 0.75rem;
    color: var(--color-hope);
}

.program-article__cta p {
    margin-bottom: 1.25rem;
    line-height: 1.7;
}

.program-article__cta a {
    display: inline-block;

    font-weight: 700;
    color: var(--color-hope);
    text-decoration: none;
}

.program-article__cta a:hover {
    color: var(--color-courage);
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 992px) {

    .programs-page__grid {
        grid-template-columns: 1fr;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
    }

    .program-article__steps {
        grid-template-columns: repeat(2, 1fr);
    }
}


@media (max-width: 767px) {

    .programs-page {
        padding: 2.75rem 0 3.5rem;
    }

    .programs-page__intro {
        padding: 0 1.25rem;
        margin-bottom: 2.75rem;
    }

    .programs-page__intro p {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .programs-page__intro .programs-page__lead {
        font-size: 1.25rem;
    }

    .programs-page__section {
        margin-bottom: 3rem;
        padding: 0 1.25rem;
    }

    .programs-page__section > h2 {
        font-size: 1.75rem;
    }

    .programs-page__item {
        padding: 1.5rem 1.25rem;
    }

    .programs-page__item h3 {
        font-size: 1.1rem;
    }

    .programs-page__item p {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .programs-page__framework,
    .programs-page__cta {
        margin-left: 1.25rem;
        margin-right: 1.25rem;
        padding: 2rem 1.25rem;
    }


    /* Individual program articles */

    .program-article {
        padding: 2.75rem 0 3.5rem;
    }

    .program-article__intro {
        padding: 0 1.25rem;
        margin-bottom: 2.75rem;
    }

    .program-article__intro p {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .program-article__intro .program-article__lead {
        font-size: 1.25rem;
    }

    .program-article__section {
        margin-bottom: 2.75rem;
        padding: 0 1.25rem;
    }

    .program-article__section h2,
    .program-article__framework h2 {
        font-size: 1.55rem;
    }

    .program-article__section p,
    .program-article__framework p {
        font-size: 0.9rem;
        line-height: 1.65;
    }

    .program-article__section ul {
        padding-left: 1.25rem;
    }

    .program-article__section li {
        font-size: 0.9rem;
        line-height: 1.55;
    }

    .program-article__steps {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .program-article__step {
        padding: 1.25rem 1rem;
        text-align: left;
    }

    .program-article__step h3 {
        font-size: 1rem;
    }

    .program-article__step p {
        font-size: 0.85rem;
    }

    .program-article__framework,
    .program-article__cta {
        margin-left: 1.25rem;
        margin-right: 1.25rem;
        padding: 2rem 1.25rem;
    }
}

/* ==========================================================
   CHALKPALOOZA / EVENT LANDING PAGE
   ========================================================== */

.event-page {
  padding: 3.5rem 0 4.5rem;
  background: #ffffff;
}

/* ----------------------------------------------------------
   Intro
   ---------------------------------------------------------- */

.event-page__intro {
  max-width: 850px;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.event-page__intro .event-page__lead {
  margin: 0 0 0.75rem;
  color: var(--color-courage);
  font-size: 1.2rem;
  font-weight: 700;
}

.event-page__intro h1 {
  margin: 0 0 1rem;
  color: var(--color-hope);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
}

.event-page__intro p:not(.event-page__lead) {
  max-width: 760px;
  margin: 0 auto 1rem;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-muted);
}

/* ----------------------------------------------------------
   Hero Image
   ---------------------------------------------------------- */

.event-page__image {
  max-width: 1100px;
  margin: 0 auto 3rem;
  padding: 0;
}

.event-page__image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 1rem;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.10);
}

/* ----------------------------------------------------------
   Event Details
   ---------------------------------------------------------- */

.event-page__details {
  max-width: 950px;
  margin: 0 auto 3.5rem;
  padding: 2rem;

  background: #f8f6fb;
  border-left: 4px solid var(--color-hope);
  border-radius: 0 1rem 1rem 0;
}

.event-page__details h2 {
  margin: 0 0 1.5rem;
  color: var(--color-hope);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
}

.event-page__details-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.event-page__detail h3 {
  margin: 0 0 0.5rem;
  color: var(--color-courage);
  font-size: 1.05rem;
}

.event-page__detail p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
}

/* ----------------------------------------------------------
   Participate Section
   ---------------------------------------------------------- */

.event-page__participate {
  max-width: 1100px;
  margin: 0 auto 4rem;
}

.event-page__participate > h2,
.event-page__section > h2,
.event-page__community > h2 {
  margin: 0 0 1rem;
  color: var(--color-hope);
  font-size: clamp(1.7rem, 3vw, 2.3rem);
}

.event-page__participate > p {
  max-width: 800px;
  margin: 0 auto 2rem;
  text-align: center;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-muted);
}

/* ----------------------------------------------------------
   Action Cards
   ---------------------------------------------------------- */

.event-page__actions {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.event-page__action {
  display: flex;
  flex-direction: column;

  padding: 1.5rem;

  background: #ffffff;
  border-radius: 1rem;

  border-top: 4px solid var(--color-hope);

  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.07);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.event-page__action:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.11);
}

.event-page__action--primary {
  border-top-color: var(--color-courage);
  background: #fffaf5;
}

.event-page__action h3 {
  margin: 0 0 0.65rem;
  color: var(--color-hope);
  font-size: 1.25rem;
  line-height: 1.3;
}

.event-page__action--primary h3 {
  color: var(--color-courage);
}

.event-page__action p {
  margin: 0 0 1rem;
  color: var(--color-muted);
  font-size: 0.98rem;
  line-height: 1.6;
}

.event-page__action a {
  margin-top: auto;
  align-self: flex-start;

  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-hope);
  text-decoration: none;
}

.event-page__action a:hover {
  text-decoration: underline;
}

/* ----------------------------------------------------------
   General Sections
   ---------------------------------------------------------- */

.event-page__section,
.event-page__community {
  max-width: 950px;
  margin: 0 auto 3.5rem;
}

.event-page__section p,
.event-page__community p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-muted);
}

/* ----------------------------------------------------------
   Event Features
   ---------------------------------------------------------- */

.event-page__features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 1.75rem;
}

.event-page__feature {
  padding: 1.25rem;

  background: #ffffff;
  border-radius: 0.85rem;

  border-top: 3px solid var(--color-hope);

  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}

.event-page__feature:nth-child(2n) {
  border-top-color: var(--color-courage);
}

.event-page__feature h3 {
  margin: 0 0 0.4rem;
  color: var(--color-hope);
  font-size: 1.05rem;
}

.event-page__feature p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
}

/* ----------------------------------------------------------
   Community Links
   ---------------------------------------------------------- */

.event-page__community {
  padding: 2rem;
  background: #f8f6fb;
  border-radius: 1rem;
  text-align: center;
}

.event-page__community > h2 {
  text-align: center;
}

.event-page__community-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.25rem;
  margin-top: 1.5rem;
}

.event-page__community-links a {
  font-weight: 700;
  color: var(--color-hope);
  text-decoration: none;
}

.event-page__community-links a:hover {
  text-decoration: underline;
}

/* ----------------------------------------------------------
   Final CTA
   ---------------------------------------------------------- */

.event-page__cta {
  max-width: 800px;
  margin: 0 auto;

  padding: 2.5rem 2rem;

  background: #f1f8f8;
  border-radius: 1rem;

  text-align: center;
}

.event-page__cta h2 {
  margin: 0 0 0.75rem;
  color: var(--color-hope);
  font-size: clamp(1.7rem, 3vw, 2.3rem);
}

.event-page__cta p {
  margin: 0 0 0.5rem;
  color: var(--color-muted);
  font-size: 1rem;
  line-height: 1.6;
}

.event-page__cta a {
  display: inline-block;
  margin-top: 1rem;

  font-weight: 700;
  color: var(--color-hope);
  text-decoration: none;
}

.event-page__cta a:hover {
  text-decoration: underline;
}

/* ----------------------------------------------------------
   Responsive
   ---------------------------------------------------------- */

@media (max-width: 992px) {

  .event-page__image {
    margin-left: 1rem;
    margin-right: 1rem;
  }

  .event-page__features {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {

  .event-page {
    padding: 2.5rem 1rem 3.5rem;
  }

  .event-page__intro {
    margin-bottom: 2rem;
  }

  .event-page__intro h1 {
    font-size: 1.9rem;
  }

  .event-page__intro p:not(.event-page__lead) {
    font-size: 0.95rem;
  }

  .event-page__image {
    margin: 0 0 2rem;
  }

  .event-page__image img {
    border-radius: 0.75rem;
  }

  .event-page__details {
    padding: 1.5rem;
    margin-bottom: 2.5rem;
  }

  .event-page__details-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .event-page__actions {
    grid-template-columns: 1fr;
  }

  .event-page__features {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }

  .event-page__feature {
    padding: 1rem;
  }

  .event-page__section,
  .event-page__community {
    margin-bottom: 2.75rem;
  }

  .event-page__community {
    padding: 1.5rem;
  }

  .event-page__community-links {
    flex-direction: column;
    gap: 0.75rem;
  }

  .event-page__cta {
    padding: 2rem 1.25rem;
  }
}

@media (max-width: 400px) {

  .event-page {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .event-page__features {
    grid-template-columns: 1fr;
  }

  .event-page__action {
    padding: 1.25rem;
  }
}


/* Rapid Contact EX */
 .mod_rapid_contact_ex {
	 width: 100%;
	 max-width: 550px;	
}
.rpx_form {
	font-size: 1.15rem;
}
 .rpx_label {
	 padding-top: 10px;
}
 #rpx_File_upload {
	 height: 60px !important;
	 margin-bottom: 20px;
}
 .rpx_Disclaimer_agree0_label {
	 margin-top: 20px;
}
 #rpx_Disclaimer_agree {
	 display: inline list-item !important;
	 float: left;
	 top: 3px !important;
}
 .rpx_label required {
	 color: #ff0000 !important;
}
 .rpx_copy_label {
	 margin-top: 20px;
}
 #rpx_copy {
	 display: inline list-item !important;
	 float: left;
	 top: 3px !important;
}
 .rpx_field .rpx_field_button form-group .rpx_label {
	 margin-left: 30px;
	 display: block;
}
.rpx_form_container .checkbox, .rpx_form_container .radio
{
  vertical-align: baseline !important;
  margin-right: 5px;
}
/* End Rapid Contact EX */

/* eShop */


.eshop-product-introtext {
	font-size: 1.1rem;
	line-height: 1.8;
}

.eshop-image-block .image.img-polaroid {
	 border-width: 0 !important;
	 box-shadow: 0 !important;
	 -webkit-box-shadow: 0 !important;
}

 #products-list .eshop-product-desc, #products-list .product-infor-block a {
	 
}

.eshop-image-block .image.img-polaroid {
  border-width: 0 !important;
  box-shadow: 0 !important;
  -webkit-box-shadow: 0 !important;
}

.list .eshop-info-block {
	 width: 70%;
 }

.eshop-info-block h5 {
  font-size: 20px !important;
}

#products-list .eshop-product-desc,
#products-list .product-infor-block a {
  line-height: 1.2;
}

.eshop-container {
padding: 40px 0 30px 0;
}

/* end eShop */

/* =========================================================
   OUR STORY
   ========================================================= */

.story-page {
  max-width: 1120px;
  margin: 0 auto;
  padding: 70px 24px 100px;
  color: #39344a;
}

.story-page h1,
.story-page h2,
.story-page h3 {
  color: #4d2f8b;
}

.story-page h1 {
  margin: 0 0 24px;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.05;
  font-weight: 700;
}

.story-page h2 {
  margin: 0 0 18px;
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  line-height: 1.15;
}

.story-page h3 {
  margin: 0 0 8px;
  font-size: 1.15rem;
}

.story-page p {
  margin: 0 0 18px;
  line-height: 1.7;
}

.story-page a {
  color: #4d2f8b;
}

.story-page__hero {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 55px;
  align-items: center;
  margin-bottom: 70px;
}

.story-page__eyebrow {
  margin-bottom: 12px !important;
  color: #f36f21;
  font-weight: 700;
  font-size: 1.05rem;
}

.story-page__highlight {
  color: #4d2f8b;
  font-weight: 700;
  font-size: 1.15rem;
}

.story-page__hero-image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 24px;
}

.story-page__section {
  margin-bottom: 65px;
}

.story-page__two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 45px;
  align-items: start;
}

.story-page__section-heading {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.story-page__section-heading h2 {
  margin: 0;
}

.story-page__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #f0ebf9;
  color: #4d2f8b;
  font-size: 1.5rem;
}

.story-page__question {
  padding: 35px;
  border: 1px solid #f6b27d;
  border-radius: 20px;
  background: #fff9f3;
}

.story-page__question-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: #f36f21;
  color: #fff;
  font-size: 1.4rem;
}

.story-page__question h2 {
  color: #e95f16;
}

.story-page__questions {
  margin: 25px 0;
  padding: 0;
  list-style: none;
}

.story-page__questions li {
  position: relative;
  margin-bottom: 12px;
  padding-left: 28px;
  line-height: 1.55;
}

.story-page__questions li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #7b50b3;
  font-weight: 700;
}

.story-page__framework {
  padding: 35px;
  border-radius: 20px;
  background: #f7f5fa;
}

.story-page__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 30px 0;
}

.story-page__step {
  min-height: 150px;
  padding: 18px;
  border: 1px solid #ddd5eb;
  border-top: 4px solid #4d2f8b;
  border-radius: 12px;
  background: #fff;
}

.story-page__step--discover {
  border-top-color: #6b43a5;
}

.story-page__step--define {
  border-top-color: #f36f21;
}

.story-page__step--develop {
  border-top-color: #25a7a3;
}

.story-page__step--defend {
  border-top-color: #5276b9;
}

.story-page__step-number {
  display: block;
  margin-bottom: 12px;
  color: #8d7aa8;
  font-size: 0.8rem;
  font-weight: 700;
}

.story-page__step h3 {
  margin-bottom: 8px;
}

.story-page__step p {
  margin: 0;
  font-size: 0.9rem;
}

.story-page__framework-note {
  margin-top: 20px;
}

.story-page__text-link {
  font-weight: 600;
  text-decoration: none;
}

.story-page__text-link:hover {
  text-decoration: underline;
}

.story-page__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 70px;
}

.story-page__card {
  padding: 35px;
  border-radius: 20px;
}

.story-page__card--purple {
  background: #f7f4fb;
}

.story-page__card--orange {
  background: #fff8f1;
}

.story-page__card-emphasis {
  margin-top: 25px !important;
  color: #4d2f8b;
  font-weight: 600;
}

.story-page__card-emphasis strong {
  display: block;
  font-size: 1.15rem;
}

.story-page__going {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
  margin-bottom: 60px;
}

.story-page__tagline {
  color: #f36f21;
  font-size: 1.25rem;
  font-weight: 700;
}

.story-page__vision {
  padding: 45px 30px;
  border-radius: 24px;
  background: #f0ebf9;
  text-align: center;
}

.story-page__vision p {
  margin: 0;
  color: #4d2f8b;
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 600;
  font-style: italic;
  line-height: 1.45;
}

.story-page__vision span {
  display: block;
  margin-top: 18px;
  color: #4d2f8b;
  font-size: 2rem;
}

.story-page__cta {
  position: relative;
  display: grid;
  grid-template-columns: 160px 1fr auto;
  gap: 25px;
  align-items: center;
  padding: 25px 35px;
  border: 1px solid #cce5e4;
  border-radius: 22px;
  background: #f1fafa;
  overflow: hidden;
}

.story-page__cta-cammie {
  align-self: end;
  height: 135px;
}

.story-page__cta-cammie img {
  display: block;
  width: 180px;
  height: auto;
}

.story-page__cta-content h2 {
  margin-bottom: 8px;
}

.story-page__cta-content p {
  margin: 0;
}

.story-page__button {
  display: inline-block;
  padding: 14px 22px;
  border-radius: 30px;
  background: #4d2f8b;
  color: #fff !important;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}

.story-page__button:hover {
  background: #3d2471;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 850px) {

  .story-page {
    padding: 50px 20px 70px;
  }

  .story-page__hero,
  .story-page__two-column,
  .story-page__cards,
  .story-page__going {
    grid-template-columns: 1fr;
  }

  .story-page__hero {
    gap: 30px;
  }

  .story-page__hero-image {
    order: -1;
  }

  .story-page__steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .story-page__cta {
    grid-template-columns: 110px 1fr;
  }

  .story-page__cta-action {
    grid-column: 1 / -1;
    text-align: center;
  }

  .story-page__cta-cammie {
    height: 110px;
  }

  .story-page__cta-cammie img {
    width: 140px;
  }

  .story-page__button {
    white-space: normal;
  }
}


@media (max-width: 520px) {

  .story-page {
    padding: 35px 16px 55px;
  }

  .story-page h1 {
    font-size: 2.25rem;
  }

  .story-page h2 {
    font-size: 1.55rem;
  }

  .story-page__question,
  .story-page__framework,
  .story-page__card {
    padding: 25px;
  }

  .story-page__steps {
    grid-template-columns: 1fr;
  }

  .story-page__step {
    min-height: auto;
  }

  .story-page__cta {
    display: block;
    text-align: center;
    padding: 25px 20px;
  }

  .story-page__cta-cammie {
    display: none;
  }

  .story-page__cta-action {
    margin-top: 22px;
  }

}

/* =========================================================
   MISSION & VISION
   ========================================================= */

.mission-page {
  max-width: 1120px;
  margin: 0 auto;
  padding: 70px 24px 100px;
  color: #39344a;
}

.mission-page h1,
.mission-page h2,
.mission-page h3 {
  color: #4d2f8b;
}

.mission-page h1 {
  max-width: 850px;
  margin: 0 auto 25px;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.08;
}

.mission-page h2 {
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  line-height: 1.15;
}

.mission-page p {
  line-height: 1.7;
}

.mission-page__intro {
  max-width: 900px;
  margin: 0 auto 75px;
  text-align: center;
}

.mission-page__eyebrow {
  margin-bottom: 10px;
  color: #f36f21 !important;
  font-size: 1rem;
  font-weight: 700;
}

.mission-page__lead {
  max-width: 780px;
  margin: 0 auto 25px;
  font-size: 1.15rem;
}

.mission-page__begins {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 30px 0;
}

.mission-page__begins span {
  padding: 10px 18px;
  border-radius: 30px;
  background: #f0ebf9;
  color: #4d2f8b;
  font-weight: 600;
}


/* Mission / Vision */

.mission-page__purpose {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 65px;
}

.mission-page__purpose-card {
  padding: 40px;
  border-radius: 22px;
}

.mission-page__purpose-card--mission {
  background: #f7f4fb;
  border-top: 5px solid #4d2f8b;
}

.mission-page__purpose-card--vision {
  background: #fff8f1;
  border-top: 5px solid #f36f21;
}

.mission-page__purpose-label {
  margin-bottom: 14px;
  color: #f36f21;
  font-size: .9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.mission-page__purpose-card--vision
.mission-page__purpose-label {
  color: #4d2f8b;
}

.mission-page__purpose-card h2 {
  margin-bottom: 22px;
}

.mission-page__purpose-statement {
  color: #4d2f8b;
  font-size: 1.08rem;
  font-weight: 600;
}


/* Vision detail */

.mission-page__vision-detail {
  max-width: 900px;
  margin: 0 auto 75px;
  padding: 35px 40px;
  border-left: 5px solid #4d2f8b;
  border-radius: 0 20px 20px 0;
  background: #f7f5fa;
}

.mission-page__vision-detail-heading {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 18px;
}

.mission-page__vision-detail-heading h2 {
  margin: 0;
}

.mission-page__small-label {
  margin: 0 0 5px;
  color: #f36f21;
  font-size: .85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.mission-page__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 50px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #ede6f8;
  color: #4d2f8b;
  font-size: 1.7rem;
}


/* Beliefs */

.mission-page__beliefs {
  margin-bottom: 75px;
}

.mission-page__section-intro {
  max-width: 700px;
  margin-bottom: 35px;
}

.mission-page__section-intro h2 {
  margin-bottom: 15px;
}

.mission-page__belief-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.mission-page__belief {
  position: relative;
  padding: 30px;
  border: 1px solid #e5e0ed;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 8px 25px rgba(77, 47, 139, .06);
}

.mission-page__belief-number {
  display: block;
  margin-bottom: 14px;
  color: #a395ba;
  font-size: .8rem;
  font-weight: 700;
}

.mission-page__belief h3 {
  margin-bottom: 12px;
  font-size: 1.3rem;
}

.mission-page__belief p {
  margin: 0;
}

.mission-page__belief--featured {
  grid-column: 1 / -1;
  background: #fff8f1;
  border-color: #f4c7a5;
}


/* Guiding idea */

.mission-page__guiding {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 45px;
  align-items: center;
  margin-bottom: 65px;
}

.mission-page__guiding-content {
  padding-left: 10px;
}

.mission-page__guiding-content h2 {
  margin-bottom: 20px;
  font-size: clamp(2rem, 4vw, 3rem);
}

.mission-page__guiding-art {
  padding: 45px 30px;
  border-radius: 25px;
  background: #eee7f8;
  text-align: center;
}

.mission-page__guiding-art p {
  margin: 0;
  color: #4d2f8b;
  font-size: 1.35rem;
  font-weight: 600;
  font-style: italic;
  line-height: 1.5;
}

.mission-page__heart {
  margin-bottom: 12px;
  color: #4d2f8b;
  font-size: 3rem;
}


/* CTA */

.mission-page__cta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 35px;
  align-items: center;
  padding: 35px 40px;
  border: 1px solid #cde5e4;
  border-radius: 22px;
  background: #f1fafa;
}

.mission-page__cta h2 {
  margin-bottom: 12px;
}

.mission-page__cta p {
  margin: 0;
}

.mission-page__button {
  display: inline-block;
  padding: 14px 23px;
  border-radius: 30px;
  background: #4d2f8b;
  color: #fff !important;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}

.mission-page__button:hover {
  background: #3d2471;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 800px) {

  .mission-page {
    padding: 50px 20px 70px;
  }

  .mission-page__purpose,
  .mission-page__guiding {
    grid-template-columns: 1fr;
  }

  .mission-page__purpose-card {
    padding: 30px;
  }

  .mission-page__belief-grid {
    grid-template-columns: 1fr;
  }

  .mission-page__belief--featured {
    grid-column: auto;
  }

  .mission-page__cta {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .mission-page__button {
    white-space: normal;
  }
}


@media (max-width: 520px) {

  .mission-page {
    padding: 35px 16px 55px;
  }

  .mission-page h1 {
    font-size: 2.3rem;
  }

  .mission-page__begins {
    gap: 7px;
  }

  .mission-page__begins span {
    padding: 8px 13px;
    font-size: .9rem;
  }

  .mission-page__purpose-card,
  .mission-page__vision-detail,
  .mission-page__belief,
  .mission-page__cta {
    padding: 25px;
  }

  .mission-page__vision-detail-heading {
    align-items: flex-start;
  }

  .mission-page__guiding-art {
    padding: 35px 20px;
  }

}

/* =========================================================
   THE CAMEL PROJECT
   LEADERSHIP PAGE
   ========================================================= */

.leadership-page {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
    padding: 80px 0 100px;
    color: #40384d;
}


/* =========================================================
   TYPOGRAPHY
   ========================================================= */

.leadership-page h1,
.leadership-page h2,
.leadership-page h3,
.leadership-page p {
    margin-top: 0;
}

.leadership-page h1,
.leadership-page h2,
.leadership-page h3 {
    color: #4d2b87;
}

.leadership-page p {
    line-height: 1.7;
}

.leadership-page .eyebrow {
    margin-bottom: 10px;
    color: #f36c21;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.leadership-page a {
    color: #4d2b87;
    font-weight: 600;
    text-decoration: none;
}

.leadership-page a:hover {
    color: #f36c21;
}


/* =========================================================
   INTRODUCTION
   ========================================================= */

.leadership-page__intro {
    max-width: 900px;
    margin: 0 auto 85px;
    text-align: center;
}

.leadership-page__intro h1 {
    margin-bottom: 22px;
    font-size: clamp(2.8rem, 5vw, 4.8rem);
    line-height: 1.02;
    font-weight: 700;
}

.leadership-page__intro-lead {
    max-width: 760px;
    margin: 0 auto 18px;
    color: #4d2b87;
    font-size: 1.35rem;
    line-height: 1.5;
    font-weight: 500;
}

.leadership-page__intro > p:not(.eyebrow):not(.leadership-page__intro-lead) {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.leadership-page__values {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.leadership-page__values span {
    padding: 8px 16px;
    border-radius: 30px;
    background: #eee8fa;
    color: #4d2b87;
    font-size: 0.82rem;
    font-weight: 600;
}


/* =========================================================
   SECTION HEADINGS
   ========================================================= */

.leadership-group {
    margin-bottom: 100px;
}

.leadership-group__heading {
    max-width: 760px;
    margin-bottom: 35px;
}

.leadership-group__heading h2 {
    margin-bottom: 12px;
    font-size: clamp(2rem, 3.5vw, 3rem);
    line-height: 1.1;
}

.leadership-group__heading p {
    max-width: 720px;
}

.leadership-group__note {
    color: #746b7f;
    font-size: 0.9rem;
    font-style: italic;
}


/* =========================================================
   LEADERSHIP CARDS
   ========================================================= */

.leader-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid rgba(77, 43, 135, 0.10);
    border-top: 4px solid #4d2b87;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 12px 35px rgba(53, 35, 81, 0.08);
}

.leader-card__image {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    min-height: 245px;
    padding: 25px 25px 0;
    background: #f4f0fa;
}

.leader-card__image img {
    display: block;
    max-width: 205px;
    width: 100%;
    height: auto;
    object-fit: contain;
}

.leader-card__content {
    padding: 30px;
}

.leader-card h3 {
    margin-bottom: 7px;
    font-size: 1.65rem;
    line-height: 1.15;
}

.leader-card__role {
    margin-bottom: 22px;
    color: #746b7f;
    font-size: 0.92rem;
    line-height: 1.5;
}


/* =========================================================
   QUOTES
   ========================================================= */

.leader-card__quote {
    position: relative;
    margin: 0;
    padding: 24px 24px 24px 30px;
    border-left: 3px solid #f36c21;
    border-radius: 0 10px 10px 0;
    background: #faf8fc;
    color: #4c4655;
    font-size: 0.94rem;
    line-height: 1.7;
    font-style: italic;
}

.leader-card__quote::before {
    content: "“";
    position: absolute;
    top: -12px;
    left: 8px;
    color: #4d2b87;
    font-family: Georgia, serif;
    font-size: 3.5rem;
    font-style: normal;
    line-height: 1;
}

.leader-card__links {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 24px;
}

.leader-card__links a {
    font-size: 0.86rem;
}

.leader-card__links a::after {
    content: " →";
    color: #f36c21;
}


/* =========================================================
   FEATURED FOUNDER
   ========================================================= */

.leader-card--featured {
    display: grid;
    grid-template-columns: 330px 1fr;
    margin-bottom: 35px;
    border-top-color: #f36c21;
    background: linear-gradient(
        135deg,
        #faf7ff 0%,
        #ffffff 65%
    );
}

.leader-card--featured .leader-card__image {
    min-height: 100%;
    align-items: center;
    padding: 45px 30px;
    background: #eee8fa;
}

.leader-card--featured .leader-card__image img {
    max-width: 235px;
}

.leader-card--featured .leader-card__content {
    padding: 45px 50px;
}

.leader-card--featured h3 {
    font-size: clamp(2rem, 4vw, 3rem);
}

.leader-card--featured .leader-card__label {
    margin-bottom: 8px;
    color: #f36c21;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}


/* =========================================================
   OFFICERS GRID
   ========================================================= */

.leadership-grid {
    display: grid;
    gap: 28px;
}

.leadership-grid--officers {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.leadership-grid--officers .leader-card__image {
    min-height: 210px;
}

.leadership-grid--officers .leader-card__content {
    padding: 26px;
}


/* =========================================================
   WIDE COUNSEL CARD
   ========================================================= */

.leader-card--wide {
    display: grid;
    grid-template-columns: 280px 1fr;
    border-top-color: #18a6a0;
}

.leader-card--wide .leader-card__image {
    min-height: 100%;
    align-items: center;
    padding: 40px 25px;
    background: #eef8f7;
}

.leader-card--wide .leader-card__content {
    padding: 40px 45px;
}


/* =========================================================
   BOARD
   ========================================================= */

.leadership-grid--board {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.leadership-grid--board .leader-card:nth-child(2) {
    border-top-color: #f36c21;
}

.leadership-grid--board .leader-card:nth-child(3) {
    border-top-color: #18a6a0;
}

.leadership-grid--board .leader-card:nth-child(4) {
    border-top-color: #4d2b87;
}

.leadership-grid--board .leader-card__image {
    min-height: 220px;
}

.leadership-grid--board .leader-card__content {
    padding: 30px;
}

.leadership-grid--board .leader-card__quote {
    font-size: 0.92rem;
}


/* =========================================================
   MISSING PHOTO / PLACEHOLDER
   ========================================================= */

.leader-card__placeholder {
    margin: 25px 0 0;
    padding: 18px;
    border-radius: 10px;
    background: #f7f4fa;
    color: #746b7f;
    font-size: 0.9rem;
    font-style: italic;
}


/* =========================================================
   ADVISORY COMMITTEE
   ========================================================= */

.leadership-group--advisory {
    padding: 55px;
    border-radius: 22px;
    background: #f6f3fa;
}

.leadership-group--advisory .leadership-group__heading {
    margin-bottom: 28px;
}

.leadership-advisory {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 25px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.leadership-advisory li {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 18px 20px;
    border-left: 3px solid #4d2b87;
    border-radius: 0 10px 10px 0;
    background: #ffffff;
}

.leadership-advisory strong {
    color: #4d2b87;
    font-size: 1rem;
}

.leadership-advisory span {
    color: #746b7f;
    font-size: 0.85rem;
}


/* =========================================================
   GOOD WILL AMBASSADORS
   ========================================================= */

.leadership-ambassadors {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin: 0 0 80px;
    padding: 50px;
    border-radius: 22px;
    background: #fff7ee;
}

.leadership-ambassadors__content h2 {
    margin-bottom: 15px;
    color: #4d2b87;
    font-size: clamp(2rem, 3vw, 2.7rem);
}

.leadership-ambassadors__figure {
    margin: 0;
    text-align: center;
}

.leadership-ambassadors__figure img {
    display: block;
    width: 100%;
    max-width: 520px;
    height: auto;
    margin: 0 auto;
    border-radius: 14px;
}

.leadership-ambassadors__figure figcaption {
    margin-top: 10px;
    color: #746b7f;
    font-size: 0.85rem;
    font-style: italic;
}


/* =========================================================
   CTA
   ========================================================= */

.leadership-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
    padding: 45px 50px;
    border: 1px solid rgba(24, 166, 160, 0.18);
    border-radius: 20px;
    background: #eef8f7;
}

.leadership-cta h2 {
    margin-bottom: 10px;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.leadership-cta p {
    max-width: 680px;
    margin-bottom: 0;
}

.leadership-cta__link {
    display: inline-flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    padding: 14px 24px;
    border-radius: 30px;
    background: #4d2b87;
    color: #ffffff !important;
    font-size: 0.9rem;
    transition:
        transform 0.2s ease,
        background 0.2s ease;
}

.leadership-cta__link:hover {
    background: #f36c21;
    transform: translateY(-2px);
}

.leadership-cta__link::after {
    content: " →";
    margin-left: 6px;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

    .leadership-page {
        width: min(100% - 32px, 760px);
        padding-top: 60px;
    }

    .leadership-page__intro {
        margin-bottom: 65px;
    }

    .leader-card--featured {
        grid-template-columns: 250px 1fr;
    }

    .leader-card--featured .leader-card__content {
        padding: 35px;
    }

    .leadership-grid--officers {
        grid-template-columns: 1fr;
    }

    .leadership-grid--board {
        grid-template-columns: 1fr;
    }

    .leader-card--wide {
        grid-template-columns: 230px 1fr;
    }

    .leadership-ambassadors {
        grid-template-columns: 1fr;
    }

    .leadership-ambassadors__figure {
        order: -1;
    }

    .leadership-cta {
        align-items: flex-start;
        flex-direction: column;
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

    .leadership-page {
        width: calc(100% - 24px);
        padding: 45px 0 70px;
    }

    .leadership-page__intro {
        margin-bottom: 50px;
    }

    .leadership-page__intro h1 {
        font-size: 2.65rem;
    }

    .leadership-page__intro-lead {
        font-size: 1.12rem;
    }

    .leadership-page__values {
        gap: 7px;
    }

    .leadership-page__values span {
        padding: 7px 12px;
        font-size: 0.75rem;
    }

    .leadership-group {
        margin-bottom: 65px;
    }

    .leadership-group__heading h2 {
        font-size: 2rem;
    }

    .leader-card--featured,
    .leader-card--wide {
        display: block;
    }

    .leader-card--featured .leader-card__image,
    .leader-card--wide .leader-card__image {
        min-height: 230px;
        padding: 25px;
    }

    .leader-card--featured .leader-card__content,
    .leader-card--wide .leader-card__content {
        padding: 27px 22px;
    }

    .leader-card--featured h3 {
        font-size: 2rem;
    }

    .leader-card__content {
        padding: 24px 20px;
    }

    .leader-card h3 {
        font-size: 1.45rem;
    }

    .leader-card__quote {
        padding: 22px 18px 22px 25px;
        font-size: 0.92rem;
        line-height: 1.65;
    }

    .leadership-group--advisory {
        padding: 30px 20px;
    }

    .leadership-advisory {
        grid-template-columns: 1fr;
    }

    .leadership-ambassadors {
        margin-bottom: 60px;
        padding: 30px 20px;
        gap: 25px;
    }

    .leadership-cta {
        padding: 32px 24px;
    }

    .leadership-cta__link {
        width: 100%;
    }
}


/* =========================================================
   VERY SMALL PHONES
   ========================================================= */

@media (max-width: 380px) {

    .leadership-page {
        width: calc(100% - 18px);
    }

    .leadership-page__intro h1 {
        font-size: 2.25rem;
    }

    .leadership-page__intro-lead {
        font-size: 1rem;
    }

    .leader-card__quote {
        font-size: 0.88rem;
    }

    .leadership-page p {
        line-height: 1.65;
    }
}

/* =========================================================
   OPERATION SAFE LIVES
   ========================================================= */

.osl-page {
  --osl-purple: #4f2d8b;
  --osl-purple-dark: #402374;
  --osl-purple-light: #f5f1fa;
  --osl-orange: #f47721;
  --osl-orange-light: #fff5ed;
  --osl-teal: #278f91;
  --osl-teal-light: #eef8f8;
}


/* ---------------------------------------------------------
   INTRO
   --------------------------------------------------------- */

.osl-page .program-article__intro {
  max-width: 900px;
  margin: 0 auto 3rem;
  text-align: center;
}

.osl-page .program-article__eyebrow {
  margin: 0 0 0.75rem;
  color: var(--osl-orange);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.osl-page .program-article__lead {
  max-width: 850px;
  margin: 0 auto 1.5rem;
  color: var(--osl-purple);
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  line-height: 1.15;
  font-weight: 700;
}


/* ---------------------------------------------------------
   HERO IMAGE
   --------------------------------------------------------- */

.osl-page .program-article__hero-image {
  width: 100%;
  max-width: 1050px;
  margin: 0 auto 4rem;
  overflow: hidden;
  border-radius: 14px;
  box-shadow: 0 14px 35px rgba(54, 35, 92, 0.14);
}

.osl-page .program-article__hero-image img {
  display: block;
  width: 100%;
  height: auto;
}


/* ---------------------------------------------------------
   STANDARD CONTENT
   --------------------------------------------------------- */

.osl-page .program-article__section {
  max-width: 900px;
  margin: 0 auto 4rem;
}

.osl-page .program-article__section h2,
.osl-page .program-article__components h2 {
  color: var(--osl-purple);
}

.osl-page .program-article__section p {
  line-height: 1.75;
}


/* ---------------------------------------------------------
   HOW THE WORK COMES TOGETHER
   --------------------------------------------------------- */

.osl-page .program-article__components {
  max-width: 1050px;
  margin: 0 auto 5rem;
}

.osl-page .program-article__section-heading {
  max-width: 800px;
  margin: 0 auto 2rem;
  text-align: center;
}

.osl-page .program-article__section-heading h2 {
  margin-top: 0;
}

.osl-page .program-article__component-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.osl-page .program-article__component {
  position: relative;
  padding: 2rem;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 8px 25px rgba(54, 35, 92, 0.09);
  border-top: 4px solid var(--osl-purple);
}

.osl-page .program-article__component--purple {
  background: var(--osl-purple-light);
  border-top-color: var(--osl-purple);
}

.osl-page .program-article__component--orange {
  background: var(--osl-orange-light);
  border-top-color: var(--osl-orange);
}

.osl-page .program-article__component--teal {
  background: var(--osl-teal-light);
  border-top-color: var(--osl-teal);
}

.osl-page .program-article__component-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 1.25rem;
  border-radius: 50%;
  background: rgba(79, 45, 139, 0.1);
  color: var(--osl-purple);
  font-size: 1.3rem;
}

.osl-page .program-article__component--orange
.program-article__component-icon {
  background: rgba(244, 119, 33, 0.12);
  color: var(--osl-orange);
}

.osl-page .program-article__component--teal
.program-article__component-icon {
  background: rgba(39, 143, 145, 0.12);
  color: var(--osl-teal);
}

.osl-page .program-article__component h3 {
  margin: 0 0 0.8rem;
  color: var(--osl-purple);
  font-size: 1.35rem;
  line-height: 1.2;
}

.osl-page .program-article__component p {
  margin-bottom: 1rem;
  line-height: 1.65;
}

.osl-page .program-article__component-note {
  color: var(--osl-purple-dark);
  font-weight: 700;
  font-size: 0.9rem;
}

.osl-page .program-article__component-link {
  display: inline-block;
  margin-top: 0.5rem;
  color: var(--osl-purple);
  font-weight: 700;
  text-decoration: none;
}

.osl-page .program-article__component-link:hover,
.osl-page .program-article__component-link:focus {
  color: var(--osl-orange);
  text-decoration: underline;
}


/* ---------------------------------------------------------
   APPROACH GRID
   --------------------------------------------------------- */

.osl-page .osl-approaches {
  max-width: 1050px;
  margin-top: 5rem;
}

.osl-page .osl-approaches__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.osl-page .osl-approaches__item {
  grid-column: span 2;
  padding: 1.5rem;
  background: var(--osl-purple-light);
  border-radius: 12px;
  border-left: 3px solid var(--osl-purple);
}

.osl-page .osl-approaches__item:nth-child(2) {
  border-left-color: var(--osl-orange);
}

.osl-page .osl-approaches__item:nth-child(3) {
  border-left-color: var(--osl-teal);
}

.osl-page .osl-approaches__item:nth-child(4) {
  border-left-color: var(--osl-orange);
}

.osl-page .osl-approaches__item:nth-child(5) {
  grid-column: 2 / span 4;
  border-left-color: var(--osl-teal);
  text-align: center;
}

.osl-page .osl-approaches__item h3 {
  margin: 0 0 0.5rem;
  color: var(--osl-purple);
  font-size: 1.15rem;
}

.osl-page .osl-approaches__item p {
  margin: 0;
  line-height: 1.6;
}


/* ---------------------------------------------------------
   FRAMEWORK PANEL
   --------------------------------------------------------- */

.osl-page .osl-framework {
  max-width: 1050px;
  margin: 5rem auto;
  padding: 3rem;
  background: var(--osl-purple-light);
  border-left: 5px solid var(--osl-purple);
  border-radius: 0 14px 14px 0;
}

.osl-page .osl-framework h2 {
  margin-top: 0;
  color: var(--osl-purple);
}

.osl-page .program-article__framework-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin: 2rem 0;
}

.osl-page .program-article__framework-step {
  min-height: 120px;
  padding: 1.25rem;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 14px rgba(54, 35, 92, 0.07);
}

.osl-page .program-article__framework-step strong {
  display: block;
  margin-bottom: 0.6rem;
  color: var(--osl-orange);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
}

.osl-page .program-article__framework-step span {
  display: block;
  color: #555;
  line-height: 1.5;
}

.osl-page .program-article__framework-step b {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--osl-purple);
  font-size: 1.05rem;
}


/* ---------------------------------------------------------
   CTA
   --------------------------------------------------------- */

.osl-page .program-article__cta {
  max-width: 850px;
  margin: 5rem auto 2rem;
  padding: 3rem 2.5rem;
  text-align: center;
  background: var(--osl-teal-light);
  border: 1px solid rgba(39, 143, 145, 0.18);
  border-radius: 14px;
}

.osl-page .program-article__cta h2 {
  margin-top: 0;
  color: var(--osl-purple);
}

.osl-page .program-article__cta p {
  max-width: 650px;
  margin: 0 auto 1.5rem;
}

.osl-page .program-article__cta a {
  display: inline-block;
  padding: 0.75rem 1.4rem;
  border-radius: 999px;
  background: var(--osl-purple);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  transition:
    background-color 0.2s ease,
    transform 0.2s ease;
}

.osl-page .program-article__cta a:hover,
.osl-page .program-article__cta a:focus {
  background: var(--osl-purple-dark);
  transform: translateY(-1px);
}


/* ---------------------------------------------------------
   TABLET
   --------------------------------------------------------- */

@media (max-width: 900px) {

  .osl-page .program-article__component-grid {
    grid-template-columns: 1fr;
  }

  .osl-page .program-article__component {
    padding: 1.75rem;
  }

  .osl-page .osl-approaches__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .osl-page .osl-approaches__item,
  .osl-page .osl-approaches__item:nth-child(5) {
    grid-column: auto;
    text-align: left;
  }

  .osl-page .program-article__framework-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}


/* ---------------------------------------------------------
   PHONE
   --------------------------------------------------------- */

@media (max-width: 600px) {

  .osl-page .program-article__intro {
    margin-bottom: 2rem;
  }

  .osl-page .program-article__lead {
    font-size: 1.65rem;
  }

  .osl-page .program-article__hero-image {
    margin-bottom: 2.75rem;
    border-radius: 10px;
  }

  .osl-page .program-article__section,
  .osl-page .program-article__components {
    margin-bottom: 3rem;
  }

  .osl-page .program-article__component-grid {
    gap: 1rem;
  }

  .osl-page .program-article__component {
    padding: 1.4rem;
  }

  .osl-page .osl-approaches__grid {
    grid-template-columns: 1fr;
  }

  .osl-page .osl-approaches__item {
    grid-column: auto;
  }

  .osl-page .osl-framework {
    margin: 3rem 0;
    padding: 2rem 1.25rem;
    border-radius: 0 10px 10px 0;
  }

  .osl-page .program-article__framework-steps {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .osl-page .program-article__framework-step {
    min-height: auto;
  }

  .osl-page .program-article__cta {
    margin-top: 3rem;
    padding: 2rem 1.25rem;
  }

}

/* =========================================================
   PROGRAMS LANDING PAGE
   ========================================================= */

.programs-page {
  max-width: 1080px;
  margin: 0 auto;
  padding: 80px 32px 110px;
  color: #34265f;
}


/* ---------------------------------------------------------
   INTRO
   --------------------------------------------------------- */

.programs-page__intro {
  max-width: 820px;
  margin: 0 auto 90px;
  text-align: center;
}

.programs-page__eyebrow {
  margin: 0 0 12px;
  color: #f36b21;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.programs-page__intro h1 {
  max-width: 760px;
  margin: 0 auto 28px;
  color: #503293;
  font-size: clamp(2.5rem, 5vw, 4.4rem);
  line-height: 1.05;
  font-weight: 700;
}

.programs-page__intro p {
  max-width: 760px;
  margin: 0 auto 18px;
  color: #55505f;
  font-size: 1.08rem;
  line-height: 1.75;
}

.programs-page__intro .programs-page__lead {
  color: #40366a;
  font-size: 1.22rem;
  line-height: 1.65;
}


/* ---------------------------------------------------------
   SECTION HEADING
   --------------------------------------------------------- */

.programs-page__section-heading {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.programs-page__section-heading h2 {
  margin: 0 0 18px;
  color: #503293;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
}

.programs-page__section-heading p {
  max-width: 680px;
  margin: 0 auto;
  color: #66616d;
  font-size: 1rem;
  line-height: 1.7;
}


/* ---------------------------------------------------------
   PROGRAM GRID
   --------------------------------------------------------- */

.programs-page__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
  margin-bottom: 90px;
}

.programs-page__card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 360px;
  padding: 34px 34px 30px;
  background: #fff;
  border: 1px solid #e7e1ed;
  border-top: 4px solid #503293;
  border-radius: 16px;
  box-shadow: 0 10px 28px rgba(60, 40, 100, 0.08);
  overflow: hidden;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.programs-page__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(60, 40, 100, 0.13);
}


/* Card accent colors */

.programs-page__card--outreach {
  border-top-color: #f36b21;
}

.programs-page__card--training {
  border-top-color: #503293;
}

.programs-page__card--healing {
  border-top-color: #159a9c;
}

.programs-page__card--behavior {
  border-top-color: #6b4aad;
}


/* ---------------------------------------------------------
   CARD ICON
   --------------------------------------------------------- */

.programs-page__card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 22px;
  border-radius: 50%;
  background: #f2ecfb;
  color: #503293;
  font-size: 1.3rem;
  font-weight: 700;
}

.programs-page__card--outreach .programs-page__card-icon {
  background: #fff0e7;
  color: #f36b21;
}

.programs-page__card--healing .programs-page__card-icon {
  background: #e9f7f7;
  color: #159a9c;
}

.programs-page__card--behavior .programs-page__card-icon {
  background: #eee8fa;
  color: #6b4aad;
}


/* ---------------------------------------------------------
   CARD CONTENT
   --------------------------------------------------------- */

.programs-page__card-number {
  margin: 0 0 8px;
  color: #8f82a9;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.programs-page__card h3 {
  margin: 0 0 18px;
  color: #503293;
  font-size: clamp(1.55rem, 2.5vw, 2rem);
  line-height: 1.15;
}

.programs-page__card p {
  margin: 0 0 18px;
  color: #5d5965;
  font-size: 0.98rem;
  line-height: 1.7;
}

.programs-page__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  color: #503293;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
}

.programs-page__link span {
  transition: transform 0.2s ease;
}

.programs-page__link:hover span {
  transform: translateX(4px);
}

.programs-page__card--outreach .programs-page__link {
  color: #e45d16;
}

.programs-page__card--healing .programs-page__link {
  color: #128487;
}


/* ---------------------------------------------------------
   HEALING CULTURE FRAMEWORK
   --------------------------------------------------------- */

.programs-page__framework {
  margin: 0 auto 90px;
  padding: 52px 48px 48px;
  background: #f5f1fa;
  border-left: 4px solid #503293;
  border-radius: 0 18px 18px 0;
}

.programs-page__framework-intro {
  max-width: 760px;
  margin-bottom: 38px;
}

.programs-page__framework h2 {
  margin: 0 0 18px;
  color: #503293;
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1.15;
}

.programs-page__framework-intro p:not(.programs-page__eyebrow) {
  margin: 0 0 16px;
  color: #5c5666;
  font-size: 1rem;
  line-height: 1.7;
}

.programs-page__framework-intro strong {
  color: #503293;
}


/* ---------------------------------------------------------
   FRAMEWORK STEPS
   --------------------------------------------------------- */

.programs-page__steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 30px;
}

.programs-page__step {
  min-height: 145px;
  padding: 22px 18px;
  background: #fff;
  border: 1px solid #e3dced;
  border-top: 3px solid #503293;
  border-radius: 10px;
}

.programs-page__step--discover {
  border-top-color: #f36b21;
}

.programs-page__step--define {
  border-top-color: #503293;
}

.programs-page__step--develop {
  border-top-color: #159a9c;
}

.programs-page__step--defend {
  border-top-color: #6950b5;
}

.programs-page__step-number {
  display: block;
  margin-bottom: 10px;
  color: #9589aa;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.programs-page__step h3 {
  margin: 0 0 8px;
  color: #503293;
  font-size: 1.2rem;
}

.programs-page__step p {
  margin: 0;
  color: #66616c;
  font-size: 0.86rem;
  line-height: 1.5;
}

.programs-page__framework-link {
  color: #503293;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
}

.programs-page__framework-link span {
  margin-left: 5px;
}


/* ---------------------------------------------------------
   FINAL CTA
   --------------------------------------------------------- */

.programs-page__cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 38px 44px;
  background: #edf8f8;
  border: 1px solid #d4ecec;
  border-radius: 18px;
}

.programs-page__cta > div {
  max-width: 650px;
}

.programs-page__cta h2 {
  margin: 0 0 12px;
  color: #503293;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 1.15;
}

.programs-page__cta p:not(.programs-page__eyebrow) {
  margin: 0;
  color: #5d5964;
  font-size: 0.98rem;
  line-height: 1.65;
}

.programs-page__cta-button {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 22px;
  background: #503293;
  color: #fff;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.programs-page__cta-button:hover {
  background: #40257d;
  color: #fff;
  transform: translateY(-2px);
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 800px) {

  .programs-page {
    padding: 60px 24px 80px;
  }

  .programs-page__intro {
    margin-bottom: 65px;
  }

  .programs-page__grid {
    gap: 20px;
    margin-bottom: 65px;
  }

  .programs-page__card {
    min-height: 340px;
    padding: 28px;
  }

  .programs-page__framework {
    padding: 40px 32px;
    margin-bottom: 65px;
  }

  .programs-page__steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .programs-page__cta {
    padding: 32px;
  }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

  .programs-page {
    padding: 44px 18px 65px;
  }

  .programs-page__intro {
    margin-bottom: 52px;
  }

  .programs-page__intro h1 {
    font-size: 2.35rem;
    line-height: 1.08;
  }

  .programs-page__intro p {
    font-size: 1rem;
    line-height: 1.65;
  }

  .programs-page__intro .programs-page__lead {
    font-size: 1.08rem;
  }

  .programs-page__section-heading {
    margin-bottom: 30px;
  }

  .programs-page__section-heading h2 {
    font-size: 1.9rem;
  }

  .programs-page__grid {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 55px;
  }

  .programs-page__card {
    min-height: 0;
    padding: 26px 24px 25px;
  }

  .programs-page__card h3 {
    font-size: 1.55rem;
  }

  .programs-page__card p {
    font-size: 0.98rem;
    line-height: 1.65;
  }

  .programs-page__framework {
    padding: 32px 22px;
    margin-bottom: 55px;
    border-radius: 0 14px 14px 0;
  }

  .programs-page__framework h2 {
    font-size: 1.9rem;
  }

  .programs-page__steps {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .programs-page__step {
    min-height: 125px;
    padding: 18px 14px;
  }

  .programs-page__step h3 {
    font-size: 1.05rem;
  }

  .programs-page__step p {
    font-size: 0.82rem;
  }

  .programs-page__cta {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    padding: 30px 24px;
  }

  .programs-page__cta h2 {
    font-size: 1.85rem;
  }

  .programs-page__cta-button {
    width: 100%;
    justify-content: center;
  }
}


/* =========================================================
   VERY SMALL PHONES
   ========================================================= */

@media (max-width: 380px) {

  .programs-page {
    padding-left: 15px;
    padding-right: 15px;
  }

  .programs-page__intro h1 {
    font-size: 2.05rem;
  }

  .programs-page__steps {
    grid-template-columns: 1fr;
  }

  .programs-page__step {
    min-height: auto;
  }
}

.programs-page__card p {
  font-size: 1rem;
  line-height: 1.72;
}

.programs-page__card {
  padding: 36px 36px 32px;
}
}
@media (max-width: 600px) {
  .programs-page__card p {
    font-size: 1rem;
    line-height: 1.7;
  }

  .programs-page__card {
    padding: 28px 24px;
  }
}

/* =========================================================
   COMMUNITY OUTREACH
   ========================================================= */

.program-article__outreach {
    margin-bottom: 64px;
}

.outreach-features {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 30px;
}

.outreach-feature {
    position: relative;
    padding: 26px 26px 24px;
    background: #ffffff;
    border: 1px solid #e7e1ef;
    border-top: 3px solid #4f2d87;
    border-radius: 12px;
    box-shadow: 0 8px 22px rgba(48, 30, 91, 0.07);
}

.outreach-feature--orange {
    border-top-color: #f26a21;
}

.outreach-feature--purple {
    border-top-color: #4f2d87;
}

.outreach-feature--teal {
    border-top-color: #279b9b;
}

.outreach-feature__number {
    margin-bottom: 10px;
    color: #8b78ad;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
}

.outreach-feature h3 {
    margin: 0 0 10px;
    color: #4f2d87;
    font-size: 1.15rem;
    line-height: 1.25;
}

.outreach-feature p {
    margin: 0;
    color: #5b5662;
    font-size: 0.94rem;
    line-height: 1.65;
}


/* Make the fifth item span the width */

.outreach-feature:last-child {
    grid-column: 1 / -1;
}


/* =========================================================
   COMMUNITY OUTREACH — HERO
   ========================================================= */

.program-article__hero-image {
    max-width: 900px;
    margin: 0 auto 58px;
    overflow: hidden;
    border-radius: 14px;
    box-shadow: 0 12px 30px rgba(48, 30, 91, 0.12);
}

.program-article__hero-image img {
    display: block;
    width: 100%;
    height: auto;
}


/* =========================================================
   COMMUNITY OUTREACH — FRAMEWORK
   ========================================================= */

.program-article__framework {
    max-width: 760px;
    margin: 68px auto;
    padding: 38px 42px;
    background: #f7f4fb;
    border-left: 4px solid #4f2d87;
    border-radius: 0 14px 14px 0;
}

.program-article__framework h2 {
    margin-bottom: 18px;
    color: #4f2d87;
}

.program-article__framework a {
    color: #4f2d87;
    font-weight: 700;
    text-decoration: none;
}

.program-article__framework a:hover {
    color: #f26a21;
}


/* =========================================================
   COMMUNITY OUTREACH — CTA
   ========================================================= */

.program-article__cta {
    max-width: 760px;
    margin: 68px auto 0;
    padding: 42px 40px;
    text-align: center;
    background: #eef8f8;
    border: 1px solid #d8eeee;
    border-radius: 14px;
}

.program-article__cta h2 {
    margin-bottom: 12px;
    color: #4f2d87;
}

.program-article__cta p {
    max-width: 600px;
    margin: 0 auto 22px;
}

.program-article__cta a {
    display: inline-block;
    padding: 11px 25px;
    background: #4f2d87;
    color: #ffffff;
    border-radius: 999px;
    font-weight: 700;
    text-decoration: none;
}

.program-article__cta a:hover {
    background: #f26a21;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 700px) {

    .outreach-features {
        grid-template-columns: 1fr;
    }

    .outreach-feature:last-child {
        grid-column: auto;
    }

    .program-article__framework {
        padding: 30px 25px;
    }

    .program-article__cta {
        padding: 34px 25px;
    }
}

/* =========================================================
   TRAINING & WORKSHOPS
   ========================================================= */

.program-article--training {
    --training-purple: #4f2d87;
    --training-orange: #f26a21;
    --training-teal: #279b9b;
}


/* ---------------------------------------------------------
   Hero / Introduction
   --------------------------------------------------------- */

.program-article--training .program-article__intro {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 52px;
}

.program-article--training .program-article__eyebrow {
    margin: 0 0 14px;
    color: var(--training-orange);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.program-article--training .program-article__lead {
    max-width: 720px;
    margin: 0 auto 24px;
    color: var(--training-purple);
    font-size: clamp(2rem, 4vw, 3.15rem);
    font-weight: 700;
    line-height: 1.08;
}

.program-article--training .program-article__intro p:not(.program-article__lead):not(.program-article__eyebrow) {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}


/* ---------------------------------------------------------
   Hero Image
   --------------------------------------------------------- */

.program-article--training .program-article__hero-image {
    max-width: 900px;
    margin: 0 auto 64px;
    overflow: hidden;
    border-radius: 14px;
    box-shadow: 0 14px 32px rgba(48, 30, 91, 0.13);
}

.program-article--training .program-article__hero-image img {
    display: block;
    width: 100%;
    height: auto;
}


/* ---------------------------------------------------------
   Standard Sections
   --------------------------------------------------------- */

.program-article--training .program-article__section {
    margin-bottom: 68px;
}

.program-article--training .program-article__section h2 {
    margin-bottom: 18px;
    color: var(--training-purple);
}


/* ---------------------------------------------------------
   CPS Training Section
   --------------------------------------------------------- */

.training-cps {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 220px;
    gap: 42px;
    align-items: center;

    margin-top: 12px;
    padding: 38px 40px;

    background: #f7f4fb;
    border-left: 4px solid var(--training-purple);
    border-radius: 0 14px 14px 0;
}

.training-cps__content h2 {
    margin-top: 0;
}

.training-cps__stat {
    min-height: 180px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;

    background: #fff8f3;
    border: 1px solid #f5d7c5;
    border-radius: 14px;
}

.training-cps__stat strong {
    display: block;
    color: var(--training-orange);
    font-size: 3.8rem;
    font-weight: 700;
    line-height: 1;
}

.training-cps__stat span {
    margin-top: 12px;
    color: var(--training-purple);
    font-size: 0.9rem;
    line-height: 1.45;
}

.training-cps__stat em {
    font-style: normal;
    font-weight: 700;
}


/* ---------------------------------------------------------
   Discover / Define / Develop / Defend
   --------------------------------------------------------- */

.training-steps {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;

    margin-top: 30px;
}

.training-step {
    padding: 25px 22px 24px;

    background: #ffffff;
    border: 1px solid #e7e1ef;
    border-top: 3px solid var(--training-purple);
    border-radius: 12px;

    box-shadow: 0 8px 22px rgba(48, 30, 91, 0.07);
}

.training-step--orange {
    border-top-color: var(--training-orange);
}

.training-step--purple {
    border-top-color: var(--training-purple);
}

.training-step--teal {
    border-top-color: var(--training-teal);
}

.training-step__number {
    display: block;
    margin-bottom: 12px;

    color: #8b78ad;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
}

.training-step h3 {
    margin: 0 0 12px;
    color: var(--training-purple);
    font-size: 1.15rem;
    line-height: 1.2;
}

.training-step p {
    margin: 0;
    color: #5b5662;
    font-size: 0.9rem;
    line-height: 1.6;
}


/* ---------------------------------------------------------
   Who We Train
   --------------------------------------------------------- */

.training-audience {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 50px;

    padding: 38px 40px;

    background: #eef8f8;
    border-radius: 14px;
}

.training-audience h2 {
    margin-top: 0;
}

.training-audience p:last-child {
    margin-bottom: 0;
}


/* ---------------------------------------------------------
   Healing Culture Framework
   --------------------------------------------------------- */

.program-article--training .program-article__framework {
    max-width: 820px;
    margin: 72px auto;

    padding: 40px 44px;

    background: #f7f4fb;
    border-left: 4px solid var(--training-purple);
    border-radius: 0 14px 14px 0;
}

.program-article--training .program-article__framework h2 {
    margin-top: 0;
    color: var(--training-purple);
}

.program-article--training .program-article__framework a {
    color: var(--training-purple);
    font-weight: 700;
    text-decoration: none;
}

.program-article--training .program-article__framework a:hover {
    color: var(--training-orange);
}

.training-framework__closing {
    margin-top: 24px;
    color: var(--training-purple);
    font-size: 1.05rem;
}


/* ---------------------------------------------------------
   CTA
   --------------------------------------------------------- */

.program-article--training .program-article__cta {
    max-width: 760px;
    margin: 72px auto 0;
    padding: 42px 40px;

    text-align: center;

    background: #eef8f8;
    border: 1px solid #d8eeee;
    border-radius: 14px;
}

.program-article--training .program-article__cta h2 {
    margin-bottom: 12px;
    color: var(--training-purple);
}

.program-article--training .program-article__cta p {
    max-width: 600px;
    margin: 0 auto 22px;
}

.program-article--training .program-article__cta a {
    display: inline-block;

    padding: 11px 25px;

    background: var(--training-purple);
    color: #ffffff;

    border-radius: 999px;

    font-weight: 700;
    text-decoration: none;
}

.program-article--training .program-article__cta a:hover {
    background: var(--training-orange);
}


/* ---------------------------------------------------------
   Responsive
   --------------------------------------------------------- */

@media (max-width: 900px) {

    .training-steps {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .training-audience {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}


@media (max-width: 700px) {

    .program-article--training .program-article__intro {
        margin-bottom: 40px;
    }

    .program-article--training .program-article__lead {
        font-size: 2rem;
    }

    .program-article--training .program-article__hero-image {
        margin-bottom: 45px;
        border-radius: 10px;
    }

    .training-cps {
        grid-template-columns: 1fr;
        gap: 28px;

        padding: 30px 25px;
    }

    .training-cps__stat {
        min-height: 150px;
    }

    .training-steps {
        grid-template-columns: 1fr;
    }

    .training-audience {
        padding: 30px 25px;
    }

    .program-article--training .program-article__framework {
        padding: 30px 25px;
    }

    .program-article--training .program-article__cta {
        padding: 34px 25px;
    }
}

/* =========================================================
   HEALING HUB
   The Camel Project
   ========================================================= */

.program-article--healing-hub {
    --healing-purple: #51318b;
    --healing-purple-dark: #432875;
    --healing-purple-light: #f4f0fb;
    --healing-orange: #f47721;
    --healing-orange-light: #fff4eb;
    --healing-teal: #1596a3;
    --healing-teal-light: #eef9fa;
    --healing-border: #e7e1ef;
}


/* ---------------------------------------------------------
   INTRO / HERO
   --------------------------------------------------------- */

.program-article--healing-hub .program-article__intro {
    max-width: 760px;
    margin: 0 auto 46px;
    text-align: center;
}

.program-article--healing-hub .program-article__eyebrow {
    margin: 0 0 14px;
    color: var(--healing-orange);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    line-height: 1.4;
    text-transform: uppercase;
}

.program-article--healing-hub .program-article__intro h1 {
    position: relative;
    margin: 0 0 28px;
    padding-bottom: 24px;
    color: var(--healing-purple);
    font-size: clamp(2.3rem, 4vw, 3.7rem);
    font-weight: 700;
    line-height: 1.05;
}

.program-article--healing-hub .program-article__intro h1::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 118px;
    height: 3px;
    background: linear-gradient(
        to right,
        var(--healing-orange) 0 43%,
        transparent 43% 57%,
        var(--healing-orange) 57% 100%
    );
    transform: translateX(-50%);
}

.program-article--healing-hub .program-article__lead {
    color: #40354f;
    font-size: 1.12rem;
    font-weight: 600;
    line-height: 1.65;
}

.program-article--healing-hub .program-article__intro p {
    max-width: 700px;
    margin-right: auto;
    margin-left: auto;
}


/* ---------------------------------------------------------
   HERO IMAGE
   --------------------------------------------------------- */

.program-article--healing-hub .program-article__hero-image {
    width: min(100%, 980px);
    margin: 0 auto 64px;
    overflow: hidden;
    border-radius: 14px;
    box-shadow: 0 14px 34px rgba(61, 37, 105, 0.14);
}

.program-article--healing-hub .program-article__hero-image img {
    display: block;
    width: 100%;
    height: auto;
}


/* ---------------------------------------------------------
   MAIN CONTENT
   --------------------------------------------------------- */

.program-article--healing-hub .program-article__section {
    position: relative;
    max-width: 820px;
    margin: 0 auto;
    padding: 0 0 52px;
}

.program-article--healing-hub .program-article__section-marker {
    margin-bottom: 9px;
    color: var(--healing-orange);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.14em;
}

.program-article--healing-hub .program-article__section h2 {
    margin: 0 0 18px;
    color: var(--healing-purple);
    font-size: clamp(1.55rem, 2.5vw, 2.15rem);
    font-weight: 600;
    line-height: 1.2;
}

.program-article--healing-hub .program-article__section p {
    margin: 0 0 16px;
    color: #4d4a53;
    font-size: 1rem;
    line-height: 1.75;
}

.program-article--healing-hub .program-article__section p:last-child {
    margin-bottom: 0;
}


/* ---------------------------------------------------------
   SUPPORT / RESOURCE SECTION
   --------------------------------------------------------- */

.program-article--healing-hub .program-article__section--support {
    max-width: 900px;
    padding: 34px 42px 40px;
    margin-bottom: 52px;
    background: var(--healing-teal-light);
    border-top: 3px solid var(--healing-teal);
    border-radius: 12px;
}

.program-article--healing-hub .program-article__section--support
.program-article__section-marker {
    color: var(--healing-teal);
}

.program-article--healing-hub .program-article__list {
    margin: 22px 0 0;
    padding: 0;
    list-style: none;
}

.program-article--healing-hub .program-article__list li {
    position: relative;
    margin: 0 0 13px;
    padding-left: 28px;
    color: #4d4a53;
    line-height: 1.6;
}

.program-article--healing-hub .program-article__list li::before {
    content: "✓";
    position: absolute;
    top: 0;
    left: 0;
    color: var(--healing-teal);
    font-weight: 700;
}


/* ---------------------------------------------------------
   ACCOUNTABILITY STATEMENT
   --------------------------------------------------------- */

.program-article--healing-hub .program-article__statement {
    margin-top: 28px;
    padding: 24px 28px;
    background: var(--healing-orange-light);
    border-left: 4px solid var(--healing-orange);
    border-radius: 0 10px 10px 0;
}

.program-article--healing-hub .program-article__statement strong {
    color: var(--healing-purple);
    font-size: 1.12rem;
    line-height: 1.5;
}


/* ---------------------------------------------------------
   HEALING CULTURE FRAMEWORK
   --------------------------------------------------------- */

.program-article--healing-hub .program-article__framework {
    max-width: 900px;
    margin: 10px auto 58px;
    padding: 42px 46px;
    background: var(--healing-purple-light);
    border-left: 4px solid var(--healing-purple);
    border-radius: 0 14px 14px 0;
}

.program-article--healing-hub .program-article__framework h2 {
    margin: 0 0 18px;
    color: var(--healing-purple);
    font-size: clamp(1.6rem, 2.8vw, 2.15rem);
    line-height: 1.2;
}

.program-article--healing-hub .program-article__framework > p {
    color: #4d4a53;
    line-height: 1.7;
}

.program-article--healing-hub .program-article__framework-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin: 30px 0;
}

.program-article--healing-hub .program-article__framework-step {
    display: flex;
    flex-direction: column;
    min-height: 125px;
    padding: 18px 16px;
    background: #fff;
    border: 1px solid var(--healing-border);
    border-radius: 9px;
    box-shadow: 0 4px 12px rgba(61, 37, 105, 0.05);
}

.program-article--healing-hub .program-article__step-number {
    margin-bottom: 10px;
    color: var(--healing-orange);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.12em;
}

.program-article--healing-hub .program-article__framework-step strong {
    margin-bottom: 6px;
    color: var(--healing-purple);
    font-size: 1rem;
}

.program-article--healing-hub .program-article__framework-step > span:last-child {
    color: #65616b;
    font-size: 0.82rem;
    line-height: 1.45;
}

.program-article--healing-hub .program-article__text-link {
    display: inline-block;
    margin-top: 8px;
    color: var(--healing-purple);
    font-weight: 700;
    text-decoration: none;
}

.program-article--healing-hub .program-article__text-link:hover {
    color: var(--healing-orange);
}


/* ---------------------------------------------------------
   CTA
   --------------------------------------------------------- */

.program-article--healing-hub .program-article__cta {
    max-width: 820px;
    margin: 0 auto 80px;
    padding: 44px 50px;
    text-align: center;
    background: var(--healing-teal-light);
    border: 1px solid #d7edef;
    border-radius: 14px;
}

.program-article--healing-hub .program-article__cta h2 {
    position: relative;
    margin: 0 0 22px;
    padding-bottom: 20px;
    color: var(--healing-purple);
    font-size: clamp(1.65rem, 3vw, 2.2rem);
}

.program-article--healing-hub .program-article__cta h2::after {
    content: "♥";
    display: block;
    margin-top: 9px;
    color: var(--healing-orange);
    font-size: 0.85rem;
}

.program-article--healing-hub .program-article__cta p:not(.program-article__eyebrow) {
    max-width: 650px;
    margin: 0 auto 24px;
    color: #55515a;
    line-height: 1.7;
}

.program-article--healing-hub .program-article__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 11px 25px;
    color: #fff;
    background: var(--healing-purple);
    border-radius: 24px;
    font-size: 0.88rem;
    font-weight: 700;
    text-decoration: none;
    transition:
        background-color 0.2s ease,
        transform 0.2s ease;
}

.program-article--healing-hub .program-article__button:hover {
    color: #fff;
    background: var(--healing-purple-dark);
    transform: translateY(-2px);
}


/* ---------------------------------------------------------
   RESPONSIVE
   --------------------------------------------------------- */

@media (max-width: 900px) {

    .program-article--healing-hub .program-article__framework-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .program-article--healing-hub .program-article__framework {
        margin-right: 20px;
        margin-left: 20px;
    }

}


@media (max-width: 700px) {

    .program-article--healing-hub .program-article__intro {
        margin-bottom: 34px;
    }

    .program-article--healing-hub .program-article__intro h1 {
        font-size: 2.25rem;
    }

    .program-article--healing-hub .program-article__lead {
        font-size: 1rem;
    }

    .program-article--healing-hub .program-article__hero-image {
        margin-bottom: 42px;
        border-radius: 9px;
    }

    .program-article--healing-hub .program-article__section {
        padding-bottom: 40px;
    }

    .program-article--healing-hub .program-article__section--support {
        margin-right: 10px;
        margin-left: 10px;
        padding: 28px 24px 32px;
    }

    .program-article--healing-hub .program-article__framework {
        margin-right: 10px;
        margin-left: 10px;
        padding: 32px 26px;
    }

    .program-article--healing-hub .program-article__framework-steps {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .program-article--healing-hub .program-article__framework-step {
        min-height: 110px;
        padding: 15px 13px;
    }

    .program-article--healing-hub .program-article__cta {
        margin-right: 10px;
        margin-left: 10px;
        padding: 36px 24px;
    }

}


@media (max-width: 480px) {

    .program-article--healing-hub .program-article__intro h1 {
        font-size: 1.95rem;
    }

    .program-article--healing-hub .program-article__framework-steps {
        grid-template-columns: 1fr;
    }

    .program-article--healing-hub .program-article__framework-step {
        min-height: auto;
    }

    .program-article--healing-hub .program-article__statement {
        padding: 20px 22px;
    }

}

/* =========================================================
   COMMUNITY EVENTS
   The Camel Project
   ========================================================= */

.events-page {
    --events-purple: #51318b;
    --events-purple-dark: #432875;
    --events-purple-light: #f5f1fa;

    --events-orange: #f47721;
    --events-orange-light: #fff4eb;

    --events-teal: #1596a3;
    --events-teal-light: #eef9fa;

    --events-text: #4d4a53;
    --events-border: #e6e0ed;

    max-width: 980px;
    margin: 0 auto;
    padding: 70px 30px 100px;
}


/* ---------------------------------------------------------
   INTRO
   --------------------------------------------------------- */

.events-page__intro {
    max-width: 760px;
    margin: 0 auto 46px;
    text-align: center;
}

.events-page__eyebrow {
    margin: 0 0 12px;
    color: var(--events-orange);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    line-height: 1.4;
    text-transform: uppercase;
}

.events-page__intro h1 {
    position: relative;
    margin: 0 0 28px;
    padding-bottom: 24px;
    color: var(--events-purple);
    font-size: clamp(2.3rem, 4vw, 3.6rem);
    font-weight: 700;
    line-height: 1.08;
}

.events-page__intro h1::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 120px;
    height: 3px;
    background: linear-gradient(
        to right,
        var(--events-orange) 0 42%,
        transparent 42% 58%,
        var(--events-orange) 58% 100%
    );
    transform: translateX(-50%);
}

.events-page__intro p:not(.events-page__eyebrow) {
    max-width: 720px;
    margin-right: auto;
    margin-left: auto;
    color: var(--events-text);
    line-height: 1.75;
}

.events-page__intro .events-page__lead {
    color: #40354f;
    font-size: 1.1rem;
    font-weight: 600;
}


/* ---------------------------------------------------------
   HERO IMAGE
   --------------------------------------------------------- */

.events-page__hero-image {
    width: min(100%, 980px);
    margin: 0 auto 70px;
    overflow: hidden;
    border-radius: 14px;
    box-shadow: 0 14px 34px rgba(61, 37, 105, 0.14);
}

.events-page__hero-image img {
    display: block;
    width: 100%;
    height: auto;
}


/* ---------------------------------------------------------
   SECTIONS
   --------------------------------------------------------- */

.events-page__section {
    max-width: 850px;
    margin: 0 auto 64px;
}

.events-page__section h2 {
    margin: 0 0 18px;
    color: var(--events-purple);
    font-size: clamp(1.6rem, 2.8vw, 2.2rem);
    font-weight: 600;
    line-height: 1.2;
}

.events-page__section p {
    margin: 0 0 16px;
    color: var(--events-text);
    font-size: 1rem;
    line-height: 1.75;
}

.events-page__section--intro {
    max-width: 820px;
}


/* ---------------------------------------------------------
   SECTION HEADING
   --------------------------------------------------------- */

.events-page__section-heading {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(250px, 0.8fr);
    gap: 40px;
    align-items: end;
    margin-bottom: 28px;
}

.events-page__section-heading h2 {
    margin-bottom: 0;
}

.events-page__section-intro {
    margin-bottom: 0 !important;
}


/* ---------------------------------------------------------
   FOUR COMMUNITY VALUES
   --------------------------------------------------------- */

.events-page__values {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.events-page__value {
    position: relative;
    min-height: 190px;
    padding: 30px 30px 28px;
    background: #fff;
    border: 1px solid var(--events-border);
    border-top: 3px solid var(--events-purple);
    border-radius: 11px;
    box-shadow: 0 7px 20px rgba(61, 37, 105, 0.07);
}

.events-page__value--orange {
    border-top-color: var(--events-orange);
}

.events-page__value--teal {
    border-top-color: var(--events-teal);
}

.events-page__value-number {
    display: block;
    margin-bottom: 15px;
    color: var(--events-purple);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.14em;
}

.events-page__value--orange .events-page__value-number {
    color: var(--events-orange);
}

.events-page__value--teal .events-page__value-number {
    color: var(--events-teal);
}

.events-page__value h3 {
    margin: 0 0 12px;
    color: var(--events-purple);
    font-size: 1.35rem;
    font-weight: 600;
}

.events-page__value p {
    margin: 0;
    color: var(--events-text);
    font-size: 0.94rem;
    line-height: 1.65;
}


/* ---------------------------------------------------------
   UPCOMING EVENTS
   --------------------------------------------------------- */

.events-page__upcoming {
    max-width: 900px;
    margin-top: 10px;
}

.events-page__upcoming-card {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 28px;
    align-items: start;
    padding: 40px 44px;
    background: var(--events-orange-light);
    border: 1px solid #f5d6bd;
    border-radius: 13px;
}

.events-page__upcoming-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    color: var(--events-orange);
    background: #fff;
    border: 1px solid #f5c9a8;
    border-radius: 50%;
    font-size: 1.5rem;
}

.events-page__upcoming-card h2 {
    margin-bottom: 16px;
}

.events-page__upcoming-card p:last-child {
    margin-bottom: 0;
}


/* ---------------------------------------------------------
   FRAMEWORK
   --------------------------------------------------------- */

.events-page__framework {
    max-width: 900px;
    margin: 10px auto 62px;
    padding: 42px 46px;
    background: var(--events-purple-light);
    border-left: 4px solid var(--events-purple);
    border-radius: 0 14px 14px 0;
}

.events-page__framework h2 {
    margin: 0 0 18px;
    color: var(--events-purple);
    font-size: clamp(1.7rem, 3vw, 2.3rem);
    line-height: 1.2;
}

.events-page__framework > p {
    color: var(--events-text);
    line-height: 1.7;
}

.events-page__framework-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin: 30px 0;
}

.events-page__framework-step {
    min-height: 130px;
    padding: 18px 16px;
    background: #fff;
    border: 1px solid var(--events-border);
    border-radius: 9px;
    box-shadow: 0 4px 12px rgba(61, 37, 105, 0.05);
}

.events-page__framework-step > span {
    display: block;
    margin-bottom: 9px;
    color: var(--events-orange);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.12em;
}

.events-page__framework-step strong {
    display: block;
    margin-bottom: 7px;
    color: var(--events-purple);
    font-size: 1rem;
}

.events-page__framework-step p {
    margin: 0;
    color: #65616b;
    font-size: 0.82rem;
    line-height: 1.45;
}

.events-page__text-link {
    color: var(--events-purple);
    font-weight: 700;
    text-decoration: none;
}

.events-page__text-link:hover {
    color: var(--events-orange);
}


/* ---------------------------------------------------------
   CTA
   --------------------------------------------------------- */

.events-page__cta {
    max-width: 820px;
    margin: 0 auto;
    padding: 44px 50px;
    text-align: center;
    background: var(--events-teal-light);
    border: 1px solid #d6edef;
    border-radius: 14px;
}

.events-page__cta h2 {
    margin: 0 0 18px;
    color: var(--events-purple);
    font-size: clamp(1.7rem, 3vw, 2.25rem);
    line-height: 1.2;
}

.events-page__cta > p:not(.events-page__eyebrow) {
    max-width: 650px;
    margin: 0 auto 24px;
    color: var(--events-text);
    line-height: 1.7;
}

.events-page__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 11px 26px;
    color: #fff;
    background: var(--events-purple);
    border-radius: 24px;
    font-size: 0.88rem;
    font-weight: 700;
    text-decoration: none;
    transition:
        background-color 0.2s ease,
        transform 0.2s ease;
}

.events-page__button:hover {
    color: #fff;
    background: var(--events-purple-dark);
    transform: translateY(-2px);
}


/* ---------------------------------------------------------
   TABLET
   --------------------------------------------------------- */

@media (max-width: 800px) {

    .events-page {
        padding-right: 22px;
        padding-left: 22px;
    }

    .events-page__section-heading {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .events-page__framework-steps {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* ---------------------------------------------------------
   MOBILE
   --------------------------------------------------------- */

@media (max-width: 600px) {

    .events-page {
        padding: 50px 16px 70px;
    }

    .events-page__intro h1 {
        font-size: 2.15rem;
    }

    .events-page__intro .events-page__lead {
        font-size: 1rem;
    }

    .events-page__hero-image {
        margin-bottom: 48px;
        border-radius: 9px;
    }

    .events-page__section {
        margin-bottom: 48px;
    }

    .events-page__values {
        grid-template-columns: 1fr;
    }

    .events-page__value {
        min-height: auto;
    }

    .events-page__upcoming-card {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 30px 26px;
    }

    .events-page__framework {
        margin-right: 4px;
        margin-left: 4px;
        padding: 32px 26px;
    }

    .events-page__framework-steps {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .events-page__framework-step {
        min-height: 110px;
        padding: 15px 13px;
    }

    .events-page__cta {
        padding: 36px 24px;
    }

}


/* ---------------------------------------------------------
   SMALL MOBILE
   --------------------------------------------------------- */

@media (max-width: 430px) {

    .events-page__intro h1 {
        font-size: 1.9rem;
    }

    .events-page__framework-steps {
        grid-template-columns: 1fr;
    }

    .events-page__framework-step {
        min-height: auto;
    }

}

/* =========================================================
   BEHAVIOR INTELLIGENCE™
   ========================================================= */

.behavior-intelligence-page {
  --bi-purple: #50328a;
  --bi-purple-dark: #422477;
  --bi-orange: #f36c21;
  --bi-teal: #36aeb0;
  --bi-lilac: #f5f1fb;
  --bi-orange-soft: #fff5ed;
  --bi-teal-soft: #eef9f9;
  --bi-text: #4b4854;
  --bi-border: #e5dff0;
}


/* ---------------------------------------------------------
   INTRO
   --------------------------------------------------------- */

.behavior-intelligence-page .program-article__intro {
  max-width: 760px;
  margin: 0 auto;
  padding: 72px 24px 46px;
  text-align: center;
}

.behavior-intelligence-page .program-article__eyebrow {
  margin: 0 0 14px;
  color: var(--bi-orange);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-transform: uppercase;
}

.behavior-intelligence-page .program-article__lead {
  max-width: 700px;
  margin: 0 auto 28px;
  color: var(--bi-purple);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.08;
}

.behavior-intelligence-page .program-article__intro p:not(.program-article__lead):not(.program-article__eyebrow) {
  max-width: 690px;
  margin: 0 auto 18px;
  color: var(--bi-text);
  font-size: 1.02rem;
  line-height: 1.8;
}


/* ---------------------------------------------------------
   HERO IMAGE
   --------------------------------------------------------- */

.behavior-intelligence-page .program-article__hero-image {
  max-width: 900px;
  margin: 10px auto 70px;
  padding: 0 24px;
}

.behavior-intelligence-page .program-article__hero-image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 14px;
  box-shadow: 0 18px 40px rgba(53, 36, 92, 0.14);
}


/* ---------------------------------------------------------
   CONTENT
   --------------------------------------------------------- */

.behavior-intelligence-page .program-article__section {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px 64px;
}

.behavior-intelligence-page .program-article__section-number {
  margin: 0 0 8px;
  color: var(--bi-orange);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.behavior-intelligence-page .program-article__section h2 {
  margin: 0 0 18px;
  color: var(--bi-purple);
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  font-weight: 600;
  line-height: 1.2;
}

.behavior-intelligence-page .program-article__section p {
  margin: 0 0 18px;
  color: var(--bi-text);
  font-size: 1rem;
  line-height: 1.8;
}

.behavior-intelligence-page .program-article__section strong {
  color: var(--bi-purple-dark);
}


/* ---------------------------------------------------------
   BEHAVIOR QUESTION
   --------------------------------------------------------- */

.behavior-intelligence-page .program-article__highlight {
  margin-top: 28px !important;
  padding: 22px 26px;
  border-left: 4px solid var(--bi-orange);
  border-radius: 0 10px 10px 0;
  background: var(--bi-orange-soft);
  color: var(--bi-orange) !important;
  font-size: 1.25rem !important;
  font-weight: 700;
  line-height: 1.5 !important;
}


/* ---------------------------------------------------------
   BUILDING BEHAVIORAL AWARENESS
   --------------------------------------------------------- */

.behavior-intelligence__awareness {
  max-width: 900px !important;
}

.behavior-intelligence__awareness > p:not(.program-article__section-number) {
  max-width: 760px;
}

.behavior-intelligence__habits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 30px;
}

.behavior-intelligence__habit {
  position: relative;
  padding: 28px 26px 25px;
  border: 1px solid var(--bi-border);
  border-top: 3px solid var(--bi-purple);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(53, 36, 92, 0.07);
}

.behavior-intelligence__habit:nth-child(1) {
  border-top-color: var(--bi-orange);
}

.behavior-intelligence__habit:nth-child(3) {
  border-top-color: var(--bi-teal);
}

.behavior-intelligence__habit:nth-child(5) {
  grid-column: 1 / -1;
  background: var(--bi-lilac);
}

.behavior-intelligence__habit-number {
  display: block;
  margin-bottom: 8px;
  color: var(--bi-purple);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.behavior-intelligence__habit h3 {
  margin: 0 0 8px;
  color: var(--bi-purple);
  font-size: 1.2rem;
  font-weight: 600;
}

.behavior-intelligence__habit p {
  margin: 0 !important;
  color: var(--bi-text);
  font-size: 0.92rem !important;
  line-height: 1.65 !important;
}


/* ---------------------------------------------------------
   HEALING CULTURE FRAMEWORK
   --------------------------------------------------------- */

.behavior-intelligence__framework {
  max-width: 900px;
  margin: 5px auto 65px;
  padding: 44px 44px 42px;
  border-left: 4px solid var(--bi-purple);
  border-radius: 0 14px 14px 0;
  background: var(--bi-lilac);
}

.behavior-intelligence__framework h2 {
  max-width: 700px;
  margin: 0 0 18px;
  color: var(--bi-purple);
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  line-height: 1.2;
}

.behavior-intelligence__framework > p:not(.program-article__eyebrow) {
  max-width: 760px;
  color: var(--bi-text);
  line-height: 1.75;
}

.behavior-intelligence__framework-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 30px 0;
}

.behavior-intelligence__framework-step {
  min-height: 125px;
  padding: 20px 16px;
  border: 1px solid var(--bi-border);
  border-top: 3px solid var(--bi-purple);
  border-radius: 8px;
  background: #fff;
}

.behavior-intelligence__framework-step:nth-child(1) {
  border-top-color: var(--bi-orange);
}

.behavior-intelligence__framework-step:nth-child(3) {
  border-top-color: var(--bi-teal);
}

.behavior-intelligence__framework-step span {
  display: block;
  margin-bottom: 10px;
  color: var(--bi-orange);
  font-size: 0.65rem;
  font-weight: 700;
}

.behavior-intelligence__framework-step strong {
  display: block;
  margin-bottom: 7px;
  color: var(--bi-purple);
  font-size: 1rem;
}

.behavior-intelligence__framework-step small {
  display: block;
  color: var(--bi-text);
  font-size: 0.78rem;
  line-height: 1.45;
}


/* ---------------------------------------------------------
   CLOSING
   --------------------------------------------------------- */

.behavior-intelligence__closing {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  padding: 20px 24px;
  border-left: 3px solid var(--bi-orange);
  border-radius: 0 8px 8px 0;
  background: var(--bi-orange-soft);
}

.behavior-intelligence__closing strong {
  color: var(--bi-purple);
}

.behavior-intelligence__closing span {
  color: var(--bi-text);
}


/* ---------------------------------------------------------
   CTA
   --------------------------------------------------------- */

.behavior-intelligence-page .program-article__cta {
  max-width: 760px;
  margin: 0 auto 100px;
  padding: 52px 40px;
  border: 1px solid #d7ebeb;
  border-radius: 14px;
  background: var(--bi-teal-soft);
  text-align: center;
}

.behavior-intelligence-page .program-article__cta h2 {
  margin: 0 0 14px;
  color: var(--bi-purple);
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  line-height: 1.2;
}

.behavior-intelligence-page .program-article__cta p:not(.program-article__eyebrow) {
  max-width: 600px;
  margin: 0 auto 24px;
  color: var(--bi-text);
  line-height: 1.7;
}

.behavior-intelligence-page .program-article__button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 24px;
  border-radius: 999px;
  background: var(--bi-purple);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease;
}

.behavior-intelligence-page .program-article__button:hover,
.behavior-intelligence-page .program-article__button:focus {
  background: var(--bi-purple-dark);
  color: #fff;
  text-decoration: none;
  transform: translateY(-2px);
}

.behavior-intelligence-page .program-article__button span {
  font-size: 1.1rem;
}


/* ---------------------------------------------------------
   RESPONSIVE
   --------------------------------------------------------- */

@media (max-width: 800px) {

  .behavior-intelligence-page .program-article__intro {
    padding-top: 55px;
  }

  .behavior-intelligence-page .program-article__lead {
    font-size: 2.4rem;
  }

  .behavior-intelligence-page .program-article__hero-image {
    margin-bottom: 50px;
  }

  .behavior-intelligence__framework {
    margin-left: 24px;
    margin-right: 24px;
    padding: 34px 28px;
  }

  .behavior-intelligence__framework-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}


@media (max-width: 560px) {

  .behavior-intelligence-page .program-article__intro {
    padding: 45px 20px 35px;
  }

  .behavior-intelligence-page .program-article__lead {
    font-size: 2rem;
  }

  .behavior-intelligence-page .program-article__intro p:not(.program-article__lead):not(.program-article__eyebrow) {
    font-size: 0.95rem;
  }

  .behavior-intelligence-page .program-article__hero-image {
    padding: 0 15px;
    margin-bottom: 45px;
  }

  .behavior-intelligence-page .program-article__section {
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 48px;
  }

  .behavior-intelligence__habits {
    grid-template-columns: 1fr;
  }

  .behavior-intelligence__habit:nth-child(5) {
    grid-column: auto;
  }

  .behavior-intelligence__framework {
    margin-left: 15px;
    margin-right: 15px;
    padding: 30px 22px;
  }

  .behavior-intelligence__framework-steps {
    grid-template-columns: 1fr 1fr;
  }

  .behavior-intelligence__closing {
    display: block;
  }

  .behavior-intelligence__closing span {
    display: block;
    margin-top: 5px;
  }

  .behavior-intelligence-page .program-article__cta {
    margin-left: 15px;
    margin-right: 15px;
    margin-bottom: 65px;
    padding: 40px 22px;
  }
}

/* =========================================================
   THE CAMEL PROJECT
   Resources Page
   ========================================================= */

.resources-page {
    --resources-purple: #503293;
    --resources-purple-dark: #43277f;
    --resources-purple-soft: #f4f0fa;

    --resources-orange: #f47721;
    --resources-orange-soft: #fff5ec;

    --resources-teal: #159b9b;
    --resources-teal-soft: #eef9f9;

    --resources-text: #393344;
    --resources-muted: #706b78;
    --resources-border: #e5e0eb;
    --resources-white: #ffffff;

    max-width: 1120px;
    margin: 0 auto;
    padding: 90px 30px 120px;
    color: var(--resources-text);
}


/* ---------------------------------------------------------
   INTRO
   --------------------------------------------------------- */

.resources-page__intro {
    max-width: 820px;
    margin: 0 auto 100px;
    text-align: center;
}

.resources-page__eyebrow {
    margin: 0 0 14px;
    color: var(--resources-orange);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    line-height: 1.4;
    text-transform: uppercase;
}

.resources-page__intro h1 {
    max-width: 760px;
    margin: 0 auto 28px;
    color: var(--resources-purple);
    font-size: clamp(2.5rem, 5vw, 4.4rem);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.025em;
}

.resources-page__lead {
    max-width: 720px;
    margin: 0 auto 22px;
    color: var(--resources-purple);
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.65;
}

.resources-page__intro p:not(.resources-page__lead):not(.resources-page__eyebrow) {
    max-width: 700px;
    margin: 0 auto 16px;
    color: var(--resources-muted);
    font-size: 1rem;
    line-height: 1.8;
}


/* ---------------------------------------------------------
   SECTION
   --------------------------------------------------------- */

.resources-page__section {
    margin-bottom: 105px;
}

.resources-page__section-intro {
    max-width: 760px;
    margin: 0 auto 38px;
    text-align: center;
}

.resources-page__section-intro h2 {
    margin: 0 0 16px;
    color: var(--resources-purple);
    font-size: clamp(1.9rem, 3vw, 2.65rem);
    font-weight: 600;
    line-height: 1.15;
}

.resources-page__section-intro p:not(.resources-page__eyebrow) {
    margin: 0;
    color: var(--resources-muted);
    font-size: 0.98rem;
    line-height: 1.75;
}


/* ---------------------------------------------------------
   RESOURCE CARD GRID
   --------------------------------------------------------- */

.resources-page__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}


/* ---------------------------------------------------------
   RESOURCE CARDS
   --------------------------------------------------------- */

.resources-page__card {
    position: relative;
    display: flex;
    flex-direction: column;

    min-height: 300px;
    padding: 34px 34px 32px;

    background: var(--resources-white);
    border: 1px solid var(--resources-border);
    border-top: 4px solid var(--resources-purple);
    border-radius: 14px;

    box-shadow: 0 10px 28px rgba(67, 39, 127, 0.07);

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.resources-page__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 34px rgba(67, 39, 127, 0.12);
}


/* Accent variants */

.resources-page__card--orange {
    border-top-color: var(--resources-orange);
}

.resources-page__card--purple {
    border-top-color: var(--resources-purple);
}

.resources-page__card--teal {
    border-top-color: var(--resources-teal);
}


/* Number */

.resources-page__card-number {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 38px;
    height: 38px;
    margin-bottom: 24px;

    border-radius: 50%;

    background: var(--resources-purple-soft);
    color: var(--resources-purple);

    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.resources-page__card--orange .resources-page__card-number {
    background: var(--resources-orange-soft);
    color: var(--resources-orange);
}

.resources-page__card--teal .resources-page__card-number {
    background: var(--resources-teal-soft);
    color: var(--resources-teal);
}


/* Card title */

.resources-page__card h3 {
    margin: 0 0 14px;
    color: var(--resources-purple);
    font-size: 1.45rem;
    font-weight: 600;
    line-height: 1.2;
}


/* Card description */

.resources-page__card p:not(.resources-page__source) {
    margin: 0 0 20px;
    color: var(--resources-muted);
    font-size: 0.94rem;
    line-height: 1.7;
}


/* Source */

.resources-page__source {
    margin: auto 0 18px !important;
    color: var(--resources-purple) !important;
    font-size: 0.75rem !important;
    font-weight: 700;
    line-height: 1.5 !important;
    letter-spacing: 0.03em;
}


/* Resource link */

.resources-page__card a {
    align-self: flex-start;

    color: var(--resources-purple);
    font-size: 0.82rem;
    font-weight: 700;
    text-decoration: none;

    transition: color 0.2s ease;
}

.resources-page__card--orange a {
    color: var(--resources-orange);
}

.resources-page__card--teal a {
    color: var(--resources-teal);
}

.resources-page__card a:hover {
    color: var(--resources-purple-dark);
    text-decoration: underline;
}


/* ---------------------------------------------------------
   HEALING CULTURE FRAMEWORK PANEL
   --------------------------------------------------------- */

.resources-page__framework {
    position: relative;

    max-width: 920px;
    margin: 0 auto 90px;
    padding: 55px 55px 50px;

    background: var(--resources-purple-soft);
    border-left: 4px solid var(--resources-purple);
    border-radius: 0 16px 16px 0;

    text-align: center;
}

.resources-page__framework h2 {
    margin: 0 0 18px;
    color: var(--resources-purple);
    font-size: clamp(1.9rem, 3vw, 2.7rem);
    font-weight: 600;
    line-height: 1.15;
}

.resources-page__framework > p:not(.resources-page__eyebrow) {
    max-width: 720px;
    margin: 0 auto 18px;
    color: var(--resources-muted);
    font-size: 0.96rem;
    line-height: 1.75;
}

.resources-page__framework > a {
    display: inline-block;
    margin-top: 8px;

    color: var(--resources-purple);
    font-size: 0.82rem;
    font-weight: 700;
    text-decoration: none;
}

.resources-page__framework > a:hover {
    text-decoration: underline;
}


/* ---------------------------------------------------------
   FRAMEWORK STEPS
   --------------------------------------------------------- */

.resources-page__steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;

    max-width: 760px;
    margin: 34px auto 28px;
}

.resources-page__step {
    min-height: 115px;
    padding: 22px 15px;

    background: var(--resources-white);
    border: 1px solid var(--resources-border);
    border-radius: 9px;

    text-align: center;
}

.resources-page__step strong {
    display: block;
    margin-bottom: 9px;

    color: var(--resources-purple);
    font-size: 1rem;
    font-weight: 600;
}

.resources-page__step span {
    display: block;

    color: var(--resources-muted);
    font-size: 0.76rem;
    line-height: 1.5;
}


/* ---------------------------------------------------------
   OUTSIDE RESOURCE DISCLAIMER
   --------------------------------------------------------- */

.resources-page__disclaimer {
    max-width: 900px;
    margin: 0 auto 70px;
    padding: 30px 35px;

    background: var(--resources-orange-soft);
    border: 1px solid rgba(244, 119, 33, 0.22);
    border-left: 3px solid var(--resources-orange);
    border-radius: 10px;
}

.resources-page__disclaimer h2 {
    margin: 0 0 14px;
    color: var(--resources-purple);
    font-size: 1.35rem;
    font-weight: 600;
}

.resources-page__disclaimer p {
    margin: 0 0 10px;
    color: var(--resources-muted);
    font-size: 0.82rem;
    line-height: 1.7;
}

.resources-page__disclaimer p:last-child {
    margin-bottom: 0;
}


/* ---------------------------------------------------------
   CTA
   --------------------------------------------------------- */

.resources-page__cta {
    max-width: 850px;
    margin: 0 auto;
    padding: 55px 45px;

    background: var(--resources-teal-soft);
    border: 1px solid rgba(21, 155, 155, 0.16);
    border-radius: 16px;

    text-align: center;
}

.resources-page__cta h2 {
    margin: 0 0 16px;
    color: var(--resources-purple);
    font-size: clamp(1.9rem, 3vw, 2.6rem);
    font-weight: 600;
    line-height: 1.15;
}

.resources-page__cta p:not(.resources-page__eyebrow) {
    max-width: 650px;
    margin: 0 auto 25px;
    color: var(--resources-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

.resources-page__cta > a {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 46px;
    padding: 0 25px;

    background: var(--resources-purple);
    border-radius: 24px;

    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    text-decoration: none;

    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.resources-page__cta > a:hover {
    background: var(--resources-purple-dark);
    transform: translateY(-2px);
}


/* ---------------------------------------------------------
   RESPONSIVE
   --------------------------------------------------------- */

@media (max-width: 900px) {

    .resources-page {
        padding: 75px 24px 90px;
    }

    .resources-page__intro {
        margin-bottom: 75px;
    }

    .resources-page__section {
        margin-bottom: 80px;
    }

    .resources-page__framework {
        padding: 45px 35px;
    }

}


@media (max-width: 700px) {

    .resources-page {
        padding: 60px 20px 75px;
    }

    .resources-page__intro h1 {
        font-size: 2.55rem;
    }

    .resources-page__lead {
        font-size: 1.05rem;
    }

    .resources-page__grid {
        grid-template-columns: 1fr;
    }

    .resources-page__card {
        min-height: 0;
        padding: 30px 28px;
    }

    .resources-page__steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .resources-page__framework {
        padding: 40px 25px;
    }

    .resources-page__disclaimer {
        padding: 27px 25px;
    }

    .resources-page__cta {
        padding: 42px 25px;
    }

}


@media (max-width: 480px) {

    .resources-page__intro h1 {
        font-size: 2.2rem;
    }

    .resources-page__section-intro h2 {
        font-size: 1.85rem;
    }

    .resources-page__steps {
        grid-template-columns: 1fr;
    }

    .resources-page__step {
        min-height: 0;
    }

    .resources-page__framework h2 {
        font-size: 1.9rem;
    }

}

/* =========================================================
   THE CAMEL PROJECT
   GET INVOLVED LANDING PAGE
   ========================================================= */

.involvement-page {
    --involve-purple: #503293;
    --involve-purple-dark: #43277f;
    --involve-purple-soft: #f4f0fa;

    --involve-orange: #f47721;
    --involve-orange-soft: #fff5ec;

    --involve-teal: #159b9b;
    --involve-teal-soft: #eef9f9;

    --involve-text: #393344;
    --involve-muted: #706b78;
    --involve-border: #e5e0eb;
    --involve-white: #ffffff;

    max-width: 1120px;
    margin: 0 auto;
    padding: 90px 30px 120px;
    color: var(--involve-text);
}


/* =========================================================
   INTRO
   ========================================================= */

.involvement-page__intro {
    max-width: 820px;
    margin: 0 auto 100px;
    text-align: center;
}

.involvement-page__eyebrow {
    margin: 0 0 14px;
    color: var(--involve-orange);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    line-height: 1.4;
    text-transform: uppercase;
}

.involvement-page__intro h1 {
    max-width: 760px;
    margin: 0 auto 25px;
    color: var(--involve-purple);
    font-size: clamp(2.7rem, 5vw, 4.5rem);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.025em;
}

.involvement-page__intro p {
    max-width: 720px;
    margin: 0 auto 18px;
    color: var(--involve-muted);
    font-size: 1rem;
    line-height: 1.8;
}

.involvement-page__intro .involvement-page__lead {
    color: var(--involve-purple);
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.65;
}


/* =========================================================
   PATHWAY SECTION
   ========================================================= */

.involvement-page__section {
    margin-bottom: 100px;
}

.involvement-page__section-intro {
    max-width: 760px;
    margin: 0 auto 42px;
    text-align: center;
}

.involvement-page__section-intro h2 {
    margin: 0 0 17px;
    color: var(--involve-purple);
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 600;
    line-height: 1.15;
}

.involvement-page__section-intro p:not(.involvement-page__eyebrow) {
    margin: 0 auto;
    color: var(--involve-muted);
    font-size: 0.97rem;
    line-height: 1.75;
}


/* =========================================================
   THREE PATHWAY CARDS
   ========================================================= */

.involvement-page__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.involvement-page__card {
    display: flex;
    flex-direction: column;

    min-height: 440px;
    padding: 34px 32px 30px;

    background: var(--involve-white);
    border: 1px solid var(--involve-border);
    border-top: 4px solid var(--involve-purple);
    border-radius: 15px;

    box-shadow: 0 10px 30px rgba(67, 39, 127, 0.07);

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.involvement-page__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 17px 36px rgba(67, 39, 127, 0.13);
}

.involvement-page__card--orange {
    border-top-color: var(--involve-orange);
}

.involvement-page__card--teal {
    border-top-color: var(--involve-teal);
}


/* Card icon */

.involvement-page__card-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 46px;
    height: 46px;
    margin-bottom: 22px;

    background: var(--involve-purple-soft);
    border-radius: 50%;

    color: var(--involve-purple);
    font-size: 1.1rem;
}

.involvement-page__card--orange .involvement-page__card-icon {
    background: var(--involve-orange-soft);
    color: var(--involve-orange);
}

.involvement-page__card--teal .involvement-page__card-icon {
    background: var(--involve-teal-soft);
    color: var(--involve-teal);
}


/* Card number */

.involvement-page__card-number {
    margin: 0 0 8px;

    color: var(--involve-muted);
    font-size: 0.67rem;
    font-weight: 700;
    letter-spacing: 0.12em;
}


/* Card heading */

.involvement-page__card h3 {
    margin: 0 0 18px;

    color: var(--involve-purple);
    font-size: 1.75rem;
    font-weight: 600;
    line-height: 1.15;
}


/* Card text */

.involvement-page__card p:not(.involvement-page__card-number) {
    margin: 0 0 16px;

    color: var(--involve-muted);
    font-size: 0.9rem;
    line-height: 1.7;
}


/* Card link */

.involvement-page__card-link {
    display: inline-flex;
    align-items: center;

    margin-top: auto;

    color: var(--involve-purple);
    font-size: 0.8rem;
    font-weight: 700;
    text-decoration: none;
}

.involvement-page__card--orange .involvement-page__card-link {
    color: var(--involve-orange);
}

.involvement-page__card--teal .involvement-page__card-link {
    color: var(--involve-teal);
}

.involvement-page__card-link:hover {
    color: var(--involve-purple-dark);
    text-decoration: underline;
}


/* =========================================================
   WHY INVOLVEMENT MATTERS
   ========================================================= */

.involvement-page__statement {
    max-width: 850px;
    margin: 0 auto 90px;
    padding: 55px 60px;

    background: var(--involve-purple-soft);
    border-radius: 16px;

    text-align: center;
}

.involvement-page__statement h2 {
    margin: 0 0 20px;

    color: var(--involve-purple);
    font-size: clamp(2rem, 3vw, 2.7rem);
    font-weight: 600;
    line-height: 1.15;
}

.involvement-page__statement p:not(.involvement-page__eyebrow) {
    max-width: 690px;
    margin: 0 auto 16px;

    color: var(--involve-muted);
    font-size: 0.96rem;
    line-height: 1.75;
}

.involvement-page__statement p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   FRAMEWORK
   ========================================================= */

.involvement-page__framework {
    max-width: 920px;
    margin: 0 auto 90px;
    padding: 52px 55px 48px;

    background: var(--involve-purple-soft);
    border-left: 4px solid var(--involve-purple);
    border-radius: 0 16px 16px 0;

    text-align: center;
}

.involvement-page__framework-content h2 {
    margin: 0 0 17px;

    color: var(--involve-purple);
    font-size: clamp(2rem, 3vw, 2.7rem);
    font-weight: 600;
    line-height: 1.15;
}

.involvement-page__framework-content p:not(.involvement-page__eyebrow) {
    max-width: 700px;
    margin: 0 auto 16px;

    color: var(--involve-muted);
    font-size: 0.95rem;
    line-height: 1.75;
}

.involvement-page__framework-content strong {
    color: var(--involve-purple);
}


/* =========================================================
   FRAMEWORK STEPS
   ========================================================= */

.involvement-page__steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;

    max-width: 780px;
    margin: 34px auto 25px;
}

.involvement-page__step {
    min-height: 120px;
    padding: 20px 14px;

    background: var(--involve-white);
    border: 1px solid var(--involve-border);
    border-radius: 9px;
}

.involvement-page__step span {
    display: block;
    margin-bottom: 9px;

    color: var(--involve-orange);
    font-size: 0.63rem;
    font-weight: 700;
    letter-spacing: 0.1em;
}

.involvement-page__step strong {
    display: block;
    margin-bottom: 8px;

    color: var(--involve-purple);
    font-size: 0.95rem;
    font-weight: 600;
}

.involvement-page__step p {
    margin: 0;

    color: var(--involve-muted);
    font-size: 0.72rem;
    line-height: 1.5;
}

.involvement-page__framework-link {
    color: var(--involve-purple);
    font-size: 0.8rem;
    font-weight: 700;
    text-decoration: none;
}

.involvement-page__framework-link:hover {
    text-decoration: underline;
}


/* =========================================================
   HEALED PEOPLE QUOTE
   ========================================================= */

.involvement-page__quote {
    max-width: 650px;
    margin: 0 auto 90px;
    padding: 45px 35px;

    background: #eee7fa;
    border-radius: 16px;

    text-align: center;
}

.involvement-page__quote-mark {
    margin-bottom: 12px;

    color: var(--involve-purple);
    font-size: 1.25rem;
}

.involvement-page__quote p {
    margin: 0 0 15px;

    color: var(--involve-purple);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-style: italic;
    font-weight: 600;
    line-height: 1.25;
}

.involvement-page__quote span {
    color: var(--involve-purple-dark);
    font-size: 0.9rem;
    font-style: italic;
    line-height: 1.65;
}


/* =========================================================
   FINAL CTA
   ========================================================= */

.involvement-page__cta {
    max-width: 900px;
    margin: 0 auto;
    padding: 55px 50px;

    background: var(--involve-teal-soft);
    border: 1px solid rgba(21, 155, 155, 0.16);
    border-radius: 17px;

    text-align: center;
}

.involvement-page__cta h2 {
    margin: 0 0 17px;

    color: var(--involve-purple);
    font-size: clamp(2rem, 3vw, 2.7rem);
    font-weight: 600;
    line-height: 1.15;
}

.involvement-page__cta > p:not(.involvement-page__eyebrow) {
    max-width: 680px;
    margin: 0 auto 28px;

    color: var(--involve-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}


/* CTA buttons */

.involvement-page__cta-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.involvement-page__cta-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 44px;
    padding: 0 23px;

    background: var(--involve-purple);
    border-radius: 23px;

    color: #ffffff;
    font-size: 0.78rem;
    font-weight: 700;
    text-decoration: none;

    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.involvement-page__cta-links a:hover {
    background: var(--involve-purple-dark);
    transform: translateY(-2px);
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

    .involvement-page {
        padding: 75px 24px 90px;
    }

    .involvement-page__intro {
        margin-bottom: 75px;
    }

    .involvement-page__section {
        margin-bottom: 80px;
    }

    .involvement-page__grid {
        grid-template-columns: 1fr;
        max-width: 650px;
        margin: 0 auto;
    }

    .involvement-page__card {
        min-height: 0;
    }

    .involvement-page__framework {
        padding: 45px 35px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 700px) {

    .involvement-page {
        padding: 60px 20px 75px;
    }

    .involvement-page__intro h1 {
        font-size: 2.55rem;
    }

    .involvement-page__intro .involvement-page__lead {
        font-size: 1.05rem;
    }

    .involvement-page__section-intro h2 {
        font-size: 2rem;
    }

    .involvement-page__card {
        padding: 30px 28px;
    }

    .involvement-page__statement {
        padding: 42px 28px;
    }

    .involvement-page__framework {
        padding: 40px 25px;
    }

    .involvement-page__steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .involvement-page__quote {
        padding: 40px 25px;
    }

    .involvement-page__cta {
        padding: 43px 25px;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

    .involvement-page__intro h1 {
        font-size: 2.2rem;
    }

    .involvement-page__steps {
        grid-template-columns: 1fr;
    }

    .involvement-page__step {
        min-height: 0;
    }

    .involvement-page__cta-links {
        flex-direction: column;
        align-items: stretch;
    }

    .involvement-page__cta-links a {
        width: 100%;
    }

}

/* =========================================================
   THE CAMEL PROJECT
   VOLUNTEER PAGE
   ========================================================= */

.volunteer-page {
  --volunteer-purple: #50318f;
  --volunteer-purple-dark: #43277d;
  --volunteer-orange: #f26b21;
  --volunteer-teal: #159da5;
  --volunteer-lavender: #f5f1fb;
  --volunteer-peach: #fff5ed;
  --volunteer-mint: #eef9f9;
}


/* ---------------------------------------------------------
   SECTION LABELS
   --------------------------------------------------------- */

.involvement-page__section-label {
  margin-bottom: 10px;
  color: var(--volunteer-orange);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.4;
  text-transform: uppercase;
}


/* ---------------------------------------------------------
   WHY VOLUNTEER
   --------------------------------------------------------- */

.volunteer-page__why {
  margin-top: 70px;
}

.volunteer-page__statement {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 32px;
  padding: 24px 28px;
  border-left: 4px solid var(--volunteer-orange);
  border-radius: 0 14px 14px 0;
  background: var(--volunteer-peach);
}

.volunteer-page__statement-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
  color: var(--volunteer-orange);
  font-size: 1.25rem;
}

.volunteer-page__statement strong {
  display: block;
  margin-bottom: 5px;
  color: var(--volunteer-purple);
  font-size: 1.05rem;
}

.volunteer-page__statement p {
  margin: 0;
}


/* ---------------------------------------------------------
   VOLUNTEER OPPORTUNITY GRID
   --------------------------------------------------------- */

.volunteer-page__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 34px;
}

.volunteer-page__card {
  position: relative;
  min-height: 210px;
  padding: 27px 28px 25px;
  border: 1px solid #e7e1ef;
  border-top: 3px solid var(--volunteer-purple);
  border-radius: 13px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(50, 35, 75, 0.07);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.volunteer-page__card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(50, 35, 75, 0.11);
}

.volunteer-page__card--orange {
  border-top-color: var(--volunteer-orange);
}

.volunteer-page__card--teal {
  border-top-color: var(--volunteer-teal);
}

.volunteer-page__card-number {
  margin-bottom: 12px;
  color: var(--volunteer-purple);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.volunteer-page__card--orange .volunteer-page__card-number {
  color: var(--volunteer-orange);
}

.volunteer-page__card--teal .volunteer-page__card-number {
  color: var(--volunteer-teal);
}

.volunteer-page__card h3 {
  margin: 0 0 12px;
  color: var(--volunteer-purple);
  font-size: 1.35rem;
  line-height: 1.2;
}

.volunteer-page__card p {
  margin-bottom: 12px;
}

.volunteer-page__card-note {
  margin-top: 16px;
  color: var(--volunteer-purple);
  font-size: 0.82rem;
  font-weight: 600;
}


/* ---------------------------------------------------------
   BRING YOUR WHOLE SELF
   --------------------------------------------------------- */

.volunteer-page__skills {
  margin-top: 70px;
  padding: 40px 44px;
  border-left: 4px solid var(--volunteer-purple);
  border-radius: 0 14px 14px 0;
  background: var(--volunteer-lavender);
}

.volunteer-page__skills h2 {
  margin-bottom: 14px;
}

.volunteer-page__qualities {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 30px;
}

.volunteer-page__quality {
  min-height: 125px;
  padding: 20px 18px;
  border: 1px solid #e3dced;
  border-radius: 10px;
  background: #fff;
}

.volunteer-page__quality strong {
  display: block;
  margin-bottom: 8px;
  color: var(--volunteer-purple);
  font-size: 1rem;
}

.volunteer-page__quality span {
  display: block;
  color: #5f5869;
  font-size: 0.82rem;
  line-height: 1.55;
}


/* ---------------------------------------------------------
   EXPECTATIONS
   --------------------------------------------------------- */

.volunteer-page__expectations {
  margin-top: 70px;
}


/* ---------------------------------------------------------
   BIGGER PICTURE / FRAMEWORK
   --------------------------------------------------------- */

.volunteer-page__bigger-picture {
  margin-top: 65px;
}


/* ---------------------------------------------------------
   CTA
   --------------------------------------------------------- */

.volunteer-page__cta {
  margin-top: 65px;
  padding: 48px 40px;
  border: 1px solid #cfe8e9;
  border-radius: 15px;
  background: var(--volunteer-mint);
  text-align: center;
}

.volunteer-page__cta .involvement-page__section-label {
  margin-bottom: 8px;
}

.volunteer-page__cta h2 {
  margin-bottom: 12px;
}

.volunteer-page__cta p {
  max-width: 650px;
  margin: 0 auto 24px;
}

.volunteer-page__cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 25px;
  border-radius: 30px;
  background: var(--volunteer-purple);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.volunteer-page__cta a:hover {
  background: var(--volunteer-purple-dark);
  color: #fff;
  transform: translateY(-2px);
}


/* ---------------------------------------------------------
   RESPONSIVE
   --------------------------------------------------------- */

@media (max-width: 900px) {

  .volunteer-page__qualities {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

}


@media (max-width: 700px) {

  .volunteer-page__grid {
    grid-template-columns: 1fr;
  }

  .volunteer-page__qualities {
    grid-template-columns: 1fr;
  }

  .volunteer-page__skills {
    padding: 30px 25px;
  }

  .volunteer-page__statement {
    align-items: flex-start;
    padding: 22px;
  }

  .volunteer-page__cta {
    padding: 38px 25px;
  }

}


@media (max-width: 480px) {

  .volunteer-page__why,
  .volunteer-page__expectations {
    margin-top: 50px;
  }

  .volunteer-page__card {
    min-height: auto;
    padding: 23px;
  }

  .volunteer-page__skills {
    margin-top: 50px;
    padding: 27px 20px;
  }

  .volunteer-page__cta {
    margin-top: 50px;
    padding: 34px 20px;
  }

}

/* =========================================================
   THE CAMEL PROJECT
   PARTNER WITH US PAGE
   ========================================================= */

.partner-page {
  --partner-purple: #50318f;
  --partner-purple-dark: #43277d;
  --partner-orange: #f26b21;
  --partner-teal: #159da5;
  --partner-lavender: #f5f1fb;
  --partner-peach: #fff5ed;
  --partner-mint: #eef9f9;
}


/* ---------------------------------------------------------
   SECTION LABEL
   --------------------------------------------------------- */

.partner-page .involvement-page__section-label {
  margin-bottom: 10px;
  color: var(--partner-orange);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.4;
  text-transform: uppercase;
}


/* ---------------------------------------------------------
   WHY PARTNER
   --------------------------------------------------------- */

.partner-page__why {
  margin-top: 70px;
}

.partner-page__statement {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 32px;
  padding: 24px 28px;
  border-left: 4px solid var(--partner-orange);
  border-radius: 0 14px 14px 0;
  background: var(--partner-peach);
}

.partner-page__statement-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
  color: var(--partner-orange);
  font-size: 1.2rem;
}

.partner-page__statement strong {
  display: block;
  margin-bottom: 5px;
  color: var(--partner-purple);
  font-size: 1.05rem;
}

.partner-page__statement p {
  margin: 0;
}


/* ---------------------------------------------------------
   PARTNER TYPES
   --------------------------------------------------------- */

.partner-page__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 34px;
}

.partner-page__card {
  min-height: 185px;
  padding: 27px 28px 24px;
  border: 1px solid #e7e1ef;
  border-top: 3px solid var(--partner-purple);
  border-radius: 13px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(50, 35, 75, 0.07);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.partner-page__card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(50, 35, 75, 0.11);
}

.partner-page__card--orange {
  border-top-color: var(--partner-orange);
}

.partner-page__card--teal {
  border-top-color: var(--partner-teal);
}

.partner-page__card-number {
  margin-bottom: 12px;
  color: var(--partner-purple);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.partner-page__card--orange .partner-page__card-number {
  color: var(--partner-orange);
}

.partner-page__card--teal .partner-page__card-number {
  color: var(--partner-teal);
}

.partner-page__card h3 {
  margin: 0 0 11px;
  color: var(--partner-purple);
  font-size: 1.3rem;
  line-height: 1.2;
}

.partner-page__card p {
  margin: 0;
}


/* ---------------------------------------------------------
   WAYS TO PARTNER
   --------------------------------------------------------- */

.partner-page__opportunities {
  margin-top: 70px;
}

.partner-page__opportunity-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 32px;
}

.partner-page__opportunity {
  display: flex;
  align-items: flex-start;
  gap: 17px;
  padding: 21px 22px;
  border: 1px solid #e7e1ef;
  border-radius: 11px;
  background: #fff;
  box-shadow: 0 6px 18px rgba(50, 35, 75, 0.055);
}

.partner-page__opportunity-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--partner-lavender);
  color: var(--partner-purple);
  font-size: 0.95rem;
}

.partner-page__opportunity:nth-child(2) .partner-page__opportunity-icon,
.partner-page__opportunity:nth-child(5) .partner-page__opportunity-icon {
  background: var(--partner-peach);
  color: var(--partner-orange);
}

.partner-page__opportunity:nth-child(3) .partner-page__opportunity-icon,
.partner-page__opportunity:nth-child(6) .partner-page__opportunity-icon {
  background: var(--partner-mint);
  color: var(--partner-teal);
}

.partner-page__opportunity h3 {
  margin: 0 0 6px;
  color: var(--partner-purple);
  font-size: 1rem;
}

.partner-page__opportunity p {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.55;
}


/* ---------------------------------------------------------
   IMPACT
   --------------------------------------------------------- */

.partner-page__impact {
  margin-top: 70px;
  padding: 40px 44px;
  border-left: 4px solid var(--partner-purple);
  border-radius: 0 14px 14px 0;
  background: var(--partner-lavender);
}

.partner-page__impact-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 30px;
}

.partner-page__impact-item {
  min-height: 125px;
  padding: 20px 18px;
  border: 1px solid #e2dced;
  border-radius: 10px;
  background: #fff;
}

.partner-page__impact-item strong {
  display: block;
  margin-bottom: 8px;
  color: var(--partner-purple);
  font-size: 1rem;
}

.partner-page__impact-item span {
  display: block;
  color: #5f5869;
  font-size: 0.82rem;
  line-height: 1.5;
}


/* ---------------------------------------------------------
   SHARED APPROACH
   --------------------------------------------------------- */

.partner-page__framework {
  margin-top: 65px;
}


/* ---------------------------------------------------------
   CTA
   --------------------------------------------------------- */

.partner-page__cta {
  margin-top: 65px;
  padding: 48px 40px;
  border: 1px solid #cfe8e9;
  border-radius: 15px;
  background: var(--partner-mint);
  text-align: center;
}

.partner-page__cta h2 {
  margin-bottom: 12px;
}

.partner-page__cta p {
  max-width: 650px;
  margin: 0 auto 24px;
}

.partner-page__cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 25px;
  border-radius: 30px;
  background: var(--partner-purple);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.partner-page__cta a:hover {
  background: var(--partner-purple-dark);
  color: #fff;
  transform: translateY(-2px);
}


/* ---------------------------------------------------------
   RESPONSIVE
   --------------------------------------------------------- */

@media (max-width: 900px) {

  .partner-page__impact-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

}


@media (max-width: 700px) {

  .partner-page__grid,
  .partner-page__opportunity-grid {
    grid-template-columns: 1fr;
  }

  .partner-page__impact {
    padding: 30px 25px;
  }

  .partner-page__impact-list {
    grid-template-columns: 1fr;
  }

  .partner-page__statement {
    align-items: flex-start;
    padding: 22px;
  }

  .partner-page__cta {
    padding: 38px 25px;
  }

}


@media (max-width: 480px) {

  .partner-page__why,
  .partner-page__opportunities {
    margin-top: 50px;
  }

  .partner-page__card {
    min-height: auto;
    padding: 23px;
  }

  .partner-page__impact {
    margin-top: 50px;
    padding: 27px 20px;
  }

  .partner-page__cta {
    margin-top: 50px;
    padding: 34px 20px;
  }

}

/* =========================================================
   THE CAMEL PROJECT
   DONATE PAGE
   ========================================================= */

.donate-page {
  --donate-purple: #50318f;
  --donate-purple-dark: #43277d;
  --donate-orange: #f26b21;
  --donate-teal: #159da5;
  --donate-lavender: #f5f1fb;
  --donate-peach: #fff5ed;
  --donate-mint: #eef9f9;
}


/* ---------------------------------------------------------
   SECTION LABELS
   --------------------------------------------------------- */

.donate-page .involvement-page__section-label {
  margin-bottom: 10px;
  color: var(--donate-orange);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.4;
  text-transform: uppercase;
}


/* ---------------------------------------------------------
   WHY YOUR SUPPORT MATTERS
   --------------------------------------------------------- */

.donate-page__why {
  margin-top: 70px;
}

.donate-page__statement {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 32px;
  padding: 25px 28px;
  border-left: 4px solid var(--donate-orange);
  border-radius: 0 14px 14px 0;
  background: var(--donate-peach);
}

.donate-page__statement-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
  color: var(--donate-orange);
  font-size: 1.25rem;
}

.donate-page__statement strong {
  display: block;
  margin-bottom: 5px;
  color: var(--donate-purple);
  font-size: 1.05rem;
}

.donate-page__statement p {
  margin: 0;
}


/* ---------------------------------------------------------
   WHERE SUPPORT GOES
   --------------------------------------------------------- */

.donate-page__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 34px;
}

.donate-page__card {
  min-height: 205px;
  padding: 27px 28px 25px;
  border: 1px solid #e7e1ef;
  border-top: 3px solid var(--donate-purple);
  border-radius: 13px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(50, 35, 75, 0.07);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.donate-page__card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(50, 35, 75, 0.11);
}

.donate-page__card--orange {
  border-top-color: var(--donate-orange);
}

.donate-page__card--teal {
  border-top-color: var(--donate-teal);
}

.donate-page__card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: var(--donate-lavender);
  color: var(--donate-purple);
  font-size: 0.95rem;
}

.donate-page__card--orange .donate-page__card-icon {
  background: var(--donate-peach);
  color: var(--donate-orange);
}

.donate-page__card--teal .donate-page__card-icon {
  background: var(--donate-mint);
  color: var(--donate-teal);
}

.donate-page__card h3 {
  margin: 0 0 11px;
  color: var(--donate-purple);
  font-size: 1.3rem;
  line-height: 1.2;
}

.donate-page__card p {
  margin: 0;
}


/* ---------------------------------------------------------
   BIGGER IMPACT
   --------------------------------------------------------- */

.donate-page__impact {
  margin-top: 70px;
  padding: 42px 44px;
  border-left: 4px solid var(--donate-purple);
  border-radius: 0 14px 14px 0;
  background: var(--donate-lavender);
}

.donate-page__impact-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 30px;
}

.donate-page__impact-item {
  min-height: 130px;
  padding: 20px 18px;
  border: 1px solid #e2dced;
  border-radius: 10px;
  background: #fff;
}

.donate-page__impact-item strong {
  display: block;
  margin-bottom: 8px;
  color: var(--donate-purple);
  font-size: 1rem;
}

.donate-page__impact-item span {
  display: block;
  color: #5f5869;
  font-size: 0.82rem;
  line-height: 1.5;
}


/* ---------------------------------------------------------
   BELIEF SECTION
   --------------------------------------------------------- */

.donate-page__belief {
  margin-top: 70px;
}


/* ---------------------------------------------------------
   FRAMEWORK
   --------------------------------------------------------- */

.donate-page__framework {
  margin-top: 65px;
}


/* ---------------------------------------------------------
   QUOTE
   --------------------------------------------------------- */

.donate-page__quote {
  max-width: 520px;
  margin: 65px auto 0;
  padding: 38px 30px;
  border-radius: 15px;
  background: #eee7fa;
  color: var(--donate-purple);
  text-align: center;
}

.donate-page__quote-heart {
  display: block;
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.donate-page__quote p {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 600;
  font-style: italic;
  line-height: 1.65;
}


/* ---------------------------------------------------------
   DONATION CTA
   --------------------------------------------------------- */

.donate-page__cta {
  margin-top: 65px;
  padding: 50px 40px;
  border: 1px solid #cfe8e9;
  border-radius: 15px;
  background: var(--donate-mint);
  text-align: center;
}

.donate-page__cta h2 {
  margin-bottom: 12px;
}

.donate-page__cta p {
  max-width: 650px;
  margin: 0 auto 24px;
}

.donate-page__cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 28px;
  border-radius: 30px;
  background: var(--donate-purple);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.donate-page__cta a:hover {
  background: var(--donate-purple-dark);
  color: #fff;
  transform: translateY(-2px);
}

.donate-page__cta-note {
  margin-top: 15px !important;
  margin-bottom: 0 !important;
  color: #716a7b;
  font-size: 0.78rem;
}


/* ---------------------------------------------------------
   RESPONSIVE
   --------------------------------------------------------- */

@media (max-width: 900px) {

  .donate-page__impact-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

}


@media (max-width: 700px) {

  .donate-page__grid {
    grid-template-columns: 1fr;
  }

  .donate-page__impact {
    padding: 32px 25px;
  }

  .donate-page__impact-list {
    grid-template-columns: 1fr;
  }

  .donate-page__statement {
    align-items: flex-start;
    padding: 22px;
  }

  .donate-page__quote {
    margin-top: 50px;
  }

  .donate-page__cta {
    padding: 40px 25px;
  }

}


@media (max-width: 480px) {

  .donate-page__why,
  .donate-page__belief {
    margin-top: 50px;
  }

  .donate-page__card {
    min-height: auto;
    padding: 23px;
  }

  .donate-page__impact {
    margin-top: 50px;
    padding: 27px 20px;
  }

  .donate-page__quote {
    padding: 32px 22px;
  }

  .donate-page__quote p {
    font-size: 1.1rem;
  }

  .donate-page__cta {
    margin-top: 50px;
    padding: 34px 20px;
  }

}

/* =========================================================
   THE CAMEL PROJECT
   CONTACT PAGE
   ========================================================= */

.contact-page {
    width: min(100% - 40px, 920px);
    margin: 0 auto;
    padding: 80px 0 0;
    color: #3f2a6f;
}


/* ---------------------------------------------------------
   INTRODUCTION
   --------------------------------------------------------- */

.contact-page__intro {
    max-width: 720px;
    margin: 0 auto 55px;
    text-align: center;
}

.contact-page__eyebrow {
    margin: 0 0 12px;
    color: #f36c21;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    line-height: 1.4;
    text-transform: uppercase;
}

.contact-page__intro h1 {
    margin: 0 auto 22px;
    max-width: 700px;
    color: #513494;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.04;
    letter-spacing: -0.025em;
}

.contact-page__lead {
    max-width: 680px;
    margin: 0 auto;
    color: #625d70;
    font-size: 1.08rem;
    line-height: 1.75;
}


/* ---------------------------------------------------------
   CONTACT DETAILS CARD
   --------------------------------------------------------- */

.contact-page__details {
    display: flex;
    align-items: flex-start;
    gap: 26px;
    max-width: 760px;
    margin: 0 auto 65px;
    padding: 34px 38px;
    background: #f5f1fb;
    border-left: 4px solid #513494;
    border-radius: 0 16px 16px 0;
    box-sizing: border-box;
}

.contact-page__details-icon {
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ebe3fa;
    border-radius: 50%;
    color: #513494;
    font-size: 1.15rem;
}

.contact-page__details-content {
    flex: 1;
}

.contact-page__details-content .contact-page__eyebrow {
    margin-bottom: 7px;
}

.contact-page__details h2 {
    margin: 0 0 10px;
    color: #513494;
    font-size: 1.65rem;
    line-height: 1.2;
}

.contact-page__details p:not(.contact-page__eyebrow) {
    max-width: 620px;
    margin: 0 0 18px;
    color: #625d70;
    line-height: 1.65;
}

.contact-page__details address {
    margin: 0;
    color: #3f3850;
    font-size: 0.98rem;
    font-style: normal;
    line-height: 1.7;
}

.contact-page__details address strong {
    color: #513494;
}

.contact-page__details address a {
    color: #513494;
    text-decoration: none;
    font-weight: 600;
}

.contact-page__details address a:hover {
    color: #f36c21;
}


/* ---------------------------------------------------------
   FORM INTRODUCTION
   --------------------------------------------------------- */

.contact-page__form-intro {
    max-width: 760px;
    margin: 0 auto 25px;
}

.contact-page__form-intro h2 {
    margin: 0 0 8px;
    color: #513494;
    font-size: 2rem;
    line-height: 1.2;
}

.contact-page__form-intro > p:last-child {
    margin: 0;
    color: #6a6573;
    line-height: 1.65;
}


/* ---------------------------------------------------------
   RAPID CONTACT EX FORM
   ---------------------------------------------------------

   The :has() selector allows us to style the form generated
   by Rapid Contact EX without changing the component itself.
   The form remains fully controlled by Rapid Contact EX.
   --------------------------------------------------------- */

body:has(.contact-page) form {
    width: min(100% - 40px, 760px);
    margin: 0 auto 80px;
    padding: 38px;
    background: #ffffff;
    border: 1px solid #e8e2f0;
    border-top: 3px solid #513494;
    border-radius: 16px;
    box-shadow: 0 12px 35px rgba(55, 35, 95, 0.08);
    box-sizing: border-box;
}


/* Labels */

body:has(.contact-page) form label {
    display: none;
    margin: 0 0 7px;
    color: #403850;
    font-size: 0.94rem;
    font-weight: 600;
    line-height: 1.4;
}


/* Inputs */

body:has(.contact-page) form input[type="text"],
body:has(.contact-page) form input[type="email"],
body:has(.contact-page) form input[type="tel"],
body:has(.contact-page) form input[type="number"],
body:has(.contact-page) form input[type="url"],
body:has(.contact-page) form select,
body:has(.contact-page) form textarea {
    width: 100%;
    min-height: 48px;
    margin: 0 0 20px;
    padding: 11px 14px;
    border: 1px solid #d9d3df;
    border-radius: 8px;
    background: #ffffff;
    color: #3d3548;
    font-family: inherit;
    font-size: 0.98rem;
    line-height: 1.5;
    box-sizing: border-box;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        background-color 0.2s ease;
}

body:has(.contact-page) form textarea {
    min-height: 150px;
    resize: vertical;
}

body:has(.contact-page) form input:focus,
body:has(.contact-page) form select:focus,
body:has(.contact-page) form textarea:focus {
    outline: none;
    border-color: #513494;
    box-shadow: 0 0 0 3px rgba(81, 52, 148, 0.10);
}


/* Placeholder */

body:has(.contact-page) form input::placeholder,
body:has(.contact-page) form textarea::placeholder {
    color: #a39daa;
    opacity: 1;
}


/* ---------------------------------------------------------
   SECURITY QUESTION
   --------------------------------------------------------- */

body:has(.contact-page) form input[type="text"][name*="captcha"],
body:has(.contact-page) form input[type="text"][name*="security"] {
    max-width: 180px;
}


/* ---------------------------------------------------------
   SUBMIT BUTTON
   --------------------------------------------------------- */

body:has(.contact-page) form input[type="submit"],
body:has(.contact-page) form button[type="submit"] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    margin-top: 5px;
    padding: 11px 25px;
    border: 0;
    border-radius: 999px;
    background: #513494;
    color: #ffffff;
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1;
    cursor: pointer;
    transition:
        background-color 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

body:has(.contact-page) form input[type="submit"]:hover,
body:has(.contact-page) form button[type="submit"]:hover {
    background: #43277f;
    transform: translateY(-1px);
    box-shadow: 0 7px 18px rgba(81, 52, 148, 0.20);
}


/* ---------------------------------------------------------
   FORM VALIDATION / MESSAGES
   --------------------------------------------------------- */

body:has(.contact-page) form .error,
body:has(.contact-page) form .alert,
body:has(.contact-page) form .invalid {
    color: #b43d18;
}

body:has(.contact-page) form .success,
body:has(.contact-page) form .message {
    color: #286b67;
}


/* ---------------------------------------------------------
   FORM SPACING
   --------------------------------------------------------- */

body:has(.contact-page) form p {
    margin-top: 0;
}

body:has(.contact-page) form fieldset {
    margin: 0 0 20px;
    padding: 0;
    border: 0;
}

body:has(.contact-page) form legend {
    color: #513494;
    font-weight: 600;
}


/* ---------------------------------------------------------
   MOBILE
   --------------------------------------------------------- */

@media (max-width: 700px) {

    .contact-page {
        width: min(100% - 28px, 920px);
        padding-top: 55px;
    }

    .contact-page__intro {
        margin-bottom: 40px;
    }

    .contact-page__intro h1 {
        font-size: 2.35rem;
    }

    .contact-page__lead {
        font-size: 1rem;
    }

    .contact-page__details {
        flex-direction: column;
        gap: 18px;
        margin-bottom: 45px;
        padding: 28px 25px;
    }

    .contact-page__details-icon {
        width: 42px;
        height: 42px;
        flex-basis: 42px;
    }

    .contact-page__details h2 {
        font-size: 1.45rem;
    }

    .contact-page__form-intro h2 {
        font-size: 1.7rem;
    }

    body:has(.contact-page) form {
        width: 100%;
        margin-bottom: 55px;
        padding: 25px 20px;
        border-radius: 12px;
    }

    body:has(.contact-page) form input[type="submit"],
    body:has(.contact-page) form button[type="submit"] {
        width: 100%;
    }
}

/* =========================================================
   THE CAMEL PROJECT
   CAMMIE PAGE
   Warm / Playful Version
   ========================================================= */

.cammie-page {
  --cammie-purple: #51318f;
  --cammie-purple-dark: #432778;
  --cammie-lavender: #f4f0fa;
  --cammie-orange: #f36b21;
  --cammie-orange-soft: #fff3eb;
  --cammie-teal: #199fa5;
  --cammie-teal-soft: #edf8f8;
  --cammie-text: #4d4857;
  --cammie-muted: #777180;
  --cammie-border: #e4dfeb;

  max-width: 920px;
  margin: 0 auto;
  padding: 70px 32px 105px;
  color: var(--cammie-text);
}


/* ---------------------------------------------------------
   INTRO
   --------------------------------------------------------- */

.cammie-page__intro {
  max-width: 720px;
  margin: 0 auto 48px;
  text-align: center;
}

.cammie-page__eyebrow {
  margin: 0 0 12px;
  color: var(--cammie-orange);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.4;
  text-transform: uppercase;
}

.cammie-page__intro h1 {
  max-width: 700px;
  margin: 0 auto 22px;
  color: var(--cammie-purple);
  font-size: clamp(38px, 5vw, 57px);
  font-weight: 700;
  line-height: 1.07;
  letter-spacing: -0.025em;
}

.cammie-page__lead {
  max-width: 650px;
  margin: 0 auto 20px;
  color: var(--cammie-purple-dark);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.6;
}

.cammie-page__intro p:not(.cammie-page__eyebrow):not(.cammie-page__lead) {
  max-width: 650px;
  margin: 0 auto 15px;
  font-size: 15px;
  line-height: 1.8;
}


/* ---------------------------------------------------------
   HERO
   --------------------------------------------------------- */

.cammie-page__hero-image {
  position: relative;
  width: 100%;
  margin: 0 auto 65px;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 15px 34px rgba(67, 39, 120, 0.12);
}

.cammie-page__hero-image::after {
  content: "";
  position: absolute;
  right: 20px;
  bottom: 18px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--cammie-orange);
  box-shadow:
    -22px 5px 0 var(--cammie-teal),
    -42px -2px 0 var(--cammie-purple);
  opacity: 0.9;
}

.cammie-page__hero-image img {
  display: block;
  width: 100%;
  height: auto;
}


/* ---------------------------------------------------------
   SECTIONS
   --------------------------------------------------------- */

.cammie-page__section {
  max-width: 720px;
  margin: 0 auto 62px;
}

.cammie-page__section h2 {
  margin: 0 0 17px;
  color: var(--cammie-purple);
  font-size: 30px;
  font-weight: 600;
  line-height: 1.2;
}

.cammie-page__section p {
  margin: 0 0 17px;
  font-size: 15px;
  line-height: 1.8;
}

.cammie-page__text-link {
  display: inline-block;
  margin-top: 4px;
  color: var(--cammie-purple);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.cammie-page__text-link:hover {
  color: var(--cammie-orange);
}


/* ---------------------------------------------------------
   LITTLE NOTE
   --------------------------------------------------------- */

.cammie-page__little-note {
  display: flex;
  align-items: center;
  gap: 17px;
  margin-top: 27px;
  padding: 22px 24px;
  background: var(--cammie-orange-soft);
  border-radius: 15px;
}

.cammie-page__little-note > span {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  color: var(--cammie-orange);
  font-size: 17px;
}

.cammie-page__little-note p {
  margin: 0;
  font-size: 13px;
  line-height: 1.65;
}

.cammie-page__little-note strong {
  color: var(--cammie-purple);
}


/* ---------------------------------------------------------
   VALUES
   --------------------------------------------------------- */

.cammie-page__values {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 17px;
  margin-top: 28px;
}

.cammie-page__value {
  position: relative;
  min-height: 165px;
  padding: 25px 24px 22px;
  background: #fff;
  border: 1px solid var(--cammie-border);
  border-top: 3px solid var(--cammie-purple);
  border-radius: 14px;
  box-shadow: 0 7px 18px rgba(67, 39, 120, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cammie-page__value:hover {
  transform: translateY(-3px) rotate(-0.3deg);
  box-shadow: 0 11px 24px rgba(67, 39, 120, 0.09);
}

.cammie-page__value--orange {
  border-top-color: var(--cammie-orange);
}

.cammie-page__value--teal {
  border-top-color: var(--cammie-teal);
}

.cammie-page__value--lavender {
  border-top-color: #8063bd;
}

.cammie-page__value-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-bottom: 17px;
  border-radius: 50%;
  background: var(--cammie-lavender);
  color: var(--cammie-purple);
}

.cammie-page__value--orange .cammie-page__value-icon {
  background: var(--cammie-orange-soft);
  color: var(--cammie-orange);
}

.cammie-page__value--teal .cammie-page__value-icon {
  background: var(--cammie-teal-soft);
  color: var(--cammie-teal);
}

.cammie-page__value h3 {
  margin: 0 0 8px;
  color: var(--cammie-purple);
  font-size: 19px;
  font-weight: 600;
}

.cammie-page__value p {
  margin: 0;
  font-size: 13px;
  line-height: 1.65;
}


/* ---------------------------------------------------------
   HIGHLIGHT
   --------------------------------------------------------- */

.cammie-page__highlight {
  position: relative;
  max-width: 760px;
  margin: 72px auto;
  padding: 48px 55px 45px;
  background: var(--cammie-lavender);
  border-radius: 20px;
  text-align: center;
}

.cammie-page__highlight-dots {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin-bottom: 18px;
}

.cammie-page__highlight-dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.cammie-page__highlight-dots span:nth-child(1) {
  background: var(--cammie-orange);
}

.cammie-page__highlight-dots span:nth-child(2) {
  background: var(--cammie-purple);
}

.cammie-page__highlight-dots span:nth-child(3) {
  background: var(--cammie-teal);
}

.cammie-page__highlight h2 {
  margin: 0 0 17px;
  color: var(--cammie-purple);
  font-size: 31px;
  line-height: 1.2;
}

.cammie-page__highlight-lead {
  color: var(--cammie-purple-dark);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.6;
}

.cammie-page__highlight p:not(.cammie-page__eyebrow):not(.cammie-page__highlight-lead) {
  max-width: 620px;
  margin: 0 auto 15px;
  font-size: 14px;
  line-height: 1.75;
}


/* ---------------------------------------------------------
   FRAMEWORK
   --------------------------------------------------------- */

.cammie-page__framework {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 30px 0 28px;
}

.cammie-page__framework article {
  padding: 21px 14px 19px;
  background: #fff;
  border: 1px solid var(--cammie-border);
  border-radius: 13px;
  text-align: center;
  box-shadow: 0 5px 14px rgba(67, 39, 120, 0.05);
}

.cammie-page__framework article:nth-child(1) {
  border-top: 3px solid var(--cammie-orange);
}

.cammie-page__framework article:nth-child(2) {
  border-top: 3px solid var(--cammie-purple);
}

.cammie-page__framework article:nth-child(3) {
  border-top: 3px solid var(--cammie-teal);
}

.cammie-page__framework article:nth-child(4) {
  border-top: 3px solid #8063bd;
}

.cammie-page__framework span {
  display: block;
  margin-bottom: 8px;
  color: var(--cammie-orange);
  font-size: 15px;
}

.cammie-page__framework h3 {
  margin: 0 0 7px;
  color: var(--cammie-purple);
  font-size: 15px;
  font-weight: 600;
}

.cammie-page__framework p {
  margin: 0;
  font-size: 11px;
  line-height: 1.5;
}


/* ---------------------------------------------------------
   APPEARANCES
   --------------------------------------------------------- */

.cammie-page__appearances {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-top: 28px;
}

.cammie-page__appearances article {
  padding: 24px;
  background: #fff;
  border: 1px solid var(--cammie-border);
  border-radius: 14px;
  box-shadow: 0 6px 16px rgba(67, 39, 120, 0.05);
}

.cammie-page__appearances article:nth-child(1) {
  border-left: 4px solid var(--cammie-purple);
}

.cammie-page__appearances article:nth-child(2) {
  border-left: 4px solid var(--cammie-orange);
}

.cammie-page__appearances article:nth-child(3) {
  border-left: 4px solid var(--cammie-teal);
}

.cammie-page__appearances article:nth-child(4) {
  border-left: 4px solid #8063bd;
}

.cammie-page__appearance-icon {
  display: block;
  margin-bottom: 10px;
  color: var(--cammie-purple);
  font-size: 15px;
}

.cammie-page__appearances h3 {
  margin: 0 0 8px;
  color: var(--cammie-purple);
  font-size: 17px;
  font-weight: 600;
}

.cammie-page__appearances p {
  margin: 0;
  font-size: 13px;
  line-height: 1.65;
}


/* ---------------------------------------------------------
   QUOTE
   --------------------------------------------------------- */

.cammie-page__quote {
  max-width: 570px;
  margin: 78px auto;
  padding: 40px 30px;
  background: #eee7fa;
  border-radius: 22px;
  text-align: center;
}

.cammie-page__quote-decoration {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 9px;
  margin-bottom: 13px;
  color: var(--cammie-orange);
  font-size: 11px;
}

.cammie-page__quote-decoration span:nth-child(2) {
  color: var(--cammie-purple);
  font-size: 17px;
}

.cammie-page__quote p {
  margin: 0 0 15px;
  color: var(--cammie-purple);
  font-size: 26px;
  font-style: italic;
  font-weight: 600;
  line-height: 1.5;
}

.cammie-page__quote > span {
  color: var(--cammie-muted);
  font-size: 13px;
  font-weight: 600;
}


/* ---------------------------------------------------------
   CTA
   --------------------------------------------------------- */

.cammie-page__cta {
  max-width: 760px;
  margin: 0 auto;
  padding: 48px 50px;
  background: var(--cammie-teal-soft);
  border: 1px solid #d1eeee;
  border-radius: 20px;
  text-align: center;
}

.cammie-page__cta h2 {
  margin: 0 0 14px;
  color: var(--cammie-purple);
  font-size: 30px;
  font-weight: 600;
}

.cammie-page__cta > p:not(.cammie-page__eyebrow) {
  max-width: 600px;
  margin: 0 auto 25px;
  font-size: 14px;
  line-height: 1.7;
}

.cammie-page__cta a {
  display: inline-block;
  padding: 12px 27px;
  background: var(--cammie-purple);
  border-radius: 999px;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}

.cammie-page__cta a:hover {
  background: var(--cammie-purple-dark);
  transform: translateY(-2px);
}


/* ---------------------------------------------------------
   RESPONSIVE
   --------------------------------------------------------- */

@media (max-width: 760px) {

  .cammie-page {
    padding: 50px 20px 80px;
  }

  .cammie-page__intro {
    margin-bottom: 38px;
  }

  .cammie-page__intro h1 {
    font-size: 38px;
  }

  .cammie-page__lead {
    font-size: 16px;
  }

  .cammie-page__hero-image {
    margin-bottom: 45px;
    border-radius: 12px;
  }

  .cammie-page__section {
    margin-bottom: 48px;
  }

  .cammie-page__section h2 {
    font-size: 26px;
  }

  .cammie-page__values,
  .cammie-page__appearances {
    grid-template-columns: 1fr;
  }

  .cammie-page__framework {
    grid-template-columns: repeat(2, 1fr);
  }

  .cammie-page__highlight,
  .cammie-page__cta {
    padding: 35px 28px;
  }

  .cammie-page__highlight {
    margin: 55px auto;
  }

  .cammie-page__quote {
    margin: 55px auto;
  }
}


@media (max-width: 480px) {

  .cammie-page {
    padding-left: 16px;
    padding-right: 16px;
  }

  .cammie-page__intro h1 {
    font-size: 32px;
  }

  .cammie-page__little-note {
    align-items: flex-start;
  }

  .cammie-page__framework {
    gap: 8px;
  }

  .cammie-page__framework article {
    padding: 17px 9px;
  }

  .cammie-page__highlight,
  .cammie-page__cta {
    padding: 30px 22px;
  }

  .cammie-page__quote p {
    font-size: 22px;
  }

}

/* =========================================================
   ALL OUR KIDS DAY
   ========================================================= */

.aok-page {
  --aok-purple: #50318f;
  --aok-purple-dark: #412675;
  --aok-purple-light: #f4effc;
  --aok-orange: #f36b21;
  --aok-orange-light: #fff1e8;
  --aok-teal: #16a6aa;
  --aok-teal-light: #edfafa;
  --aok-gold: #f5ad25;
  --aok-text: #40394d;
  --aok-muted: #756f7d;
  --aok-border: #e4deea;

  max-width: 1180px;
  margin: 0 auto;
  padding: 70px 30px 110px;
  color: var(--aok-text);
}


/* HERO
--------------------------------------------------------- */

.aok-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 510px;
  align-items: center;
  margin-bottom: 85px;
  overflow: hidden;
  border-radius: 22px;
  background:
    linear-gradient(
      90deg,
      #ffffff 0%,
      #ffffff 46%,
      rgba(255,255,255,.92) 58%,
      rgba(255,255,255,0) 76%
    );
}

.aok-hero__content {
  position: relative;
  z-index: 2;
  padding: 55px 20px 55px 45px;
}

.aok-eyebrow {
  display: block;
  margin-bottom: 14px;
  color: var(--aok-orange);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.aok-hero h1 {
  margin: 0 0 20px;
  color: var(--aok-purple);
  font-size: clamp(42px, 5vw, 68px);
  line-height: .98;
  letter-spacing: -.025em;
}

.aok-hero p {
  max-width: 600px;
  margin: 0 0 18px;
  font-size: 17px;
  line-height: 1.7;
}

.aok-hero__lead {
  color: var(--aok-purple-dark);
  font-size: 19px !important;
  font-weight: 600;
}

.aok-hero__image {
  height: 100%;
  min-height: 510px;
}

.aok-hero__image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.aok-event-details {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 30px;
}

.aok-event-detail {
  display: flex;
  align-items: center;
  gap: 12px;
}

.aok-event-detail strong,
.aok-event-detail span {
  display: block;
}

.aok-event-detail strong {
  color: var(--aok-purple);
  font-size: 16px;
}

.aok-event-detail div span {
  margin-top: 3px;
  color: var(--aok-muted);
  font-size: 14px;
}

.aok-event-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--aok-purple-light);
  color: var(--aok-purple);
  font-size: 20px;
}


/* GENERAL SECTIONS
--------------------------------------------------------- */

.aok-section {
  margin-bottom: 80px;
}

.aok-section h2,
.aok-bigger-picture h2,
.aok-final h2 {
  margin: 0 0 18px;
  color: var(--aok-purple);
  font-size: 32px;
  line-height: 1.15;
}

.aok-section p {
  line-height: 1.75;
}

.aok-section--intro {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 70px;
}

.aok-column:first-child {
  padding-right: 35px;
  border-right: 1px dashed #d9d0e2;
}

.aok-column strong {
  color: var(--aok-orange);
}


/* VALUES
--------------------------------------------------------- */

.aok-values {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 30px;
}

.aok-value {
  padding: 25px 18px;
  border: 1px solid var(--aok-border);
  border-top: 4px solid var(--aok-purple);
  border-radius: 13px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(54,35,85,.07);
}

.aok-value--orange {
  border-top-color: var(--aok-orange);
}

.aok-value--teal {
  border-top-color: var(--aok-teal);
}

.aok-value--gold {
  border-top-color: var(--aok-gold);
}

.aok-value__icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 50%;
  background: var(--aok-purple-light);
  color: var(--aok-purple);
  font-size: 28px;
}

.aok-value--orange .aok-value__icon {
  background: var(--aok-orange-light);
  color: var(--aok-orange);
}

.aok-value--teal .aok-value__icon {
  background: var(--aok-teal-light);
  color: var(--aok-teal);
}

.aok-value--gold .aok-value__icon {
  background: #fff7df;
  color: var(--aok-gold);
}

.aok-value h3 {
  margin: 0 0 10px;
  color: var(--aok-purple);
  font-size: 19px;
}

.aok-value p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
}


/* THREE WAYS
--------------------------------------------------------- */

.aok-section--ways {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
  padding: 20px 0;
}

.aok-way {
  display: flex;
  gap: 18px;
}

.aok-way__icon {
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--aok-purple-light);
  color: var(--aok-purple);
  font-size: 26px;
}

.aok-way:nth-child(2) .aok-way__icon {
  background: var(--aok-orange-light);
  color: var(--aok-orange);
}

.aok-way:nth-child(3) .aok-way__icon {
  background: var(--aok-teal-light);
  color: var(--aok-teal);
}

.aok-way h3 {
  margin: 0 0 10px;
  color: var(--aok-purple);
  font-size: 21px;
}

.aok-way p {
  margin: 0 0 10px;
  font-size: 14px;
  line-height: 1.65;
}


/* PARTICIPATION
--------------------------------------------------------- */

.aok-participate {
  padding: 55px;
  margin: 70px 0;
  border-radius: 24px;
  background: linear-gradient(
    135deg,
    #faf8fd,
    #f4effc
  );
}

.aok-participate__heading {
  max-width: 720px;
  margin: 0 auto 35px;
  text-align: center;
}

.aok-participate__heading h2 {
  margin: 0 0 15px;
  color: var(--aok-purple);
  font-size: 35px;
}

.aok-participate__heading p {
  margin: 0;
  line-height: 1.7;
}

.aok-participate__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.aok-participate__card {
  padding: 35px;
  border: 1px solid var(--aok-border);
  border-radius: 16px;
  background: #fff;
  text-align: center;
  box-shadow: 0 8px 25px rgba(54,35,85,.07);
}

.aok-participate__card h3 {
  margin: 0 0 12px;
  color: var(--aok-purple);
  font-size: 24px;
}

.aok-participate__card p {
  line-height: 1.65;
}

.aok-card-link {
  color: var(--aok-purple);
  font-weight: 700;
}

.aok-note {
  margin-top: 25px;
  padding: 18px 25px;
  border-radius: 12px;
  background: var(--aok-purple-light);
  color: var(--aok-purple);
  text-align: center;
  font-size: 14px;
}


/* BIGGER PICTURE
--------------------------------------------------------- */

.aok-bigger-picture {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 45px;
  align-items: stretch;
  margin: 80px 0;
}

.aok-bigger-picture__content {
  padding: 40px;
  border-left: 4px solid var(--aok-purple);
  border-radius: 0 18px 18px 0;
  background: var(--aok-purple-light);
}

.aok-bigger-picture__content > p {
  line-height: 1.7;
}

.aok-framework {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 30px;
}

.aok-framework > div {
  padding: 18px 10px;
  border-radius: 10px;
  background: #fff;
  text-align: center;
}

.aok-framework__icon {
  display: block;
  margin-bottom: 8px;
  color: var(--aok-orange);
  font-size: 25px;
}

.aok-framework strong,
.aok-framework small {
  display: block;
}

.aok-framework strong {
  color: var(--aok-purple);
}

.aok-framework small {
  margin-top: 6px;
  color: var(--aok-muted);
  font-size: 11px;
  line-height: 1.4;
}

.aok-closing-message {
  margin-top: 30px !important;
  color: var(--aok-teal);
  font-size: 20px;
  font-weight: 700;
  text-align: center;
}

.aok-bigger-picture__cta {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 45px;
  border: 1px solid #ccebed;
  border-radius: 20px;
  background: var(--aok-teal-light);
}

.aok-bigger-picture__cta h2 {
  font-size: 34px;
}

.aok-bigger-picture__cta p {
  line-height: 1.7;
}

.aok-button {
  display: inline-block;
  align-self: flex-start;
  margin-top: 15px;
  padding: 14px 25px;
  border-radius: 30px;
  background: var(--aok-purple);
  color: #fff !important;
  font-weight: 700;
  text-decoration: none;
  transition: .2s ease;
}

.aok-button:hover {
  background: var(--aok-purple-dark);
  transform: translateY(-2px);
}


/* FINAL MESSAGE
--------------------------------------------------------- */

.aok-final {
  max-width: 760px;
  margin: 80px auto 0;
  padding: 45px;
  border-radius: 20px;
  background: #eee5fb;
  text-align: center;
}

.aok-final__heart {
  display: block;
  margin-bottom: 12px;
  color: var(--aok-orange);
  font-size: 34px;
}

.aok-final h2 {
  margin-bottom: 12px;
}

.aok-final p {
  margin: 0;
  color: var(--aok-muted);
  line-height: 1.7;
}


/* MOBILE
--------------------------------------------------------- */

@media (max-width: 900px) {

  .aok-page {
    padding: 45px 20px 80px;
  }

  .aok-hero {
    grid-template-columns: 1fr;
    min-height: 0;
    background: #fff;
  }

  .aok-hero__content {
    padding: 35px 10px;
  }

  .aok-hero__image {
    min-height: 360px;
    height: 360px;
  }

  .aok-section--intro,
  .aok-bigger-picture {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .aok-column:first-child {
    padding-right: 0;
    padding-bottom: 35px;
    border-right: 0;
    border-bottom: 1px dashed #d9d0e2;
  }

  .aok-values {
    grid-template-columns: repeat(2, 1fr);
  }

  .aok-section--ways {
    grid-template-columns: 1fr;
  }

  .aok-participate {
    padding: 35px 25px;
  }

}


@media (max-width: 600px) {

  .aok-hero h1 {
    font-size: 40px;
  }

  .aok-hero p {
    font-size: 15px;
  }

  .aok-event-details {
    display: block;
  }

  .aok-event-detail {
    margin-bottom: 18px;
  }

  .aok-values,
  .aok-participate__cards,
  .aok-framework {
    grid-template-columns: 1fr;
  }

  .aok-participate {
    margin: 50px 0;
    padding: 30px 18px;
  }

  .aok-bigger-picture__content,
  .aok-bigger-picture__cta {
    padding: 30px 25px;
  }

  .aok-final {
    padding: 35px 25px;
  }

}
