/* Base font */
html, body {
  width: 100%;
  max-width: 100%;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: "din-2014", "Helvetica Neue", Helvetica, Arial, sans-serif;
  background: #fff;
  /* color: #1f2933; */
  color: #000;
  line-height: 1.5;
}

/* 1140px content container (for hero body, main sections) */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* 90 percent container for header/footer */
.container--wide {
  width: 90%;
  max-width: 1600px;
  margin: 0 auto;
  box-sizing: border-box;
}

/* top stripes shared by header */
.top-stripes {
  display: flex;
  width: 100%;
  height: 8px;
}
.top-stripe {
  flex: 1 1 0;
}
.top-stripe--purple { background: #321b58; }
.top-stripe--blue { background: #00aae3; }
.top-stripe--green { background: #69bd45; }

/* header */
.site-header {
  width: 100%;
  background: #fff;
  border-bottom: 1px solid rgba(0,0,0,0.04);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.75rem;
  min-height: 88px;
}
.site-logo img {
  /* height: auto;
  max-height: 56px; */
  max-height: 60px;
  width: 100%;
  max-width: 100%;
  display: block;
}


/* nav */
.main-nav {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.nav-link {
  font-weight: 600;
  text-decoration: none;
  /* color: #1f2933;
  font-size: 0.95rem; */
  color: #000;
  font-size: 1rem;
}
.nav-link.is-active,
.nav-link:hover {
  color: #00AAE3;
}
.nav-group {
  position: relative;
}
.nav-toggle {
  background: none;
  border: none;
  font: inherit;
  color: #1f2933;
  display: inline-flex;
  gap: 0.25rem;
  align-items: center;
  cursor: pointer;
}
.nav-toggle:hover {
  color: #321b58;
}

.footer-body .nav-link {
    font-weight: normal;
}
/* buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  padding: 0.7rem 1.5rem;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.9rem;
  width: fit-content;
}
.btn-primary {
  background: #321b58;
  color: #fff;
}
.btn-primary:hover {
  background: #251541;
}

/* mobile toggle hidden for now */
.mobile-nav-toggle {
  display: none;
  background: none;
  border: 0;
}
/* Hide desktop nav on small screens, show mobile controls */
@media (max-width: 1024px) {
  .main-nav { display: none; }
  .mobile-nav-toggle { display: inline-flex; }
}
@media (min-width: 1025px) {
  .mobile-nav-toggle, #mobile-nav { display: none; }
}

/* Toggle button */
.mobile-nav-toggle {
  align-items: center; justify-content: center;
  width: 44px; height: 44px; padding: 0;
  border: 0; background: transparent; cursor: pointer;
}
.mobile-nav-toggle .bar {
  display: block; width: 24px; height: 2px; background: #1a1a1a;
  transition: transform 200ms ease, opacity 200ms ease;
}
.mobile-nav-toggle .bar + .bar { margin-top: 6px; }
.mobile-nav-toggle.is-open .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.mobile-nav-toggle.is-open .bar:nth-child(2) { opacity: 0; }
.mobile-nav-toggle.is-open .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Drawer */
.mobile-nav[hidden] { display: none; }
.mobile-nav { position: fixed; inset: 0; z-index: 9999; }
.mobile-nav__scrim {
  position: absolute; inset: 0; background: rgba(0,0,0,.35);
  opacity: 0; pointer-events: none; transition: opacity 220ms ease;
}
.mobile-nav__panel {
  position: absolute; top: 0; right: 0; height: 100%; width: 88%;
  max-width: 360px; background: #fff;
  box-shadow: -8px 0 24px rgba(0,0,0,.12);
  transform: translateX(100%); transition: transform 220ms ease;
  display: flex; flex-direction: column;
  padding: 16px;
}
.mobile-nav.is-open .mobile-nav__scrim { opacity: 1; pointer-events: auto; }
.mobile-nav.is-open .mobile-nav__panel { transform: translateX(0); }

/* Header inside drawer */
.mobile-nav__header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 8px;
}
.mobile-nav-close {
  border: 0; background: transparent; font-size: 22px; line-height: 1; cursor: pointer;
}

/* List */
.mobile-nav__list { list-style: none; margin: 0; padding: 8px 0 0; }
.mobile-nav__item + .mobile-nav__item { margin-top: 6px; }
.mobile-nav__link {
  display: block; padding: 12px 10px; border-radius: 8px;
  text-decoration: none; color: #1a1a1a; background: transparent;
}
.mobile-nav__link:hover, .mobile-nav__link:focus { background: #f3f4f6; }
.mobile-nav__link.is-active { background: #321b5b; color: #fff; }
.mobile-nav__cta .btn.btn-primary { display: block; width: 100%; }

/* Panel: smoother, snappier slide */
.mobile-nav__panel {
  transform: translateX(100%);
  transition: transform 260ms cubic-bezier(.22,.61,.36,1);
  will-change: transform;
}

/* Scrim fade already in place, make timing match */
.mobile-nav__scrim {
  transition: opacity 260ms cubic-bezier(.22,.61,.36,1);
}

/* Staggered link slide-in */
.mobile-nav.is-open .mobile-nav__item {
  opacity: 0;
  transform: translateX(12px);
  animation: navItemIn 320ms cubic-bezier(.22,.61,.36,1) forwards;
}

.mobile-nav.is-open .mobile-nav__item:nth-child(1) { animation-delay: 40ms; }
.mobile-nav.is-open .mobile-nav__item:nth-child(2) { animation-delay: 80ms; }
.mobile-nav.is-open .mobile-nav__item:nth-child(3) { animation-delay: 120ms; }
.mobile-nav.is-open .mobile-nav__item:nth-child(4) { animation-delay: 160ms; }
.mobile-nav.is-open .mobile-nav__item:nth-child(5) { animation-delay: 200ms; }
/* add more nth-child lines if you have more links */

@keyframes navItemIn {
  to { opacity: 1; transform: translateX(0); }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .mobile-nav__panel,
  .mobile-nav__scrim,
  .mobile-nav__item {
    transition: none;
    animation: none;
    transform: none;
    opacity: 1;
  }
}


/* Scroll lock */
.body-lock { overflow: hidden; }

@media (prefers-reduced-motion: reduce) {
  .mobile-nav__panel, .mobile-nav-toggle .bar { transition: none; }
}


/* hero */
 .hero {
  position: relative;
  width: 100%;
  min-height: 520px;
  color: #fff;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* overlay on the hero itself */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.7) 24%,
    rgba(0, 0, 0, 0.35) 62%,
    rgba(0, 0, 0, 0)
  );
  z-index: 1;
}

/* content sits above overlay */
.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 68vh;
  max-width: 80%;
  margin: 0 auto;
  padding: 4rem 20px;
}

.hero-content h1 {
  font-size: clamp(2.6rem, 3.2vw, 3.4rem);
  line-height: 1.15;
  font-weight: 700;
  margin: 0;
  max-width: 540px;
}

.hero-content p {
  max-width: 620px;
  /* font-size: 1rem; */
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

.hero-actions {
    margin-top: 0.5rem;
}

@media (max-width: 768px) {
  .hero {
    min-height: 460px;
  }
  .hero-content {
    min-height: 460px;
    padding: 3rem 20px;
  }
  .hero-content h1 {
    font-size: 1.9rem;
    line-height: 1.25;
  }
}


/* footer stripes */
.footer-stripes {
  display: flex;
  width: 100%;
  height: 8px;
}
.footer-stripe {
  flex: 1 1 0;
}
.footer-stripe--purple { background: #321b58; }
.footer-stripe--blue { background: #00aae3; }
.footer-stripe--green { background: #69bd45; }

/* footer body */
.site-footer {
  background: #fff;
}
.footer-body {
  padding: 3.25rem 0 3rem;
}
.footer-row {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr 0.9fr 1fr;
  gap: 3rem;
  align-items: flex-start;
}
.footer-logo {
  height: auto;
  margin-bottom: 1.25rem;
  max-width: 100%;
  overflow: hidden;
}
.footer-brand p {
  max-width: 380px;
  color: #4a4f55;
  font-size: 0.9rem;
  line-height: 1.55;
}
.footer-col h4 {
  margin: 0 0 1.1rem;
  font-size: 1rem;
  font-weight: 600;
  color: #00aae3;
}
.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-col li {
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}
.footer-col a {
  text-decoration: none;
}
.footer-col a:hover {
  color: #321b58;
}
/* contact column */
.footer-contact ul li {
  color: #4a4f55;
  line-height: 1.4;
}
/* social */
.footer-social {
  display: flex;
  gap: 0.6rem;
  margin-top: 1.25rem;
}
.footer-social a {
  width: 34px;
  height: 34px;
  background: #828c92;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.85rem;
}
.footer-social a:hover {
  background: #321b58;
}

/* footer bottom */
.footer-bottom {
  border-top: 1px solid rgba(0,0,0,0.05);
  padding: 1.1rem 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.footer-bottom p {
  margin: 0;
  font-size: 0.8rem;
  color: #7a8288;
}
.footer-bottom-links {
  display: flex;
  gap: 1.3rem;
}
.footer-bottom-links a {
  font-size: 0.8rem;
  color: #7a8288;
  text-decoration: none;
}
.footer-bottom-links a:hover {
  color: #321b58;
}

/* responsive */
@media (max-width: 1024px) {
  .main-nav {
    display: none;
  }
  .mobile-nav-toggle {
    display: block;
  }
  .footer-row {
    grid-template-columns: 1fr 1fr;
  }
  .hero-bg {
    height: 68vh;
  }
}
@media (max-width: 640px) {
  .footer-row {
    grid-template-columns: 1fr;
  }
  .footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .hero-content {
    position: relative;
    padding: 3.5rem 0 3.5rem;
  }
  .hero-bg {
    height: 460px;
  }
}

/* ====== MOBILE (≤640px) REFINEMENTS ====== */
@media (max-width: 640px) {

  /* Header */
  .header-inner {
    flex-wrap: wrap;
    justify-content: space-between;
    min-height: auto;
    padding: 0.75rem 0;
  }
  .site-logo img {
    height: 44px;
  }
  .mobile-nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
  }
  .mobile-nav-toggle span {
    width: 22px;
    height: 2px;
    background: #1f2933;
    display: block;
  }

  /* Hide main nav initially (use JS later to toggle open) */
  .main-nav {
    display: none;
    flex-direction: column;
    width: 100%;
    margin-top: 0.75rem;
    border-top: 1px solid rgba(0,0,0,0.05);
    padding-top: 0.75rem;
    gap: 0.75rem;
  }

  /* Show when body or header gets .nav-open later */
  body.nav-open .main-nav {
    display: flex;
  }

  .main-nav a,
  .nav-toggle {
    font-size: 1rem;
    padding: 0.5rem 0;
  }
  .btn-primary {
    width: 100%;
    text-align: center;
    margin-top: 0.75rem;
  }

  /* Hero */
  /* Hero section */
.hero {
  position: relative;
  width: 100%;
  min-height: 520px;
  color: #fff;

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Dark overlay */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.7) 24%,
    rgba(0, 0, 0, 0.35) 62%,
    rgba(0, 0, 0, 0)
  );
  z-index: 1;
}

/* Content wrapper */
.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
  min-height: 68vh;
  max-width: 1140px;
  margin: 0 auto;
  padding: 4rem 20px;
}

/* Headline and text */
.hero-content h1 {
  font-size: clamp(2.6rem, 3.2vw, 3.4rem);
  line-height: 1.15;
  font-weight: 700;
  margin: 0;
  max-width: 540px;
}
.highlight-green {
  color: #69bd45;
}
.hero-content p {
  max-width: 620px;
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

/* Button */
.btn-primary {
  background: #321b58;
  color: #fff;
}
.btn-primary:hover {
  background: #251541;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .hero-content {
    padding: 3rem 20px;
    min-height: 460px;
  }
  .hero-content h1 {
    font-size: 1.9rem;
    line-height: 1.25;
  }
  .hero-content p {
    font-size: 0.95rem;
  }
}


  /* Footer */
  .footer-row {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: left;
  }
  .footer-brand,
  .footer-col,
  .footer-contact {
    text-align: left;
  }
  .footer-social {
    margin-top: 1rem;
  }
  .footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  .footer-bottom-links {
    gap: 1rem;
  }
}

.text-content {
  margin: 0 auto;
  max-width: 800px;
  text-align: center;
  align-items: center;
  padding: 10px;
}


.text-content p{
 font-size: .92rem;
  line-height: 1.6;
  color: #020202;
}

.tertiary-text-content {
  margin: 0 auto;
  max-width: 1140px;
  text-align: center;
  align-items: center;
  padding: 10px;
  padding-bottom: 5rem;
}

.tertiary-text-content p{
 font-size: .92rem;
  line-height: 1.6;
  color: #020202;
  text-align: left;
}

/* ====== Featured card + img ====== */
.section-approach {
  padding: 4.5rem 0 4.25rem;
  background: #fff;
}

/* top row */
.approach-top {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3.25rem;
  /* align-items: center; */
  margin-bottom: 3.75rem;
}

.approach-text h2 {
  font-size: 2.4rem;
  line-height: 1.05;
  margin: 0 0 1.4rem;
  color: #321b58;
  letter-spacing: -0.01em;
}

.approach-text p {
  margin: 0 0 1rem;
  color: #1f2933;
  /* font-size: 0.98rem; */
  line-height: 1.6;
  max-width: 680px;
}

.approach-media img {
  width: 100%;
  border-radius: 0;
  display: block;
  object-fit: cover;
  min-height: 260px;
}

/* bottom row (two cards) */
.approach-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
}

.approach-card {
  padding-top: 1.8rem;
}

.approach-card h3 {
  /* font-size: 1.25rem; */
  font-size: 1.5rem;
  margin: 0 0 1.1rem;
  color: #321b58;
  border-bottom: 2px solid rgba(50, 27, 88, 0.12);
  padding-bottom: 15px;

}

.approach-card p {
  margin: 0 0 0.8rem;
  color: #1f2933;
  /* font-size: 0.93rem; */
  line-height: 1.6;
}

.approach-source {
  font-size: 0.8rem;
  color: #4a4f55;
}

/* responsive */
@media (max-width: 992px) {
  .approach-top {
    grid-template-columns: 1fr;
  }
  .approach-media img {
    max-width: 560px;
  }
}

@media (max-width: 768px) {
  .section-approach {
    padding: 3.5rem 0 3.25rem;
  }
  .approach-bottom {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .approach-text h2 {
    font-size: 2rem;
  }
}


/* ===== Resource Hero (top) ===== */
/* ===== Resource Intro Section ===== */
.section-resource-intro {
  background: linear-gradient(135deg, #321b58 0%, #1b2c8b 100%);
  color: #fff;
  padding: 4.5rem 0 5rem;
  position: relative;
}

.gradient{
  background: linear-gradient(135deg, #321b58 0%, #1b2c8b 100%) !important;
}

.resource-intro-inner {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 2.8rem;
}

/* Image block centered */
.resource-intro-media {
  width: 100%;
  max-width: 1140px;
  display: flex;
  justify-content: center;
}
.resource-intro-media img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0;
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
}

/* Content area (2 columns inside) */
.resource-intro-content {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
  align-items: start;
  max-width: 1080px;
}

.resource-intro-content h2 {
  font-size: 2.4rem;
  line-height: 1.15;
  font-weight: 700;
  margin: 0;
  color: #fff;
}

.resource-intro-content p {
  margin: 0;
  /* font-size: 0.96rem; */
  line-height: 1.6;
  color: rgba(255,255,255,0.92);
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .resource-intro-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: left;
  }

  .resource-intro-content h2 {
    font-size: 2rem;
  }

  .section-resource-intro {
    padding: 3.5rem 0 4rem;
  }
}


/* ===== Resource Cards (bottom) ===== */
/* ===== Resource Cards ===== */
.section-resource-cards {
  background: transparent;
  padding: 2.75rem 0 4rem;
}


.resource-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.75rem;
  align-items: stretch;
}

/* card */
.resource-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.04);
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
  padding: 2.5rem 2.1rem 2.2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  min-height: 310px;
}

/* circular icon */
.resource-card-icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: #00aae3;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.resource-card-icon .check {
  color: #fff;
  font-size: 1.7rem;
  line-height: 1;
}

.resource-card h3 {
  margin: 0;
  /* font-size: 1rem; */
  font-size: 1.5rem;
  color: #321b58;
}

.resource-card p {
  margin: 0;
  /* font-size: 0.86rem; */
  line-height: 1.55;
  color: #1f2933;
}

/* button inside card */
.btn.btn-outline-light {
  background: #321b58;
  border: 1px solid #fff;
  color: #fff;
  font-weight: 600;
  align-self: center;
  padding: 0.6rem 1.4rem;
}
.btn.btn-outline-light:hover {
  background: #fff;
  color: #321b58;
}


/* responsive */
@media (max-width: 990px) {
  .resource-cards-grid {
    grid-template-columns: 1fr;
    max-width: 540px;
    margin: 0 auto;
  }
  .section-resource-cards {
    padding-bottom: 3.3rem;
  }
}


/* ===== Call to Action Section ===== */
/* ===== CTA overlay style ===== */
.section-cta-overlay {
  position: relative;
  width: 100%;
  min-height: 699px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  padding: 3.5rem 0;
}

.cta-overlay-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  padding: 0 20px;
  display: flex;
  justify-content: flex-end; /* keep purple box on right */
}

/* purple panel now spans to right edge */
.cta-panel {
  background: linear-gradient(135deg, #321b58 0%, #1b2c8b 100%);
  color: #fff;
  width: 100vw;                 /* span full width */
  max-width: 800px;             /* limit how far it intrudes left */
  margin-right: calc((100vw - 100%) / -2); /* extend to viewport edge cleanly */
  padding: 2.4rem 2.7rem 2.6rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  display: flex;
  flex-direction: column;
  min-height: 300px;
  vertical-align: middle;
}
.cta-panel .cta-text{
  max-width: 400px;
}
.cta-panel h2 {
  margin: 0 0 1rem;
  font-size: 1.9rem;
  font-weight: 700;
}

.cta-panel p {
  margin: 0 0 1.6rem;
  /* font-size: 0.9rem; */
  line-height: 1.55;
  color: rgba(255,255,255,0.9);
}

/* button */
.btn-light {
  background: #fff;
  color: #321b58;
  font-weight: 600;
  padding: 0.65rem 1.6rem;
  border: none;
  border-radius: 4px;
  text-decoration: none;
  display: inline-block;
  align-self: start;
}
.btn-light:hover {
  background: #251541;
  color: #fff;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .section-cta-overlay {
    padding: 3rem 0;
    background-position: center top;
  }

  .cta-overlay-inner {
    justify-content: center;
  }

  .cta-panel {
    margin-right: 0;
    width: 100%;
    max-width: 100%;
  }

  .cta-panel h2 {
    font-size: 1.6rem;
  }
}

@media (max-width: 768px) {
  .section-cta-overlay {
    padding: 0;
    background-position: center top;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .cta-overlay-inner {
    justify-content: center;
    width: 100%;
    padding: 0;
  }

  .cta-panel {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
    width: calc(100% - 2rem);   /* leave space on sides */
    max-width: 480px;           /* keeps readable width */
    text-align: center;
    border-radius: 6px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
  }

  .cta-panel .cta-text {
    max-width: 100%;
  }

  .cta-panel h2 {
    font-size: 1.6rem;
  }

  .cta-panel p {
    /* font-size: 0.9rem; */
    line-height: 1.55;
  }

  .btn-light {
    align-self: center;
  }
}

/* ===== Left-side variant (panel on left, tighter left alignment) ===== */
/* ===== Left CTA variant ===== */
.section-cta-overlay--left .cta-overlay-inner {
  justify-content: flex-start; /* purple panel sits on the left */
}

.section-cta-overlay--left .cta-panel {
  margin-left: calc((100vw - 100%) / -2); /* extend panel flush to viewport edge */
  width: 100vw;
  max-width: 800px;

  background: linear-gradient(135deg, #321b58 0%, #1b2c8b 100%);
  color: #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);

  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
  align-items: flex-start;

  /* Grid-aligned padding (text hugs same left margin as site container) */
  padding: 2.5rem  0rem 2.5rem 20rem;
}

.section-cta-overlay--left .cta-panel h2 {
  margin: 0 0 1rem;
  font-size: 2rem;
  font-weight: 700;
}

.section-cta-overlay--left .cta-panel p {
  max-width: 520px;
  color: rgba(255,255,255,0.9);
  margin-bottom: 1.5rem;
  /* font-size: 1rem; */
  line-height: 1.55;
}

.section-cta-overlay--left .btn-light {
  background: #fff;
  color: #321b58;
  font-weight: 600;
  padding: 0.65rem 1.6rem;
  border: none;
  border-radius: 4px;
  text-decoration: none;
}

.section-cta-overlay--left .btn-light:hover {
  background: #251541;
  color: #fff;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .section-cta-overlay--left .cta-overlay-inner {
    justify-content: center;
  }

  .section-cta-overlay--left .cta-panel {
    margin-left: 0;
    width: calc(100% - 2rem);
    max-width: 480px;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    align-items: center;
    padding: 2.2rem 1.75rem;
  }

  .section-cta-overlay--left .cta-panel p {
    max-width: 100%;
  }

  .section-cta-overlay--left .btn-light {
    align-self: center;
  }
}


/* ===== Mobile behavior ===== */
@media (max-width: 768px) {
  .section-cta-overlay--left .cta-overlay-inner {
    justify-content: center;
  }

  .section-cta-overlay--left .cta-panel {
    margin-left: 0;
    width: calc(100% - 2rem);
    max-width: 480px;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    align-items: center;
    padding: 2.2rem 1.75rem;
  }

  .section-cta-overlay--left .cta-text {
    max-width: 100%;
  }

  .section-cta-overlay--left .btn-light {
    align-self: center;
  }
}


/* ===== Subpage hero variant ===== */
/* ===== Subpage hero (left-aligned variant) ===== */
.subhero {
  position: relative;
  width: 100%;
  height: 55vh;
  color: #fff;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  text-align: left;
  background-blend-mode: overlay;
}



.subhero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.72) 20%,
    rgba(0, 0, 0, 0.25) 70%,
    rgba(0, 0, 0, 0)
  );

  z-index: 1;
}

.subhero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 40vh;
  max-width: 80%;
  width: 80%;
  margin: 0 auto;
  padding: 4rem 20px;
}

.subhero__eyebrow {
  /* font-size: 0.9rem; */
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  margin: 0;
  color: rgba(255, 255, 255, 0.85);
  text-align: left;
}

.subhero__title {
  font-size: clamp(2.1rem, 3vw, 2.6rem);
  line-height: 1.1;
  margin: 0;
  font-weight: 700;
  text-align: left;
}

.subhero__text p{
  /* font-size: 0.9rem; */
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.9);
  max-width: 560px;
  margin: 0 0 0.5rem;
  text-align: left;
}

.subhero__actions {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  justify-content: flex-start;
}

/* primary button */
.subhero__btn-primary {
  background: #fff;
  color: #321b58;
}
.subhero__btn-primary:hover {
  background: #251541;
  color: #fff;
}

/* secondary button */
.subhero__btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.8);
  color: #fff;
  padding: 0.7rem 1.5rem;
  border-radius: 4px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.subhero__btn-secondary:hover {
  background: #321b58;
  color: #fff;
}

/* responsive */
@media (max-width: 768px) {
  .subhero {
    min-height: 300px;
    background-position: center top;
     background-size: cover;
  }

  .subhero__content {
    padding: 2.6rem 0 2.8rem;
  }

  .subhero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .subhero__btn-primary,
  .subhero__btn-secondary {
    width: 100%;
    justify-content: center;
  }
}


/* ===== Featured Card Two Column ===== */
.section-featured-card-two-col {
  padding: 1rem 0 4.5rem;
  background: #fff;
}

/* image row */
.featured-card-two-col__image-wrap {
  text-align: center;
  margin-bottom: 3rem;
}

.featured-card-two-col__image {
  width: 100%;
  max-width: 1140px;
  display: inline-block;
  height: auto;
  box-shadow: -2px -6px 32px 4px rgba(156,156,156,0.15);
-webkit-box-shadow: -2px -6px 32px 4px rgba(156,156,156,0.15);
-moz-box-shadow: -2px -6px 32px 4px rgba(156,156,156,0.15);
}

/* title */
.featured-card-two-col__title {
  font-size: 2.2rem;
  margin: 0 0 1.7rem;
  color: #321b58;
  letter-spacing: -0.01em;
}

/* two-column layout */
.featured-card-two-col__textgrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: flex-start;
}

.featured-card-two-col__col p{
  /* font-size: 0.96rem; */
  line-height: 1.65;
  color: #1E1E1E;
}

/* responsive */
@media (max-width: 960px) {
  .featured-card-two-col__textgrid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .featured-card-two-col__title {
    font-size: 1.9rem;
  }

  .featured-card-two-col__image {
    max-width: 100%;
  }
}

/* ===== Feature List Two Column ===== */
.section-feature-list-two-col {
  width: 100%;
  background: linear-gradient(135deg, #321b58 0%, #1b2c8b 100%);
  color: #fff;
  padding: 4.2rem 0 4.5rem;
}

.feature-list-two-col__inner {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr; /* equal columns */
  gap: 3rem;
  padding: 0 20px;
  align-items: flex-start;
}

/* left column */
.feature-list-two-col__eyebrow {
  /* font-size: 0.78rem; */
  font-size: 1rem;
  letter-spacing: 0.06em;
  margin: 0 0 0.5rem;
  color: rgba(255,255,255,0.8);
}

.feature-list-two-col__title {
  font-size: 2.2rem;
  line-height: 1.05;
  margin: 0;
  color: #fff;
}

/* right column */
.feature-list-two-col__right {
  display: flex;
  flex-direction: column;
  gap: 1.9rem;
}

.feature-list-two-col__item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem;
  align-items: flex-start;
}

/* blue circle icon wrapper */
.feature-list-two-col__icon-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #00aae3;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* SVG icon inside the circle */
.feature-list-two-col__icon-circle img {
  width: 36px;
  height: 36px;
  display: block;
}

/* text content */
.feature-list-two-col__content h3 {
  /* font-size: 1.08rem; */
  font-size: 1.5rem;
  margin: 0 0 0.55rem;
  color: #fff;
}

.feature-list-two-col__rule {
  width: 100%;
  height: 2px;
  background: rgba(255,255,255,0.21);
  margin-bottom: 0.65rem;
  max-width: 340px;
}

.feature-list-two-col__content p {
  margin: 0;
  /* font-size: 0.9rem; */
  line-height: 1.55;
  color: rgba(255,255,255,0.9);
  max-width: 520px;
}

/* ===== Responsive ===== */
@media (max-width: 1040px) {
  .feature-list-two-col__inner {
    grid-template-columns: 1fr;
  }

  .feature-list-two-col__title {
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 640px) {
  .section-feature-list-two-col {
    padding: 3.5rem 0 3.8rem;
  }

  .feature-list-two-col__item {
    grid-template-columns: 1fr;
  }

  .feature-list-two-col__icon-circle {
    margin-bottom: 0.25rem;
  }

  .feature-list-two-col__content p {
    max-width: 100%;
  }
}

/* ===== Team Card Section ===== */
.section-team-card {
  background: #fff;
  padding: 4.3rem 0 4.5rem;
}

/* header area */
.team-card__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 2.5rem;
}

.team-card__title {
  font-size: 2.1rem;
  margin: 0 0 1rem;
  letter-spacing: -0.01em;
}

.team-card__intro p{
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.6;
  color: #1E1E1E;
}

/* grid */
.team-card__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2.75rem;
  align-items: start;
}

/* individual card */
.team-card__item {
  text-align: center;
}

.team-card__photo {
  width: 100%;
  background: #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.4rem;
  overflow: hidden;
  box-shadow: -2px -6px 32px 4px rgba(156,156,156,0.15);
-webkit-box-shadow: -2px -6px 32px 4px rgba(156,156,156,0.15);
-moz-box-shadow: -2px -6px 32px 4px rgba(156,156,156,0.15);
}

.team-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* text styles */
.team-card__name {
  margin: 0 0 0.4rem;
  /* font-size: 1.05rem; */
  font-size: 1.25rem;
  color: #321b58;
  font-weight: 600;
}

.team-card__role {
  margin: 0 0 0.25rem;
  /* font-size: 0.8rem; */
  color: #321b58;
}

.team-card__dept {
  margin: 0;
  /* font-size: 0.78rem; */
  color: #321b58;
}

/* responsive */
@media (max-width: 960px) {
  .team-card__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .team-card__grid {
    grid-template-columns: 1fr;
  }

  .section-team-card {
    padding: 3.5rem 0 3.8rem;
  }
}

/* ===== Resource Card Grid ===== */
/* ===== Resource Card Grid ===== */
.section-resource-card-grid {
  background: #e9e7ed;
  padding: 3.8rem 0 4.3rem;
}

.resource-card-grid__inner {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 2.3rem;
}

/* base card */
.resource-card {
  background: #fff;
  padding: 1.9rem 1.9rem 2rem;
  box-shadow: 0 10px 25px rgba(0,0,0,0.03);
  display: flex;
  flex-direction: column;
  gap: 1.05rem;
  position: relative;
}

/* top / featured card */
.resource-card--wide {
  width: 100%;
}

.resource-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.75rem;
}

.resource-card__head--inline {
  justify-content: flex-start;
}

.resource-card__icon {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* icon */
.resource-card__icon-circle {
  width: 62px;
  height: 62px;
  border-radius: 999px;
  background: #00aae3;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.resource-card__icon-circle img {
  width: 38px;
  height: 38px;
  display: block;
}

/* title */
.resource-card__title {
  /* font-size: 1.3rem; */
  font-size: 1.5rem;
  margin: 0;
  color: #321b58;
  letter-spacing: -0.01em;
}

/* description */
.resource-card__text p{
  margin: 0;
  /* font-size: 0.87rem; */
  line-height: 1.55;
  color: #1f2933;
  text-align: left;
}

/* button */
.resource-card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1.2rem;
  border: 1px solid #321b58;
  background: #fff;
  color: #321b58;
  font-weight: 500;
  font-size: 0.82rem;
  text-decoration: none;
  border-radius: 2px;
  gap: 0.4rem;
  width: fit-content;
}
.resource-card__btn:hover {
  background: #321b58;
  color: #fff;
}

/* ===== Colored Stripe Bar ===== */
.resource-card__stripes {
  display: flex;
  width: 100%;
  height: 6px;
  position: absolute;
  bottom: 0;
  left: 0;
}

.resource-card__stripe {
  flex: 1 1 0;
}

.resource-card__stripe--purple { background: #321b58; }
.resource-card__stripe--blue { background: #00aae3; }
.resource-card__stripe--green { background: #69bd45; }

/* bottom cards layout */
.resource-card-grid__bottom {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2.3rem;
}

/* responsive */
@media (max-width: 980px) {
  .resource-card__head {
    flex-direction: column;
    align-items: flex-start;
  }
  .resource-card-grid__bottom {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .section-resource-card-grid {
    padding: 3.3rem 0 3.6rem;
  }
  .resource-card {
    padding: 1.5rem 1.25rem 2rem;
  }
  .resource-card__title {
    font-size: 1.1rem;
  }
}


/* ===== Upcoming Events ===== */
.section-events-grid {
  background: #e9e7ed;
  padding: 3.8rem 0 4.3rem;
}

/* header */
.events-grid__head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem 2rem;
  align-items: end;
  margin-bottom: 1.6rem;
}
.events-grid__title {
  margin: 0 0 .6rem;
  font-size: 2rem;
  color: #321b58;
  letter-spacing: -0.01em;
}
.events-grid__intro {
  margin: 0;

  max-width: 620px;
}

.events-grid__intro p {
  color: inherit;
   font-size: .92rem;
  line-height: 1.6;
  color: #131313;
}

/* grid */
.events-grid__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 1.6rem;
}

/* card */
.event-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 8px 22px rgba(0,0,0,0.04);
  display: flex;
  flex-direction: column;
}
.event-card__media {
  display: block;
  aspect-ratio: 16 / 9;
  background: #f3f4f6;
  overflow: hidden;
}
.event-card__media img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.event-card__body {
  padding: 1rem 1.1rem 1.2rem;
  display: flex; flex-direction: column; gap: .7rem;
  text-align: center;
  align-items: center;
}
.event-card__title {
  margin: 0;
  /* font-size: 1rem; */
  font-size: 1.5rem;
  line-height: 1.4;
  color: #321b58;
}
.event-card__title a { color: inherit; text-decoration: none; }
.event-card__title a:hover { text-decoration: underline; }

/* meta line (venue + date) */
.event-card__meta {
  display: flex; gap: 1rem; padding: 0; margin: 0;
  list-style: none; font-size: .82rem; color: #4a4f55;
}
.meta-dot {
  width: 12px; height: 25px;  background: #69bd4500;
  display: inline-block; margin-right: .5rem; position: relative;
  top: 4px;
}

.event-card__excerpt {
  margin: .2rem 0 .4rem;

}

.event-card__excerpt p {
    color: inherit;
    /* font-size: .85rem; */
    line-height: 1.55;
    color: #1f2933;
}

/* buttons */
.btn { display: inline-flex; align-items: center; justify-content: center;
  padding: .6rem 1.1rem; border-radius: 3px; text-decoration: none; font-weight: 600; }
.btn--sm { padding: .5rem 1rem; font-size: .82rem; }

.btn-ghost-purple {
  background: #fff; color: #321b58; border: 1px solid #321b58;
}
.btn-ghost-purple:hover { background:#321b58; color:#fff; }

.btn-outline-purple {
  background: #fff; color:#321b58; border:1px solid #321b58;
}
.btn-outline-purple:hover { background:#321b58; color:#fff; }

/* responsive */
@media (max-width: 1024px) {
  .events-grid__grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 640px) {
  .events-grid__head { grid-template-columns: 1fr; align-items: start; }
  .events-grid__intro { max-width: 100%; }
  .events-grid__grid { grid-template-columns: 1fr; }
  .section-events-grid { padding: 3.2rem 0 3.6rem; }
}

/* ===== Section Title ===== */
.section_title {
  text-align: center;
  max-width: 800px;
  margin: 4rem auto 1.8rem;
  color: #361e63;
}

/* ===== Section Title Alt ===== */
.section-title-alt {
  background: #eeedf1; /* soft gray bar */
  margin: 0;
  padding-top: 3rem;
  align-items: center;
  text-align: center;
}

.section-title-alt__inner {
  background: #eeedf1; /* soft gray bar */
  padding: 0.75rem 0;  /* controls the gray thickness */
}

.section-title-alt h2 {
  margin: 0;
  font-size: 2rem;
  font-weight: 700;
  color: #321b58;
  line-height: 1.2;
}

@media (max-width: 768px) {
  .section-title-alt h2 {
    font-size: 1.6rem;
  }
}



/* ===== Insights Gallery (4x4 collage) ===== */

.section-insights-gallery {
  background: #fff;
  padding: 3.5rem 0 4rem;
}

.insights-grid {
  display: grid;
  /* grid-template-columns: repeat(4, 1fr); */
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 200px;
  gap: 10px;
  max-width: 1140px;
  margin: 0 auto;
}

.insights-grid figure {
  margin: 0;
  overflow: hidden;
  background: #f3f4f6;
}

.insights-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Big tile for every batch-of-5 leader */
.big-tile {
  grid-column: span 1;
  grid-row: span 1;
}

/* Figure becomes relative to position overlay */
.insights-grid figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #f3f4f6;
}

/* Overlay base */
.insights-grid figure::after {
  content: attr(data-caption);
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

/* Hover reveal */
.insights-grid figure:hover::after {
  opacity: 1;
}


/* Responsive */
@media (max-width: 1024px) {
  .insights-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 180px;
    gap: 8px;
  }
}

@media (max-width: 640px) {
  .insights-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 160px;
    gap: 6px;
  }
}


/* ===== Featured Slider ===== */
.section-featured-slider {
  background: #e9e7ed;
  padding: 3.8rem 0 4.4rem;
}

.featured-slider__head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 1.8rem;
}
.featured-slider__title {
  margin: 0 0 .7rem;
  font-size: 2rem;
  color: #321b58;
  letter-spacing: -0.01em;
}
.featured-slider__intro {
  margin: 0;
  color: black;
}

.feature-slider__intro p{
  font-size: .95rem;
  line-height: 1.6;
  color: inherit !important;
}

/* ===== Slider structure ===== */
.featured-slider {
  position: relative;
}
.featured-slider__viewport {
  overflow: hidden;
  border-radius: 4px;
  width: 90%;
  margin: 0 auto;
}
.featured-slider__track {
  display: flex;
  transition: transform .45s ease;
  will-change: transform;
}
.featured-slider__slide {
  flex: 0 0 100%;
  margin: 0;
}
.featured-slider__slide-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: stretch;
}
.featured-slider__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: #f3f4f6;
}

/* ===== Arrows ===== */
/* Base arrow button */
.featured-slider__arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  z-index:5;
  width:40px; height:40px;
  border-radius:50%;
  border:0;
  background:#fff;
  color:#1f2933;                 /* drives icon color via mask */
  box-shadow:0 6px 18px rgba(0,0,0,.12);
  cursor:pointer;
  display:grid; place-items:center;
}

/* Icon using mask so it inherits color */
.featured-slider__arrow::before{
  content:"";
  width:16px; height:16px;
  background: currentColor;
  -webkit-mask: no-repeat center / contain;
          mask: no-repeat center / contain;
}

/* Hook up your SVGs */
.featured-slider__arrow--prev{ left:-12px; }
.featured-slider__arrow--prev::before{
  -webkit-mask-image:url('/assets/images/arrow_left.svg');
          mask-image:url('/assets/images/arrow_left.svg');
}
.featured-slider__arrow--next{ right:-12px; }
.featured-slider__arrow--next::before{
  -webkit-mask-image:url('/assets/images/arrow_right.svg');
          mask-image:url('/assets/images/arrow_right.svg');
}

/* Hover / focus */
.featured-slider__arrow:hover,
.featured-slider__arrow:focus-visible{
  background:#321b58;
  color:#fff;
  outline:none;
}

/* Disabled (optional) */
.featured-slider__arrow[disabled]{
  opacity:.45; pointer-events:none;
}

/* Tweak for smaller screens */
@media (max-width:1200px){
  .featured-slider__arrow--prev{ left:4px; }
  .featured-slider__arrow--next{ right:4px; }
}
@media (max-width:640px){
  .featured-slider__arrow{ width:36px; height:36px; }
  .featured-slider__arrow::before{ width:14px; height:14px; }
}


/* ===== Dots ===== */
.featured-slider__dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 25px;
}
.featured-slider__dots button {
  width: 8px;
  height: 11px;
  border-radius: 50%;
  border: 0;
  background: #bfc5cb;
  cursor: pointer;
}
.featured-slider__dots button[aria-current="true"] {
  background: #321b58;
}

/* ===== Responsive ===== */
@media (max-width: 1200px) {
  .featured-slider__arrow--prev {
    left: 4px;
  }
  .featured-slider__arrow--next {
    right: 4px;
  }
}
@media (max-width: 900px) {
  .featured-slider__slide-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}
@media (max-width: 640px) {
  .section-featured-slider {
    padding: 3.2rem 0 3.6rem;
  }
  .featured-slider__arrow {
    width: 34px;
    height: 34px;
  }
}

.featured-slider__slide-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
  align-items:stretch;
}
.featured-slider__img{
  width:100%; height:100%;
  object-fit:cover; display:block; background:#f3f4f6;
}

@media (max-width:900px){
  .featured-slider__slide-grid{ grid-template-columns:1fr; gap:10px; aspect-ratio:auto; }
}


/* ===== Newsletter band ===== */
.section-newsletter{
  background:#2f1b54; /* PCAP purple */
  color:#fff;
  padding: 3.5rem 0;
}
.newsletter__inner{
  display:grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 2.2rem;
  align-items:center;
}
.newsletter__title{
  margin:0 0 .6rem;
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing:-.01em;
}
.newsletter__text{
  margin:0;
  max-width: 620px;

}

.newsletter__text p{
color: rgba(255,255,255,.9);
  line-height:1.6;
}

/* form */
.newsletter__form{ justify-self:end; width:100%; max-width: 720px; }
.newsletter__inputwrap{
  display:grid;
  grid-template-columns: 1fr auto;
  border:1px solid rgba(255,255,255,.4);
  border-radius: 2px;
  overflow:hidden;
  background: transparent;
}
.newsletter__input{
  background: transparent;
  color:#fff;
  border:0;
  padding: .95rem 1rem;
  font-size: 1rem;
  outline:none;
}
.newsletter__input::placeholder{ color: rgba(255,255,255,.7); }
.newsletter__btn{
  background:#fff;
  color:#1f1a2f;
  border:0;
  padding:.95rem 1.4rem;
  font-weight:700;
  cursor:pointer;
}
.newsletter__btn:hover{
  background:#eae7f4;
}
.newsletter__note{
  display:block;
  margin-top:.5rem;
  color: rgba(255,255,255,.7);
  font-size:.8rem;
}

/* accessibility helper */
.sr-only{
  position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden;
  clip:rect(0,0,0,0); white-space:nowrap; border:0;
}

.newsletter__inputwrap label{
  display: none;
}

.hide-error{
  display: none;
}
/* responsive */
@media (max-width: 1024px){
  .newsletter__inner{ grid-template-columns:1fr; gap:1.6rem; }
  .newsletter__form{ justify-self:start; max-width:100%; }
}
@media (max-width: 640px){
  .section-newsletter{ padding: 2.8rem 0; }
  .newsletter__title{ font-size: 2rem; }
  .newsletter__inputwrap{ grid-template-columns: 1fr; }
  .newsletter__btn{ width:100%; }
}


/* ===== Collaborator Resources (refined) ===== */
.section-collab-resources{
  background:#fff;
  padding: 2.75rem 0 3.25rem;
}

.collab-res__title{
  margin:0 0 1.4rem;
  font-size:2rem;
  font-weight:800;
  color:#321b58;
  letter-spacing:-0.01em;
}

/* 2-column grid with comfortable gutters */
.collab-res__grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  column-gap: 2.25rem;          /* more breathing room between columns */
  row-gap: 1.75rem;
}

/* Card: subtle border, even internal spacing */
.collab-card{
  display:grid;
  grid-template-columns: 184px 1fr; /* fixed media width for consistent columns */
  gap: 1.1rem;
  padding: .95rem;
  border:0px solid rgba(50,27,88,.28);
  border-radius:4px;
  background:#fff;
  align-items:start;
  transition:border-color .18s ease, box-shadow .18s ease;
}

/* Media: fixed aspect, no jumpy rows */
.collab-card__media{
  width:180px;
  height: auto;
  /* aspect-ratio: 4 / 3; */
  overflow:hidden;
  border-radius:2px;
  background:#f4f5f7;
  flex:0 0 auto;
}
.collab-card__media img{
  width:100%;
  height:auto;
  /* object-fit:cover;
  display:block; */
}

/* Body */
.collab-card__body{
  min-width:0;
  display:flex;
  flex-direction:column;
  gap:.55rem;                   /* tight rhythm between heading/excerpt/button */
}

.collab-card__heading{
  margin:0;
  /* font-size:1.06rem; */
  font-size: 1.5rem;
  line-height:1.35;
  color:#321b58;
  letter-spacing:-.005em;
}
.collab-card__heading a{
  color:inherit; text-decoration:none;
}
.collab-card__heading a:hover{ text-decoration:underline; }

.collab-card__excerpt{
  margin:0;
  font-size:.92rem;
  line-height:1.55;
  color:#1f2933;
  max-width:46ch;               /* prevents super-long lines */
}

.collab-card__excerpt p{
  /* font-size:.92rem; */
  line-height:1.55;
  color:#050505;
}

/* Button — compact */
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  text-decoration:none; border-radius:3px; font-weight:600;
  padding:.52rem .9rem; font-size:.82rem;
}
.btn-outline-purple{
  border:1px solid #321b58; color:#321b58; background:#fff;
}
.btn-outline-purple:hover{ background:#321b58; color:#fff; }

/* Hover/focus lift */
.collab-card:hover,
.collab-card:focus-within{
  border-color:#321b58;
  box-shadow:0 8px 20px rgba(0,0,0,.06);
}

/* Fine-tune spacing when titles wrap to two lines */
.collab-card__heading + .collab-card__excerpt{ margin-top:.1rem; }

/* ===== Responsive ===== */
@media (max-width: 1024px){
  .collab-res__grid{ grid-template-columns:1fr; row-gap:1.25rem; }
}

@media (max-width: 680px){
  .collab-card{
    grid-template-columns: 136px 1fr; gap:.85rem; padding:.8rem;
  }
  .collab-card__media{ width:136px; }
  .collab-res__title{ font-size:1.7rem; margin-bottom:1rem; }
}


/* ===== Call to Action – Simple ===== */
.section-cta-simple {
  background: #321b58; /* your brand purple */
  color: #fff;
  padding: 5rem 1rem;
  text-align: center;
}

.cta-simple__inner {
  max-width: 900px;
  margin: 0 auto;
}

.cta-simple__title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  line-height: 1.3;
}

.cta-simple__text {

  margin: 0 auto 2.2rem;
  max-width: 700px;
}

.cta-simple__text p{
   /* font-size: 1rem; */
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

/* Buttons */
.cta-simple__buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;
  padding: 0.75rem 1.8rem;
  font-size: 1rem;
  transition: all 0.2s ease;
}

.btn-light {
  background: #fff;
  color: #321b58;
  border: none;
}
.btn-light:hover {
  background: #251541;
  color: #fff;
}

.btn-outline-light {
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
}
.btn-outline-light:hover {
  background: #fff;
  color: #321b58;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .section-cta-simple {
    padding: 3.5rem 1.25rem;
  }

  .cta-simple__title {
    font-size: 1.8rem;
  }

  .cta-simple__text p{
    font-size: 0.95rem;

  }

  .cta-simple__buttons {
    flex-direction: column;
    gap: 0.8rem;
  }

  .btn {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
}


/* ===== FAQ + Side Image ===== */
.section-faq-sideimage{
  background:#fff;
  padding: 6.25rem 0 6.25rem;
}

.faq-sideimage__inner{
  display:grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.5rem 3.5rem;
  align-items:start;
}

/* Accordion list */
.faq-sideimage__list{
  border-top:1px solid rgba(50,27,88,.35);
}

.faq-item{
  border-bottom:1px solid rgba(50,27,88,.35);
}

/* Toggle row */
.faq-item__toggle{
  appearance:none;
  width:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:1rem;
  padding: 1.15rem 0;
  background:transparent;
  border:0;
  cursor:pointer;
  text-align:left;
}

.faq-item__question{
  font-size: 1.55rem;
  line-height:1.3;
  color:#321b58;
  letter-spacing:-.005em;
}

/* Plus / minus icon in a circle */
.faq-item__icon{
  position:relative;
  width:34px; height:34px;
  border-radius:50%;
  border:1px solid rgba(50,27,88,.45);
  flex:0 0 34px;
}
.faq-item__icon::before,
.faq-item__icon::after{
  content:"";
  position:absolute; left:50%; top:50%;
  width:16px; height:2px; background:#6a5a8e;
  transform:translate(-50%,-50%);
  transition:opacity .2s ease, transform .2s ease;
}
.faq-item__icon::after{
  transform:translate(-50%,-50%) rotate(90deg); /* vertical bar for plus */
}
.faq-item.is-open .faq-item__icon::after{
  opacity:0; transform:translate(-50%,-50%) scaleX(0); /* becomes minus */
}

/* Answer panel */
.faq-item__answer{
  max-height:0;
  overflow:hidden;
  color:#1f2933;
  font-size:1rem;
  line-height:1.65;
  padding-right:2.5rem;      /* keeps copy away from icon column */
  transition:max-height .3s ease, margin-top .2s ease;
}
.faq-item.is-open .faq-item__answer{
  margin-top:.35rem;
  max-height: 480px;         /* enough for typical answers */
}

/* Right image */
.faq-sideimage__media{
  margin:0; position:relative; overflow:hidden; border-radius:2px;
}
.faq-sideimage__media img{
  width:100%; height:auto; display:block; object-fit:cover;
}
.faq-sideimage__stripes{
  position:absolute; left:0; right:0; bottom:0; height:8px; display:flex;
}
.faq-sideimage__stripes .stripe{ flex:1 1 0; }
.stripe--purple{ background:#321b58; }
.stripe--blue{ background:#00aae3; }
.stripe--green{ background:#69bd45; }

/* Hover focus states */
.faq-item__toggle:hover .faq-item__question,
.faq-item__toggle:focus-visible .faq-item__question{
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Responsive */
@media (max-width: 1024px){
  .faq-sideimage__inner{
    grid-template-columns:1fr;
    gap:2rem;
  }
  .faq-sideimage__media{
    order:2;                 /* put image after accordion on tablet/mobile */
  }
}

@media (max-width: 640px){
  .faq-item__question{ font-size:1.25rem; }
  .faq-item__answer{ padding-right:0; }
}


/* ===== Contact section ===== */
.section-contact{
  background:#eeedf1;          /* light gray/purple like mock */
  padding: 2.8rem 0 3.4rem;
}

.contact__head{
  text-align:center;
  max-width: 760px;
  margin: 0 auto 1.6rem;
}
.contact__title{
  margin:0 0 .6rem; font-size:2rem; color:#321b58; letter-spacing:-.01em; font-weight:800;
}
.contact__intro{
  margin:0; color:#4a4f55; font-size:.95rem; line-height:1.6;
}

/* grid */
.contact__grid{
  display:grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 2rem 0;
  align-items:start;

}

/* left panel */
.contact-info{
  /* background:#fff; */
  background: transparent;
  border-radius:4px 0 0 4px;
  padding: 1.6rem 1.4rem 1.4rem 2.6rem;
  box-shadow:0 3px 16px rgba(0,0,0,.05);
  height: 100%;
}
.contact-info__title{
  margin:.2rem 0 .6rem; font-size:1.25rem; color:#321b58; font-weight:700;
}
.contact-info__blurb{  margin:20px 0 1.1rem;}
.contact-info__blurb p {
    color:#4a4f55;
    /* font-size:16px; */
}

.contact-info__list{
  list-style:none;
  padding:0;
  padding-top: 2rem;
  margin:0 0 1rem;
  display:grid;
  gap:.85rem;
}
.contact-info__item{
  display:grid; grid-template-columns:40px 1fr; gap:.8rem; align-items:flex-start;
}
.ci-ic{
  width:40px; height:40px; border-radius:50%; display:inline-block;
  background:#00aee3; position:relative; color:#fff; font-size:0;
}
.ci-ic::after{
  content:""; position:absolute; inset:0; margin:auto; width:20px; height:20px; background:#fff;
  -webkit-mask:no-repeat center/contain; mask:no-repeat center/contain;
}
.ci-ic--pin::after   { -webkit-mask-image:url('/assets/images/Location-filled.svg');   mask-image:url('/assets/images/Location-filled.svg'); }
.ci-ic--mail::after  { -webkit-mask-image:url('/assets/images/mail-core.svg');  mask-image:url('/assets/images/mail-core.svg'); }
.ci-ic--phone::after { -webkit-mask-image:url('/assets/images/phone-ringing.svg'); mask-image:url('/assets/images/phone-ringing.svg'); }

.contact-info__socialtitle{ margin:.6rem 0 .4rem; color:#1f2933; }
.contact-info__socials{ display:flex; gap:1.3rem; padding-top:1rem;}
.contact-info__socials img{
  width:25px; height:25px; border-radius:6px;
  display:grid; place-items:center; font-size:.85rem; text-decoration:none;
}


/* right form card */
.contact-form{
  background: linear-gradient(135deg, #321b58 0%, #1b2c8b 100%);
  color:#fff;
  border-radius:0 4px 4px 0;
  padding: 1.6rem 1.6rem 1.4rem;
  box-shadow:0 3px 16px rgba(0,0,0,.08);
}
.contact-form__title{ margin:.2rem 0 1rem; font-size:1.25rem; font-weight:700; }

label { margin-top: 0.5rem; }

.contact-form__body{ display:grid; gap:.9rem; }
.cf-row{ display:grid; grid-template-columns: 1fr 1fr; gap:.9rem; }

.cf-field{ display:grid; gap:.35rem; }
.cf-label{ font-size:.8rem; opacity:.9; }
.cf-field input,
.cf-field textarea{
  width:100%; border:0; border-radius:2px;
  padding:.7rem .8rem; background:#fff; color:#1f2933; font:inherit;
}
.cf-field select {
    width:100%;
    padding:.7rem .8rem;
     color:#1f2933;
     font:inherit;
}
.cf-field input[type="checkbox"] {
    margin-bottom: 2rem;
    width: auto;
    display: inline-block;
}
.cf-field input::placeholder,
.cf-field textarea::placeholder{ color:#8a94a0; }

/* button */
.btn{ display:inline-flex; align-items:center; justify-content:center; font-weight:700;
  text-decoration:none; border-radius:3px; border:0; cursor:pointer;
}
.btn-green{ background:#69bd45; color:#fff; padding:.8rem 1.1rem; }
.btn-green:hover{ background:#56a639; }

/* responsive */
@media (max-width: 980px){
  .contact__grid{ grid-template-columns:1fr; }
  .contact-info{ border-radius:4px; }
  .contact-form{ border-radius:4px; }
}
@media (max-width: 640px){
  .cf-row{ grid-template-columns:1fr; }
}

/* ===== Related Resources ===== */
/* Section shell */
.section-related-resources{
  background:#fff;
  padding: 2.6rem 0 3.2rem;
  color:#1f2933;
}
.relres__heading{
  color:#321b58;
  font-size:2rem;
  letter-spacing:-0.01em;
  margin:0 0 1.6rem;
}

/* Grid */
.relres__grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 2rem;
}

/* Card uses CSS Grid rows: header, media, flexible desc, fixed actions */
.relres-card{
  display:grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 0.5rem 1rem;
  padding: 1rem;
  background:#fff;
  transition: box-shadow .18s ease, border-color .18s ease;
}
.relres-card:hover{ border-color:#321b58; box-shadow:0 8px 20px rgba(0,0,0,.06); }

/* Title */
.relres-card__title{
  margin:0;

  min-height: 3.5rem;
}
.relres-card__title h3 {
  font-size: 1.5rem;
  line-height:1.25;
  color:#321b58;
  letter-spacing:-.005em;
}
.relres-card__title a{ color:inherit; text-decoration:none; }
.relres-card__title a:hover{ text-decoration:underline; }

/* Media */
.relres-card__media{
  margin:0; border-radius:2px; overflow:hidden; background:#f3f4f6;
}
.relres-card__media img{
  width:100%; height:220px; object-fit:cover; display:block;
}

/* Description: allow growth but cap length if needed */
.relres-card__desc p{
  margin:0;
  font-size:.98rem;
  line-height:1.55;
  color:#4a4f55;
  /* optional line clamp for neater rows; remove if you want full text */
  /* display:-webkit-box; -webkit-line-clamp:4; -webkit-box-orient:vertical; overflow:hidden; */
}

/* Actions locked to bottom by grid layout */
.relres-card__actions{
  margin-top:.25rem;
}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  text-decoration:none; font-weight:700; border-radius:4px;
  padding:.7rem 1.1rem; font-size:.95rem;
}
.btn-outline-purple{
  border:1px solid #321b58; color:#321b58; background:transparent;
}
.btn-outline-purple:hover{ background:#321b58; color:#fff; }

/* Responsive */
@media (max-width: 1200px){
  .relres-card__media img{ height:200px; }
}
@media (max-width: 980px){
  .relres__grid{ grid-template-columns: 1fr; }
  .relres-card__media img{ height:220px; }
}


/* ===== Feature Split Section ===== */
.section-feature-split {
  background:#eeedf2;
  padding:2.8rem 0;
}
.feature-split__inner {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:2.5rem;
  max-width:1140px;
  margin:0 auto;
  padding:0 1.25rem;
}
.feature-split__image {
  position:relative;
  flex:1 1 50%;
}
.feature-split__image img {
  width:100%;
  min-height:359px;
  display:block;
  border-radius:2px;
  object-fit:cover;
}
.feature-split__icon {
  position:absolute;
  bottom:1rem;
  left:1rem;
  width:56px;
  height:56px;
  border-radius:50%;
  background:#00aee3;
  display:flex;
  align-items:center;
  justify-content:center;
  z-index:2;
}
.feature-split__icon img {
  width:28px;
  height:28px;
  object-fit:contain;
}

/* content side */
.feature-split__content {
  flex:1 1 50%;
  color:#1f2933;
}
.feature-split__title {
  color:#321b58;
  font-size:1.4rem;
  font-weight:700;
  margin:0 0 .8rem;
}
.feature-split__text {
  font-size:.95rem;
  line-height:1.55;
  margin:0 0 1.2rem;
  max-width:440px;
}
.btn {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:.65rem 1.25rem;
  border-radius:2px;
  text-decoration:none;
  font-weight:600;
}
.btn-purple {
  background:#321b58;
  color:#fff;
}
.btn-purple:hover {
  background:#1b2c8b;
}

/* ===== Variant: image right ===== */
.feature-split--reverse .feature-split__inner {
  flex-direction:row-reverse;
}
.feature-split--reverse .feature-split__icon {
  left:auto;
  right:1rem;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .feature-split__inner {
    flex-direction:column;
    text-align:center;
  }
  .feature-split__text {
    max-width:100%;
  }
  .feature-split__icon {
    left:50%;
    transform:translateX(-50%);
    bottom:-1.5rem;
  }
}


.download-card {
  padding: 3rem 0;
}

.download-card__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.download-card__image img {
  /* width: 100%; */
  max-width: 250px;
  height: auto;
  border-radius: 0.5rem;
}

.download-card__content {
  max-width: 800px;
  text-align: left;
}

.download-card__title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.download-card__text {
  margin-bottom: 1.5rem;
  color: #444;
}

/* Desktop layout */
@media (min-width: 768px) {
  .download-card__inner {
    flex-direction: row;
    align-items: flex-start;
    gap: 3rem;
  }

  .download-card__image {
    flex: 0 0 10%;
  }

  .download-card__content {
    flex: 1;
  }
}

.search-container{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: start;
}

.search-form {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 480px; /* optional, but helps */
  margin: 0 auto;
  border: 1px solid #ccc;
  border-radius: 50px;
  padding: 0.25rem 0.5rem;
  background: #fff;
}

.search-form__input {
  flex: 1 1 auto;        /* lets it shrink */
  min-width: 0;          /* required so flexbox actually shrinks it */
  border: none;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  border-radius: 50px;
  outline: none;
}

.search-form__button {
  flex: 0 0 auto;        /* button stays fixed */
  background: #321b5b;
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 0.6rem 1.25rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease;
}

.search-form__button:hover,
.search-form__button:focus {
  background: #005bb5;
}

@media (max-width: 480px) {
  .search-form__input {
    padding: 0.5rem 0.75rem;
  }
  .search-form__button {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
  }
}


/* search results */
/* -----------------*/
.search-results {
  max-width: 1000px;
  margin: 3rem auto;
  padding: 0 1rem;
}

/* summary */
.search-results__summary {
  margin-bottom: 2rem;
  font-size: 1.1rem;
  color: #333;
  text-align: center;
}

/* grid layout */
.search-results__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}

/* result card */
.search-result {
  border: 1px solid #e1e1e1;
  border-radius: 8px;
  background: #fff;
  padding: 1.25rem;
  transition: box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
}

.search-result:hover {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* image */
.search-result__image {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 6px;
  margin-right: 1rem;
  flex-shrink: 0;
}

/* layout for title + image */
.search-result__title {
  display: flex;
  align-items: center;
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.search-result__title a {
  color: #321b5b;
  text-decoration: none;
}

.search-result__title a:hover {
  text-decoration: underline;
}

/* meta */
.search-result__meta {
  font-size: 0.9rem;
  color: #777;
  margin-bottom: 0.75rem;
}

.search-result__excerpt {
  flex: 1;
  color: #444;
  margin-bottom: 1rem;
}

/* button */
.search-result__link {
  align-self: flex-start;
  display: inline-block;
  padding: 0.5rem 1rem;
  background: #321b5b;
  color: #fff;
  border-radius: 4px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s ease;
}

.search-result__link:hover {
  background: #241043;
}

/* pagination */
.search-results__pagination {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.95rem;
}

.search-results__no-results {
  text-align: center;
  padding: 3rem 1rem;
  background: #f9f9f9;
  border-radius: 8px;
  color: #555;
}

/* contact grid */
.contact-grid-content p{
  /* color: #4a4f55;
  font-size: 16px; */
  font-size: 1rem;
}

/* ==== dropdown ======== */
/* Container */
.has-dropdown {
  position: relative;
}

.has-dropdown::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 35px; /* This is your gap tolerance */
  background: transparent;
}

.has-dropdown > .dropdown-menu {
  top: calc(100% + 5px);
  margin-top: 0;
  padding-top: 0;


}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: #fff;
  border: 1px solid #ddd;
  padding: 0.25rem 0;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  display: none;
  z-index: 50;
  list-style: none;
  margin: 0;
  padding: 0.8rem 0; /* add spacing around items */

}

/* Desktop hover */
@media (pointer: fine) {
  .has-dropdown:hover .dropdown-menu {
    display: block;
  }
}

.dropdown-link {
  display: block;
  padding: 0.6rem 1rem;
  white-space: nowrap;
  text-decoration: none;
}


.dropdown-link:hover,
.dropdown-link:focus {
  background: #f5f5f5;
}


h3 { font-size: 5rem; }
main p, main li { font-size: 1.05rem; line-height: 1.6; }
main p a, main li a { color: #00aae3; font-weight: 600; }
