:root {
  --ink: #17231f;
  --muted: #607069;
  --line: #dfe8e2;
  --paper: #fbfdfb;
  --soft: #eef6f0;
  --green: #1d6b4f;
  --green-dark: #0f4a37;
  --gold: #d49b2a;
  --blue: #2d6cdf;
  --shadow: 0 18px 50px rgba(23, 35, 31, 0.1);
  --font-ui: "Plus Jakarta Sans", "Inter", Arial, Helvetica, sans-serif;
  --font-body: "Inter", "Plus Jakarta Sans", Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-body);
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6,
button,
input,
select,
textarea,
.button,
.site-nav,
.nav-cta,
.eyebrow,
.section-heading span,
.tag {
  font-family: var(--font-ui);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.hero,
.page-hero,
.section,
.cta-section,
.stats-band,
.site-footer {
  width: min(1120px, calc(100% - 36px));
  margin-inline: auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.88fr);
  align-items: center;
  gap: 44px;
  min-height: calc(100vh - 76px);
  padding: 48px 0 64px;
}

.hero h1,
.page-hero h1 {
  margin: 12px 0 18px;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.02;
}

.hero p,
.page-hero p,
.section-heading p {
  color: var(--muted);
  font-size: 18px;
}

.eyebrow,
.section-heading span,
.tag {
  display: inline-flex;
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid var(--green);
  border-radius: 8px;
  font-weight: 800;
  cursor: pointer;
}

.button.ghost {
  color: var(--green-dark);
  background: transparent;
}

.hero-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.stats-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  margin-bottom: 64px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.stats-band div {
  padding: 24px;
  background: white;
}

.stats-band strong {
  display: block;
  color: var(--green);
  font-size: 32px;
  line-height: 1;
}

.stats-band span {
  color: var(--muted);
}

.section,
.page-hero,
.cta-section {
  padding: 72px 0;
}

.page-hero {
  max-width: 860px;
  margin-left: max(18px, calc((100% - 1120px) / 2));
}

.section-heading {
  max-width: 720px;
  margin-bottom: 28px;
}

.section-heading h2,
.cta-section h2 {
  margin: 8px 0 12px;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.08;
}

.muted {
  width: 100%;
  max-width: none;
  padding-inline: max(18px, calc((100% - 1120px) / 2));
  background: var(--soft);
}

.card-grid,
.article-grid,
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.feature-card,
.article-card,
.program-card,
.info-list article,
.contact-card,
.contact-form {
  padding: 22px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.feature-card span {
  color: var(--gold);
  font-weight: 800;
}

.feature-card h3,
.article-card h3,
.program-card h2 {
  margin: 10px 0;
  line-height: 1.2;
}

.feature-card p,
.article-card p,
.program-card li,
.info-list p,
.contact-card p {
  color: var(--muted);
}

.text-link {
  display: inline-flex;
  margin-top: 8px;
  color: var(--green-dark);
  font-weight: 800;
}

.article-card {
  overflow: hidden;
  padding: 0;
}

.article-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.article-card div {
  padding: 20px;
}

.article-card time,
.article-detail time {
  color: var(--muted);
  font-size: 14px;
}

.cta-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 54px;
  padding-inline: 28px;
  background: var(--green-dark);
  color: white;
  border-radius: 8px;
}

.cta-section p,
.cta-section .eyebrow {
  color: rgba(255, 255, 255, 0.78);
}

.two-column,
.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
}

.info-list {
  display: grid;
  gap: 14px;
}

.program-list {
  display: grid;
  gap: 18px;
}

.program-card ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 24px;
  padding-left: 18px;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.filter-bar button {
  min-height: 40px;
  padding: 8px 14px;
  color: var(--green-dark);
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 700;
}

.filter-bar button.is-active {
  color: white;
  background: var(--green);
}

.gallery-grid figure {
  margin: 0;
  overflow: hidden;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.gallery-grid figcaption {
  padding: 14px;
  font-weight: 800;
}

.article-detail {
  width: min(860px, calc(100% - 36px));
  margin: 0 auto;
  padding: 64px 0;
}

.article-detail h1 {
  margin: 12px 0;
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.08;
}

.article-detail>img {
  width: 100%;
  aspect-ratio: 16 / 9;
  margin: 28px 0;
  object-fit: cover;
  border-radius: 8px;
}

.content-body {
  color: #2d3a35;
  font-size: 18px;
}

.text-section {
  max-width: 900px;
}

.partner-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.partner-list span {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 10px 16px;
  color: var(--green-dark);
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 800;
}

.timeline-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.timeline-list article {
  padding: 22px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.timeline-list span {
  color: var(--gold);
  font-weight: 800;
}

.timeline-list h3 {
  margin: 10px 0;
  line-height: 1.2;
}

.timeline-list p {
  color: var(--muted);
}

.about-hero .button {
  margin-top: 18px;
}

.vision-card,
.mission-list article,
.message-card,
.legal-list article {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.vision-card {
  padding: 24px;
}

.vision-card span,
.legal-list span {
  color: var(--gold);
  font-weight: 800;
}

.vision-card p {
  margin-bottom: 0;
  color: var(--ink);
  font-size: 20px;
}

.mission-list {
  display: grid;
  gap: 12px;
}

.mission-list article {
  display: grid;
  grid-template-columns: 14px 1fr;
  gap: 14px;
  padding: 18px;
}

.mission-list article span {
  width: 10px;
  height: 10px;
  margin-top: 8px;
  background: var(--green);
  border-radius: 50%;
}

.mission-list p {
  margin: 0;
  color: var(--muted);
}

.structure-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.message-card {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 32px;
  padding: 32px;
}

.message-card h2 {
  margin: 8px 0 14px;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.08;
}

.message-card footer {
  align-self: end;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.message-card footer strong,
.message-card footer span {
  display: block;
}

.message-card footer span {
  color: var(--muted);
}

.legal-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.legal-list article {
  padding: 20px;
}

.legal-list strong {
  display: block;
  margin-top: 8px;
  font-size: 18px;
  line-height: 1.25;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 860px;
}

.faq-list details {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.faq-list summary {
  cursor: pointer;
  padding: 18px 20px;
  color: var(--green-dark);
  font-weight: 800;
}

.faq-list p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
}

.contact-form {
  display: grid;
  gap: 16px;
}

.hp-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-form h2,
.contact-card h2 {
  margin: 0;
  line-height: 1.15;
}

.contact-form label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
}

.form-note {
  min-height: 24px;
  margin: 0;
  color: var(--green-dark);
  font-weight: 700;
}

.map-box {
  overflow: hidden;
  min-height: 360px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.map-box iframe {
  width: 100%;
  height: 420px;
  border: 0;
}

.map-box p {
  margin: 0;
  padding: 24px;
  color: var(--muted);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 32px 0;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.site-footer strong {
  color: var(--ink);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

@media (max-width: 900px) {

  .hero,
  .two-column,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .card-grid,
  .article-grid,
  .gallery-grid,
  .stats-band,
  .timeline-list,
  .structure-grid,
  .legal-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .message-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding-inline: 18px;
  }


  .hero h1,
  .page-hero h1 {
    font-size: 38px;
  }

  .card-grid,
  .article-grid,
  .gallery-grid,
  .stats-band,
  .timeline-list,
  .structure-grid,
  .legal-list,
  .program-card ul {
    grid-template-columns: 1fr;
  }

  .cta-section,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* Bootstrap home template */
body {
  overflow-x: hidden;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 92px;
  padding: 12px clamp(18px, 5vw, 58px);
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 10px 35px rgba(16, 66, 139, 0.06);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  margin-right: clamp(18px, 5vw, 70px);
}

.logo-img {
  height: clamp(64px, 10vw, 78px);
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.brand:hover .logo-img {
  transform: scale(1.04);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.site-nav a {
  position: relative;
  padding: 10px 8px;
  color: #071b3d;
  background: transparent;
  font-size: 15px;
  font-weight: 700;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 2px;
  content: "";
  background: #1057c8;
  border-radius: 99px;
  opacity: 0;
  transform: scaleX(0.35);
  transition: opacity 0.24s ease, transform 0.24s ease;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: #1057c8;
  background: transparent;
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.site-nav .nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
  padding: 13px 21px;
  color: #fff;
  background: linear-gradient(135deg, #1688df, #0e4ab5);
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(16, 88, 200, 0.24);
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus-visible,
.button.primary:hover,
.button.primary:focus-visible {
  color: #fff;
  background: linear-gradient(135deg, #0b45af, #06398f);
  box-shadow: 0 16px 34px rgba(10, 65, 164, 0.32);
  transform: translateY(-2px);
}

.site-nav .nav-cta::after {
  display: none;
}

.nav-toggle .navbar-toggler-icon {
  position: relative;
  display: block;
  width: 24px;
  height: 18px;
  margin: 0;
  background:
    linear-gradient(#071b3d, #071b3d) center / 100% 2px no-repeat;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.nav-toggle .navbar-toggler-icon::before,
.nav-toggle .navbar-toggler-icon::after {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  content: "";
  background: #071b3d;
  border-radius: 99px;
  transition: transform 0.2s ease, top 0.2s ease, bottom 0.2s ease;
}

.nav-toggle .navbar-toggler-icon::before {
  top: 0;
}

.nav-toggle .navbar-toggler-icon::after {
  bottom: 0;
}

.nav-toggle[aria-expanded="true"] .navbar-toggler-icon {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] .navbar-toggler-icon::before {
  top: 8px;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .navbar-toggler-icon::after {
  bottom: 8px;
  transform: rotate(-45deg);
}

.home-page {
  background:
    radial-gradient(circle at 18% 18%, rgba(211, 238, 255, 0.65), transparent 28rem),
    linear-gradient(180deg, #f8fcff 0%, #fff 43%, #f8fbff 100%);
}

.home-hero {
  min-height: calc(100vh - 92px);
  padding: clamp(40px, 8vw, 86px) 0 160px;
  background:
    linear-gradient(90deg, #f8fcff 0%, #f8fcff 35%, rgba(248, 252, 255, 0.8) 50%, rgba(13, 79, 181, 0.92) 80%, #0d4fb5 100%),
    radial-gradient(circle at left bottom, rgba(178, 223, 255, 0.6), transparent 40rem);
}

.hero-copy h1 {
  max-width: 640px;
  margin: 0 0 28px;
  color: #061c43;
  font-size: clamp(44px, 6vw, 76px);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.04;
}

.hero-copy p {
  max-width: 530px;
  color: #243656;
  font-size: 17px;
  line-height: 1.9;
}

.hero-actions .button {
  gap: 10px;
  min-width: 200px;
  min-height: 58px;
  border-radius: 999px;
  font-size: 16px;
}

.hero-actions .primary,
.button.primary {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(135deg, #1688df, #0d4fb5);
  box-shadow: 0 14px 32px rgba(13, 79, 181, 0.28);
  transition: all 0.28s ease;
}

.hero-actions .primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(13, 79, 181, 0.35);
}

.hero-actions .ghost {
  color: #0d4fb5;
  background: transparent;
  border: 2px solid #0d4fb5;
  font-weight: 800;
}

.hero-visual {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 190px;
  gap: 20px;
  align-items: center;
}

.hero-visual::before {
  position: absolute;
  inset: -6% -12% -10% 12%;
  z-index: 0;
  content: "";
  background: rgba(22, 136, 223, 0.08);
  border-radius: 60% 0 0 60%;
}

.hero-visual-main,
.hero-thumbs {
  position: relative;
  z-index: 1;
}

.hero-visual-main {
  overflow: hidden;
  border-radius: 200px 30px 30px 200px;
  box-shadow: 0 32px 80px rgba(13, 79, 181, 0.22);
}

.hero-visual-main img {
  width: 100%;
  min-height: 580px;
  object-fit: cover;
}

.hero-thumbs {
  display: grid;
  gap: 14px;
}

.hero-thumbs img {
  width: 100%;
  aspect-ratio: 1.28 / 1;
  object-fit: cover;
  border: 4px solid #fff;
  border-radius: 18px;
  box-shadow: 0 14px 30px rgba(3, 30, 72, 0.2);
}

.hero-leaf {
  position: absolute;
  z-index: 0;
  width: 34px;
  height: 17px;
  background: #77b84a;
  border-radius: 80% 0 80% 0;
  filter: blur(0.2px);
  opacity: 0.72;
}

.leaf-one {
  top: 15%;
  left: 3%;
  width: 44px;
  height: 22px;
  transform: rotate(25deg);
}

.leaf-two {
  top: 45%;
  left: 45%;
  width: 58px;
  height: 29px;
  transform: rotate(-15deg);
}

.leaf-three {
  top: 72%;
  left: 8%;
  width: 36px;
  height: 18px;
  transform: rotate(45deg);
  opacity: 0.45;
}

.leaf-four {
  top: 25%;
  left: 55%;
  width: 32px;
  height: 16px;
  transform: rotate(-35deg);
  opacity: 0.55;
}

.home-feature-strip {
  position: relative;
  z-index: 2;
  margin-top: -106px;
  margin-bottom: 54px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(16, 76, 174, 0.08);
  border-radius: 16px;
  box-shadow: 0 24px 60px rgba(12, 54, 121, 0.12);
}

.feature-mini {
  display: grid;
  justify-items: center;
  min-height: 180px;
  padding: 28px 20px;
  text-align: center;
  border-right: 1px solid #e5edf8;
}

.feature-mini i {
  color: #1158c6;
  font-size: 34px;
  line-height: 1;
}

.feature-mini h2,
.program-tile h3 {
  margin: 14px 0 7px;
  color: #071b3d;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.25;
}

.feature-mini p,
.program-tile p {
  margin: 0;
  color: #23324d;
  font-size: 14px;
  line-height: 1.65;
}

.feature-stat strong {
  display: block;
  color: #1158c6;
  font-size: 44px;
  line-height: 1;
}

.feature-stat span {
  color: #071b3d;
  font-weight: 900;
  line-height: 1.35;
}

.section-tight {
  padding: 28px 0;
}

.home-section-title h2 {
  margin: 0 0 22px;
  color: #0c4daf;
  font-size: clamp(27px, 3vw, 35px);
  font-weight: 900;
  line-height: 1.15;
}

.program-tile {
  height: 100%;
  padding: 28px 22px 24px;
  text-align: center;
  background: linear-gradient(145deg, #f8fbff, #eef4fb);
  border: 1px solid rgba(15, 76, 174, 0.07);
  border-radius: 12px;
  box-shadow: 0 16px 38px rgba(15, 76, 174, 0.07);
  transition: transform 0.26s ease, box-shadow 0.26s ease;
}

.program-tile:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 46px rgba(15, 76, 174, 0.15);
}

.program-icon {
  display: inline-grid;
  width: 62px;
  height: 62px;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, #35a8e8, #104bb0);
  border-radius: 14px;
  box-shadow: 0 12px 28px rgba(16, 76, 174, 0.2);
}

.program-icon i {
  font-size: 30px;
}

.program-tile a,
.view-all-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 18px;
  color: #0d4fb5;
  font-size: 14px;
  font-weight: 900;
}

.program-highlight-panel {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  padding: 50px 40px;
  background: #fff;
  border: 1px solid rgba(13, 79, 181, 0.08);
  border-radius: 20px;
  box-shadow: 0 24px 60px rgba(9, 42, 96, 0.1);
}

.program-highlight-copy span {
  display: inline-block;
  margin-bottom: 12px;
  padding: 4px 14px;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  background: #1158c6;
  border-radius: 6px;
}

.program-highlight-copy h2 {
  margin-bottom: 18px;
  color: #061c43;
  font-size: 38px;
  font-weight: 900;
}

.program-checkmark-list {
  margin: 22px 0 28px;
  padding: 0;
  list-style: none;
}

.program-checkmark-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
  color: #17263f;
  font-weight: 600;
}

.program-checkmark-list i {
  color: #0d4fb5;
  font-size: 18px;
}

.program-highlight-media {
  display: grid;
  grid-template-columns: 1fr 140px;
  gap: 14px;
}

.program-highlight-media .main-photo {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
  border-radius: 14px;
}

.program-highlight-media div {
  display: grid;
  gap: 14px;
}

.program-highlight-media div img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.gallery-tile {
  margin: 0;
}

.gallery-tile img {
  width: 100%;
  aspect-ratio: 1.7 / 1;
  object-fit: cover;
  border-radius: 9px;
  box-shadow: 0 16px 34px rgba(7, 27, 61, 0.12);
  transition: transform 0.28s ease, filter 0.28s ease;
}

.gallery-tile:hover img {
  filter: saturate(1.08);
  transform: translateY(-5px);
}

.gallery-tile figcaption {
  padding-top: 11px;
  color: #071b3d;
  font-size: 13px;
  font-weight: 800;
  text-align: center;
  line-height: 1.35;
}

.about-panel,
.impact-panel {
  height: 100%;
  overflow: hidden;
  border: 1px solid rgba(16, 76, 174, 0.08);
  border-radius: 16px;
  box-shadow: 0 20px 55px rgba(7, 27, 61, 0.1);
}

.about-panel {
  position: relative;
  min-height: 290px;
  color: #fff;
  background: #0f5cc8;
}

.about-panel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
}

.about-panel::after {
  position: absolute;
  inset: 0 34% 0 0;
  content: "";
  background: rgba(15, 92, 200, 0.88);
  border-radius: 0 54% 54% 0;
}

.about-panel div {
  position: relative;
  z-index: 1;
  max-width: 520px;
  padding: clamp(28px, 4vw, 44px);
}

.about-panel h2,
.impact-panel h2 {
  margin: 0 0 18px;
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 900;
  line-height: 1.15;
}

.about-panel p {
  margin-bottom: 25px;
  line-height: 1.75;
}

.button.light {
  gap: 8px;
  color: #1057c8;
  background: #fff;
  border-color: #fff;
  border-radius: 999px;
}

.impact-panel {
  display: grid;
  align-content: center;
  padding: clamp(28px, 4vw, 42px);
  color: #0d4fb5;
  background:
    linear-gradient(rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.92)),
    radial-gradient(circle at 50% 100%, rgba(63, 151, 236, 0.22), transparent 62%);
}

.impact-panel h2 {
  text-align: center;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px 8px;
}

.impact-grid div {
  display: grid;
  justify-items: center;
  padding: 6px 10px;
  text-align: center;
}

.impact-grid strong {
  color: #0d4fb5;
  font-size: clamp(29px, 3.2vw, 38px);
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.impact-grid span {
  color: #071b3d;
  font-weight: 800;
}

.partner-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 34px;
}

.partner-badge {
  display: grid;
  align-content: center;
  min-width: 140px;
  min-height: 84px;
  justify-items: center;
  color: #071b3d;
  text-align: center;
  text-decoration: none;
}

.partner-badge strong {
  color: #0d4fb5;
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
}

.partner-badge img {
  display: block;
  width: auto;
  max-width: 154px;
  height: 52px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.partner-badge:hover img {
  transform: scale(1.08);
}


.site-footer {
  display: grid;
  grid-template-columns: minmax(220px, 1.25fr) minmax(160px, 0.85fr) minmax(210px, 0.9fr) minmax(130px, 0.65fr);
  width: 100%;
  max-width: none;
  margin-top: 0;
  padding: 42px clamp(18px, 5vw, 58px);
  color: rgba(255, 255, 255, 0.78);
  background:
    linear-gradient(rgba(13, 79, 181, 0.96), rgba(13, 79, 181, 0.96)),
    radial-gradient(circle at 12% 10%, rgba(255, 255, 255, 0.18), transparent 20rem);
  border-top: 0;
}

.site-footer strong,
.site-footer a {
  color: #fff;
}

.footer-brand {
  display: grid;
  grid-template-columns: 1fr;
  align-content: start;
  gap: 14px;
  padding-right: 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-brand p {
  max-width: 320px;
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
}

.footer-logo {
  width: max-content;
  margin-bottom: 14px;
}

.footer-logo-img {
  height: 68px;
  background: white;
  padding: 6px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 9px;
}

.footer-column strong {
  margin-bottom: 8px;
}

.footer-column a,
.footer-column span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

.footer-contact span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-links a {
  display: inline-grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 50%;
}

/* About template */
.about-page {
  background:
    radial-gradient(circle at 16% 18%, rgba(213, 238, 255, 0.75), transparent 31rem),
    linear-gradient(180deg, #f8fcff 0%, #fff 48%, #f7fbff 100%);
}

.about-hero-template {
  position: relative;
  min-height: 580px;
  overflow: hidden;
  padding: 110px 0 100px;
  background: #f8fcff;
}

.about-hero-template>img {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 0;
  width: 62%;
  height: 100%;
  object-fit: cover;
}

.about-hero-template::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background: linear-gradient(90deg, #f8fcff 0%, #f8fcff 42%, rgba(248, 252, 255, 0.7) 55%, rgba(248, 252, 255, 0) 80%);
}

.about-hero-template .container {
  position: relative;
  z-index: 2;
}

.breadcrumb-line {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 26px;
  color: #6c7890;
  font-size: 14px;
  font-weight: 800;
}

.breadcrumb-line a {
  color: #0d4fb5;
}

.breadcrumb-line i {
  font-size: 11px;
}

.about-hero-copy h1 {
  max-width: 720px;
  margin: 0 0 22px;
  color: #061c43;
  font-size: clamp(42px, 5vw, 62px);
  font-weight: 900;
  line-height: 1.18;
}

.about-hero-copy p {
  max-width: 560px;
  margin-bottom: 28px;
  color: #17263f;
  font-size: 17px;
  line-height: 1.85;
}

.about-hero-copy .button {
  gap: 10px;
  min-height: 58px;
  padding-inline: 28px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 800;
}

.about-intro {
  padding-top: 34px;
}

.who-card {
  padding: 30px 0;
}

.who-card h2,
.about-info-card h3 {
  color: #0d4fb5;
  font-weight: 900;
}

.who-card h2 {
  margin-bottom: 18px;
  font-size: 26px;
}

.who-card .content-body {
  color: #17263f;
  font-size: 16px;
  line-height: 1.85;
}

.about-info-card {
  display: grid;
  justify-items: center;
  min-height: 100%;
  padding: 28px 24px;
  text-align: center;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(14, 79, 181, 0.07);
  border-radius: 12px;
  box-shadow: 0 18px 48px rgba(9, 42, 96, 0.08);
}

.about-info-card>span {
  display: inline-grid;
  width: 74px;
  height: 74px;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, #1a79e1, #0b45af);
  border-radius: 50%;
  box-shadow: 0 16px 34px rgba(16, 76, 174, 0.24);
}

.about-info-card>span i {
  font-size: 38px;
}

.about-info-card h3 {
  margin: 20px 0 16px;
  font-size: 21px;
}

.about-info-card p,
.about-info-card li {
  color: #17263f;
  font-size: 14px;
  line-height: 1.65;
}

.about-info-card ul {
  margin: 0;
  padding-left: 18px;
  text-align: left;
}

.about-impact-band {
  margin: 28px 0 34px;
  padding: 48px 0;
  color: #fff;
  background: linear-gradient(135deg, #1688df, #0d4fb5);
}

.about-impact-band h2 {
  margin: 0;
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 900;
  line-height: 1.22;
}

.about-impact-band .row {
  align-items: stretch;
}

.about-impact-band .col-lg-3 {
  display: grid;
  align-items: center;
}

.about-impact-band .impact-band-item {
  min-height: 116px;
  padding: 6px 22px;
  align-content: center;
}

.about-impact-band .impact-band-item i {
  min-height: 38px;
  line-height: 1;
}

.about-impact-band .impact-band-item strong {
  font-size: clamp(28px, 2.5vw, 34px);
  line-height: 1;
  white-space: nowrap;
}

.impact-band-item {
  display: grid;
  justify-items: center;
  gap: 5px;
  min-height: 126px;
  padding: 4px 16px;
  text-align: center;
  border-left: 1px solid rgba(255, 255, 255, 0.28);
}

.impact-band-item i {
  font-size: 38px;
}

.impact-band-item strong {
  font-size: clamp(31px, 3vw, 40px);
  font-weight: 900;
  line-height: 1.05;
}

.impact-band-item span {
  font-weight: 800;
}

.about-journey {
  padding-top: 20px;
}

.home-section-title p {
  margin: -8px auto 26px;
  color: #17263f;
}

.journey-line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 34px;
}

.journey-line::before {
  position: absolute;
  top: 154px;
  right: 0;
  left: 0;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, transparent, #2f75d4 8%, #2f75d4 92%, transparent);
}

.journey-item {
  position: relative;
  z-index: 1;
}

.journey-item img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 1.72 / 1;
  object-fit: cover;
  border-radius: 9px;
  box-shadow: 0 16px 34px rgba(7, 27, 61, 0.12);
}

.journey-icon {
  display: grid;
  position: relative;
  z-index: 3;
  width: 58px;
  height: 58px;
  margin: -14px 0 16px 14px;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, #1a79e1, #0b45af);
  border: 5px solid #f8fcff;
  border-radius: 50%;
  box-shadow: 0 12px 28px rgba(16, 76, 174, 0.23);
}

.journey-item h3 {
  margin: 0 0 2px;
  color: #0d4fb5;
  font-size: 28px;
  font-weight: 900;
}

.journey-item strong {
  display: block;
  margin-bottom: 12px;
  color: #0b45af;
  font-weight: 900;
}

.journey-item strong::after {
  display: block;
  width: 100%;
  max-width: 178px;
  height: 2px;
  margin-top: 8px;
  content: "";
  background: #0d4fb5;
}

.journey-item p {
  margin: 0;
  color: #17263f;
  font-size: 14px;
  line-height: 1.6;
}

.partner-panel {
  padding: 24px 28px;
  background: #fff;
  border: 1px solid rgba(14, 79, 181, 0.08);
  border-radius: 12px;
  box-shadow: 0 18px 48px rgba(9, 42, 96, 0.08);
}

/* Program template */
.program-page {
  background:
    radial-gradient(circle at 10% 22%, rgba(215, 239, 255, 0.82), transparent 28rem),
    linear-gradient(180deg, #f8fcff 0%, #fff 42%, #f8fbff 100%);
}

.program-hero-template {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  padding: 92px 0 86px;
  background:
    linear-gradient(90deg, rgba(248, 252, 255, 0.98) 0%, rgba(248, 252, 255, 0.89) 38%, rgba(248, 252, 255, 0.24) 66%, rgba(248, 252, 255, 0) 100%),
    linear-gradient(180deg, #f5fbff, #eaf6ff);
}

.program-hero-template>img {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 0;
  width: 62%;
  height: 100%;
  object-fit: cover;
}

.program-hero-template::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background: linear-gradient(90deg, #f8fcff 0%, #f8fcff 38%, rgba(248, 252, 255, 0.88) 52%, rgba(248, 252, 255, 0) 78%);
}

.program-hero-template .container,
.program-hero-template .hero-leaf {
  position: relative;
  z-index: 2;
}

.program-hero-template .leaf-one {
  position: absolute;
  top: 77%;
  left: 2%;
}

.program-hero-template .leaf-two {
  position: absolute;
  top: 34%;
  left: 52%;
}

.program-hero-copy h1 {
  margin: 0 0 12px;
  color: #061c43;
  font-size: clamp(46px, 6vw, 70px);
  font-weight: 900;
  line-height: 1.1;
}

.program-hero-copy h2 {
  max-width: 640px;
  margin: 0 0 22px;
  color: #0d4fb5;
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 900;
  line-height: 1.35;
}

.program-hero-copy p {
  max-width: 610px;
  margin-bottom: 28px;
  color: #17263f;
  font-size: 16px;
  line-height: 1.85;
}

.program-hero-copy .button {
  gap: 9px;
  min-height: 54px;
  padding-inline: 24px;
  border-radius: 999px;
}

.program-cards-section {
  padding-top: 28px;
}

.program-feature-card {
  display: grid;
  justify-items: center;
  height: 100%;
  min-height: 250px;
  padding: 26px 18px 22px;
  text-align: center;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(14, 79, 181, 0.08);
  border-radius: 12px;
  box-shadow: 0 18px 46px rgba(9, 42, 96, 0.08);
  transition: box-shadow 0.24s ease, transform 0.24s ease;
}

.program-feature-card:hover {
  box-shadow: 0 24px 54px rgba(9, 42, 96, 0.15);
}

.program-feature-card>span {
  display: inline-grid;
  width: 70px;
  height: 70px;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, #1978e0, #0b45af);
  border-radius: 50%;
  box-shadow: 0 14px 30px rgba(16, 76, 174, 0.23);
}

.program-feature-card>span i {
  font-size: 34px;
}

.program-feature-card h3 {
  min-height: 42px;
  margin: 18px 0 10px;
  color: #061c43;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.32;
}

.program-feature-card p {
  margin: 0;
  color: #17263f;
  font-size: 13px;
  line-height: 1.65;
}

.program-feature-card a,
.program-action-card a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  align-self: end;
  margin-top: 18px;
  color: #0d4fb5;
  font-size: 13px;
  font-weight: 900;
}

.program-highlight-panel {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  padding: 50px 40px;
  background: #fff;
  border: 1px solid rgba(13, 79, 181, 0.08);
  border-radius: 20px;
  box-shadow: 0 24px 60px rgba(9, 42, 96, 0.1);
}

.program-highlight-copy>span {
  display: inline-block;
  margin-bottom: 12px;
  padding: 4px 14px;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  background: #1158c6;
  border-radius: 6px;
}

.program-highlight-copy h2 {
  margin: 0 0 18px;
  color: #061c43;
  font-size: 38px;
  font-weight: 900;
  line-height: 1.12;
}

.program-highlight-copy p {
  color: #17263f;
  font-size: 16px;
  line-height: 1.78;
}

.program-checkmark-list {
  margin: 22px 0 28px;
  padding: 0;
  list-style: none;
}

.program-checkmark-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
  color: #17263f;
  font-weight: 600;
}

.program-checkmark-list i {
  color: #0d4fb5;
  font-size: 18px;
}

.program-highlight-copy .button {
  gap: 8px;
  min-height: 48px;
  padding-inline: 22px;
  border-radius: 999px;
}

.program-highlight-media {
  display: grid;
  grid-template-columns: 1fr 140px;
  gap: 14px;
}

.program-highlight-media .main-photo {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 18px 40px rgba(7, 27, 61, 0.13);
}

.program-highlight-media div {
  display: grid;
  gap: 14px;
}

.program-highlight-media div img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.program-impact-band {
  width: min(1120px, calc(100% - 36px));
  margin: 22px auto 10px;
  padding: 30px 32px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(11, 69, 175, 0.97), rgba(7, 75, 174, 0.94)),
    radial-gradient(circle at 97% 70%, rgba(255, 255, 255, 0.22), transparent 12rem);
  border-radius: 14px;
  box-shadow: 0 20px 48px rgba(9, 42, 96, 0.14);
}

.program-impact-band .row {
  display: grid;
  grid-template-columns: 1.25fr repeat(4, minmax(0, 1fr));
  gap: 0;
  align-items: stretch;
}

.program-impact-band [class*="col-"] {
  width: auto;
  max-width: none;
  padding-right: 0;
  padding-left: 0;
}

.program-impact-band h2 {
  margin: 0;
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 900;
  line-height: 1.22;
}

.program-impact-band .col-lg-3 {
  display: grid;
  align-items: center;
  padding-right: 28px;
}

.program-impact-band .impact-band-item {
  min-height: 116px;
  padding: 6px 22px;
  align-content: center;
  border-left: 1px solid rgba(255, 255, 255, 0.24);
}

.program-impact-band .impact-band-item i {
  min-height: 38px;
  line-height: 1;
}

.program-impact-band .impact-band-item strong {
  font-size: clamp(28px, 2.5vw, 34px);
  line-height: 1;
  white-space: nowrap;
}

.program-action-card {
  height: 100%;
  text-align: center;
}

.program-action-card img {
  width: 100%;
  aspect-ratio: 1.72 / 1;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 16px 34px rgba(7, 27, 61, 0.12);
  transition: transform 0.24s ease;
}

.program-action-card:hover img {
  transform: translateY(-5px);
}

.program-action-card h3 {
  margin: 14px 0 6px;
  color: #0d4fb5;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.25;
}

.program-action-card p {
  margin: 0;
  color: #17263f;
  font-size: 13px;
  line-height: 1.55;
}

/* Activity / Kegiatan template */
.documentation-page {
  background:
    radial-gradient(circle at 8% 18%, rgba(215, 239, 255, 0.82), transparent 28rem),
    linear-gradient(180deg, #f8fcff 0%, #fff 45%, #f8fbff 100%);
}

.activity-hero-template {
  position: relative;
  min-height: 545px;
  overflow: hidden;
  padding: 86px 0 78px;
  background:
    linear-gradient(90deg, rgba(248, 252, 255, 0.98) 0%, rgba(248, 252, 255, 0.88) 39%, rgba(248, 252, 255, 0.23) 66%, rgba(248, 252, 255, 0) 100%),
    linear-gradient(180deg, #f6fbff, #eaf6ff);
}

.activity-hero-template>img {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 0;
  width: 64%;
  height: 100%;
  object-fit: cover;
}

.activity-hero-template::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background: linear-gradient(90deg, #f8fcff 0%, #f8fcff 38%, rgba(248, 252, 255, 0.88) 52%, rgba(248, 252, 255, 0) 78%);
}

.activity-hero-template .container {
  position: relative;
  z-index: 2;
}

.activity-hero-copy h1 {
  margin: 0 0 12px;
  color: #061c43;
  font-size: clamp(44px, 6vw, 68px);
  font-weight: 900;
  line-height: 1.1;
}

.activity-hero-copy h2 {
  max-width: 680px;
  margin: 0 0 22px;
  color: #0d4fb5;
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 900;
  line-height: 1.35;
}

.activity-hero-copy p {
  max-width: 620px;
  color: #17263f;
  font-size: 16px;
  line-height: 1.85;
}

.activity-listing {
  padding-top: 30px;
}

.activity-toolbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 150px;
  gap: 18px;
  align-items: center;
  margin-bottom: 28px;
}

.activity-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.activity-filters button,
.activity-sort {
  min-height: 46px;
  padding: 10px 22px;
  color: #061c43;
  background: #f4f8fd;
  border: 1px solid #dce8f7;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
}

.activity-filters button.is-active {
  color: #fff;
  background: #0d4fb5;
  border-color: #0d4fb5;
  box-shadow: 0 14px 28px rgba(13, 79, 181, 0.18);
}

.activity-sort {
  width: 100%;
  padding-right: 18px;
}

.activity-card {
  height: 100%;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(14, 79, 181, 0.1);
  border-radius: 12px;
  box-shadow: 0 18px 44px rgba(9, 42, 96, 0.08);
}

.activity-image {
  position: relative;
}

.activity-image img {
  width: 100%;
  aspect-ratio: 1.65 / 1;
  object-fit: cover;
}

.activity-image time {
  position: absolute;
  top: 10px;
  left: 12px;
  display: grid;
  width: 48px;
  min-height: 72px;
  place-items: center;
  padding: 7px 4px;
  color: #fff;
  text-align: center;
  background: linear-gradient(180deg, #1164d2, #0b45af);
  border-radius: 9px;
  box-shadow: 0 12px 26px rgba(6, 29, 67, 0.22);
}

.activity-image time strong {
  font-size: 22px;
  line-height: 1;
}

.activity-image time span {
  font-size: 11px;
  font-weight: 800;
  line-height: 1.1;
}

.activity-card-body {
  padding: 16px 18px 20px;
}

.activity-card-body>span {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 5px 12px;
  color: #fff;
  background: #0d4fb5;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
}

.activity-card-body h2 {
  margin: 0 0 10px;
  color: #0d4fb5;
  font-size: 21px;
  font-weight: 900;
  line-height: 1.22;
}

.activity-card-body p {
  margin: 0;
  color: #17263f;
  font-size: 14px;
  line-height: 1.6;
}

.activity-card-body a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 16px;
  color: #0d4fb5;
  font-size: 13px;
  font-weight: 900;
}

.activity-pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}

.activity-pagination a,
.activity-pagination span {
  display: inline-grid;
  min-width: 36px;
  height: 36px;
  place-items: center;
  color: #0d4fb5;
  background: #fff;
  border: 1px solid #dce8f7;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 900;
}

.activity-pagination a.is-active {
  color: #fff;
  background: #0d4fb5;
  border-color: #0d4fb5;
}

.activity-impact-band {
  width: min(1120px, calc(100% - 36px));
  margin: 22px auto 0;
  padding: 32px 28px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(11, 69, 175, 0.97), rgba(7, 75, 174, 0.94)),
    radial-gradient(circle at 97% 70%, rgba(255, 255, 255, 0.22), transparent 12rem);
  border-radius: 14px;
  box-shadow: 0 20px 48px rgba(9, 42, 96, 0.14);
}

.activity-impact-band h2 {
  margin: 0;
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 900;
  line-height: 1.22;
}

.activity-impact-band .row,
.gallery-impact-band .row {
  display: grid;
  grid-template-columns: 1.25fr repeat(4, minmax(0, 1fr));
  gap: 0;
  align-items: stretch;
}

.activity-impact-band [class*="col-"],
.gallery-impact-band [class*="col-"] {
  width: auto;
  max-width: none;
  padding-right: 0;
  padding-left: 0;
}

.activity-impact-band .col-lg-3,
.gallery-impact-band .col-lg-3 {
  display: grid;
  align-items: center;
  padding-right: 28px;
}

.activity-impact-band .impact-band-item,
.gallery-impact-band .impact-band-item {
  min-height: 116px;
  padding: 6px 22px;
  align-content: center;
  border-left: 1px solid rgba(255, 255, 255, 0.24);
}

.activity-impact-band .impact-band-item i,
.gallery-impact-band .impact-band-item i {
  min-height: 38px;
  line-height: 1;
}

.activity-impact-band .impact-band-item strong,
.gallery-impact-band .impact-band-item strong {
  font-size: clamp(28px, 2.5vw, 34px);
  line-height: 1;
  white-space: nowrap;
}

.activity-cta-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1.1fr);
  gap: 24px;
  overflow: hidden;
  min-height: 230px;
  padding: 28px;
  background: #eef7ff;
  border: 1px solid rgba(14, 79, 181, 0.1);
  border-radius: 14px;
  box-shadow: 0 18px 44px rgba(9, 42, 96, 0.08);
}

.activity-cta-card::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background: linear-gradient(90deg, #eef7ff 0%, #eef7ff 42%, rgba(238, 247, 255, 0.8) 55%, rgba(238, 247, 255, 0) 82%);
}

.activity-cta-card div {
  position: relative;
  z-index: 2;
  align-self: center;
}

.activity-cta-card h2 {
  max-width: 520px;
  margin: 0 0 14px;
  color: #0d4fb5;
  font-size: clamp(24px, 3vw, 31px);
  font-weight: 900;
  line-height: 1.25;
}

.activity-cta-card p {
  max-width: 540px;
  color: #17263f;
  line-height: 1.7;
}

.activity-cta-card .button {
  gap: 8px;
  min-height: 46px;
  padding-inline: 20px;
  border-radius: 8px;
}

.activity-cta-card img {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 0;
  width: 64%;
  height: 100%;
  object-fit: cover;
}

.newsletter-card {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(260px, 360px) 160px;
  gap: 18px;
  align-items: center;
  padding: 22px 28px;
  background: #fff;
  border: 1px solid rgba(14, 79, 181, 0.1);
  border-radius: 14px;
  box-shadow: 0 18px 44px rgba(9, 42, 96, 0.08);
}

.newsletter-copy {
  display: flex;
  gap: 18px;
  align-items: center;
}

.newsletter-copy>span {
  display: inline-grid;
  width: 62px;
  height: 62px;
  flex: 0 0 auto;
  place-items: center;
  color: #fff;
  background: #0d4fb5;
  border-radius: 50%;
  font-size: 30px;
}

.newsletter-copy h2 {
  margin: 0 0 5px;
  color: #061c43;
  font-size: 20px;
  font-weight: 900;
}

.newsletter-copy p {
  margin: 0;
  color: #17263f;
  font-size: 14px;
}

.newsletter-card input {
  width: 100%;
  min-height: 48px;
  padding: 10px 18px;
  border: 1px solid #dce8f7;
  border-radius: 8px;
  font: inherit;
}

.newsletter-card button {
  min-height: 48px;
  color: #fff;
  background: #0d4fb5;
  border: 0;
  border-radius: 8px;
  font-weight: 900;
}

.newsletter-note {
  grid-column: 2 / -1;
  min-height: 18px;
  margin: -8px 0 0;
  color: #0d4fb5;
  font-size: 13px;
  font-weight: 800;
}

/* Article template */
.articles-page {
  background:
    radial-gradient(circle at 8% 18%, rgba(215, 239, 255, 0.82), transparent 28rem),
    linear-gradient(180deg, #f8fcff 0%, #fff 45%, #f8fbff 100%);
}

.article-hero-template {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  padding: 82px 0 76px;
  background:
    linear-gradient(90deg, rgba(248, 252, 255, 0.98) 0%, rgba(248, 252, 255, 0.9) 38%, rgba(248, 252, 255, 0.24) 66%, rgba(248, 252, 255, 0) 100%),
    linear-gradient(180deg, #f6fbff, #eaf6ff);
}

.article-hero-template>img {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 0;
  width: 62%;
  height: 100%;
  object-fit: cover;
}

.article-hero-template::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background: linear-gradient(90deg, #f8fcff 0%, #f8fcff 38%, rgba(248, 252, 255, 0.88) 52%, rgba(248, 252, 255, 0) 78%);
}

.article-hero-template .container {
  position: relative;
  z-index: 2;
}

.article-hero-copy h1 {
  margin: 0 0 18px;
  color: #061c43;
  font-size: clamp(44px, 6vw, 66px);
  font-weight: 900;
  line-height: 1.1;
}

.article-hero-copy p {
  max-width: 560px;
  color: #17263f;
  font-size: 17px;
  line-height: 1.78;
}

.article-listing {
  padding-top: 32px;
}

.article-toolbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 285px);
  gap: 18px;
  align-items: center;
  margin-bottom: 28px;
}

.article-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.article-filters button {
  min-height: 42px;
  padding: 9px 18px;
  color: #061c43;
  background: #f4f8fd;
  border: 1px solid #dce8f7;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
}

.article-filters button.is-active {
  color: #fff;
  background: #0d4fb5;
  border-color: #0d4fb5;
  box-shadow: 0 14px 28px rgba(13, 79, 181, 0.18);
}

.article-search {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 42px;
  align-items: center;
  min-height: 44px;
  padding: 0 6px 0 16px;
  background: #fff;
  border: 1px solid #dce8f7;
  border-radius: 999px;
}

.article-search input {
  min-width: 0;
  border: 0;
  outline: 0;
  font: inherit;
}

.article-search button {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  color: #0d4fb5;
  background: transparent;
  border: 0;
  border-radius: 50%;
}

.article-list-card {
  height: 100%;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(14, 79, 181, 0.1);
  border-radius: 10px;
  box-shadow: 0 18px 44px rgba(9, 42, 96, 0.08);
}

.article-list-card>img {
  width: 100%;
  aspect-ratio: 1.65 / 1;
  object-fit: cover;
}

.article-list-card>div {
  padding: 16px 18px 18px;
}

.article-list-card span {
  display: inline-flex;
  margin-top: -32px;
  margin-bottom: 12px;
  padding: 5px 12px;
  color: #fff;
  background: #0d4fb5;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  position: relative;
}

.article-list-card h2 {
  margin: 0 0 10px;
  color: #0d4fb5;
  font-size: 21px;
  font-weight: 900;
  line-height: 1.25;
}

.article-list-card p {
  margin: 0;
  color: #17263f;
  font-size: 14px;
  line-height: 1.62;
}

.article-list-card footer {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
  color: #17263f;
}

.article-list-card small {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
}

.article-sidebar {
  background: #fff;
  border: 1px solid rgba(14, 79, 181, 0.08);
  border-radius: 12px;
  box-shadow: 0 18px 44px rgba(9, 42, 96, 0.08);
}

.article-newsletter {
  background: #0d4fb5;
  border-radius: 12px;
  box-shadow: 0 24px 54px rgba(13, 79, 181, 0.22);
  color: #fff;
}

.article-sidebar {
  padding: 24px;
}

.article-sidebar h2 {
  margin: 0;
  color: #0d4fb5;
  font-size: 24px;
  font-weight: 900;
}

.article-newsletter h2 {
  margin: 0;
  color: #fff;
  font-size: 24px;
  font-weight: 900;
}

.article-sidebar h2 {
  padding-bottom: 18px;
  border-bottom: 1px solid #dce8f7;
}

.popular-article {
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr);
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid #dce8f7;
}

.popular-article:last-child {
  border-bottom: 0;
}

.popular-article img {
  width: 84px;
  height: 84px;
  object-fit: cover;
  border-radius: 8px;
}

.popular-article strong {
  display: block;
  color: #061c43;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.35;
}

.popular-article small {
  display: block;
  margin-top: 8px;
  color: #6c7890;
  font-weight: 700;
}

.article-newsletter {
  display: grid;
  justify-items: center;
  gap: 16px;
  margin-top: 28px;
  padding: 36px 26px 28px;
  text-align: center;
  background: #0d4fb5;
  border-radius: 12px;
  box-shadow: 0 24px 54px rgba(13, 79, 181, 0.22);
  color: #fff;
}

.article-newsletter>span {
  display: inline-grid;
  width: 68px;
  height: 68px;
  place-items: center;
  color: #0d4fb5;
  background: #fff;
  border-radius: 50%;
  font-size: 28px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
}

.article-newsletter p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  line-height: 1.6;
}

.article-newsletter input {
  width: 100%;
  min-height: 48px;
  padding: 10px 18px;
  background: #fff;
  border: 0;
  border-radius: 8px;
  font: inherit;
}

.article-newsletter button {
  width: 100%;
  min-height: 52px;
  color: #0d4fb5;
  background: #fff;
  border: 0;
  border-radius: 8px;
  font-weight: 900;
}

.article-newsletter input,
.article-newsletter button {
  width: 100%;
  min-height: 48px;
  border-radius: 8px;
  font: inherit;
}

.article-newsletter input {
  padding: 10px 16px;
  text-align: center;
  border: 1px solid #dce8f7;
}

.article-newsletter button {
  color: #fff;
  background: #0d4fb5;
  border: 0;
  font-weight: 900;
}

.article-newsletter .newsletter-note {
  grid-column: auto;
  margin: 0;
}

/* Gallery template */
.gallery-page {
  background:
    radial-gradient(circle at 8% 18%, rgba(215, 239, 255, 0.82), transparent 28rem),
    linear-gradient(180deg, #f8fcff 0%, #fff 45%, #f8fbff 100%);
}

.gallery-hero-template {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  padding: 82px 0 76px;
  background:
    linear-gradient(90deg, rgba(248, 252, 255, 0.98) 0%, rgba(248, 252, 255, 0.9) 38%, rgba(248, 252, 255, 0.24) 66%, rgba(248, 252, 255, 0) 100%),
    linear-gradient(180deg, #f6fbff, #eaf6ff);
}

.gallery-hero-template>img {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 0;
  width: 64%;
  height: 100%;
  object-fit: cover;
}

.gallery-hero-template::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background: linear-gradient(90deg, #f8fcff 0%, #f8fcff 38%, rgba(248, 252, 255, 0.88) 52%, rgba(248, 252, 255, 0) 78%);
}

.gallery-hero-template .container {
  position: relative;
  z-index: 2;
}

.gallery-hero-copy h1 {
  margin: 0 0 12px;
  color: #061c43;
  font-size: clamp(44px, 6vw, 66px);
  font-weight: 900;
  line-height: 1.1;
}

.gallery-hero-copy h2 {
  max-width: 680px;
  margin: 0 0 22px;
  color: #0d4fb5;
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 900;
  line-height: 1.35;
}

.gallery-hero-copy p {
  max-width: 620px;
  color: #17263f;
  font-size: 16px;
  line-height: 1.85;
}

.gallery-listing {
  padding-top: 30px;
}

.gallery-toolbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 140px;
  gap: 18px;
  align-items: center;
  margin-bottom: 28px;
}

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.gallery-filters button,
.gallery-sort {
  min-height: 44px;
  padding: 9px 20px;
  color: #061c43;
  background: #f4f8fd;
  border: 1px solid #dce8f7;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
}

.gallery-filters button.is-active {
  color: #fff;
  background: #0d4fb5;
  border-color: #0d4fb5;
}

.gallery-sort {
  width: 100%;
}

.gallery-mosaic {
  display: grid;
  grid-template-columns: repeat(10, minmax(0, 1fr));
  grid-auto-rows: minmax(180px, auto);
  gap: 16px;
}

.gallery-album {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 18px 44px rgba(9, 42, 96, 0.12);
}

.gallery-album.large {
  grid-column: span 4;
  grid-row: span 2;
}

.gallery-album.medium {
  grid-column: span 3;
  grid-row: span 2;
}

.gallery-album.small {
  grid-column: span 2;
  grid-row: span 1;
}

.gallery-album img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.32s ease;
}

.gallery-album:hover img {
  transform: scale(1.05);
}

.gallery-album a {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px;
  color: #fff;
  background: linear-gradient(180deg, transparent 32%, rgba(0, 0, 0, 0.78) 100%);
}

.gallery-album small {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 800;
}

.gallery-album h2 {
  margin: 0 0 4px;
  color: #fff;
  font-size: clamp(18px, 2vw, 25px);
  font-weight: 900;
  line-height: 1.18;
}

.gallery-album span {
  font-weight: 800;
}

.gallery-load {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.gallery-load button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 280px;
  min-height: 46px;
  color: #0d4fb5;
  background: #fff;
  border: 1px solid #0d4fb5;
  border-radius: 999px;
  font-weight: 900;
}

.gallery-impact-band {
  width: min(1120px, calc(100% - 36px));
  margin: 28px auto 0;
  padding: 32px 28px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(11, 69, 175, 0.97), rgba(7, 75, 174, 0.94)),
    radial-gradient(circle at 97% 70%, rgba(255, 255, 255, 0.22), transparent 12rem);
  border-radius: 14px;
  box-shadow: 0 20px 48px rgba(9, 42, 96, 0.14);
}

.gallery-impact-band h2 {
  margin: 0;
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 900;
  line-height: 1.22;
}

/* Contact template */
.contact-page {
  background:
    radial-gradient(circle at 8% 18%, rgba(215, 239, 255, 0.82), transparent 28rem),
    linear-gradient(180deg, #f8fcff 0%, #fff 45%, #f8fbff 100%);
}

.contact-hero-template {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  padding: 96px 0 86px;
  background:
    linear-gradient(90deg, rgba(248, 252, 255, 0.98) 0%, rgba(248, 252, 255, 0.9) 38%, rgba(248, 252, 255, 0.24) 66%, rgba(248, 252, 255, 0) 100%),
    linear-gradient(180deg, #f6fbff, #eaf6ff);
}

.contact-hero-template>img {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 0;
  width: 64%;
  height: 100%;
  object-fit: cover;
}

.contact-hero-template::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background: linear-gradient(90deg, #f8fcff 0%, #f8fcff 38%, rgba(248, 252, 255, 0.88) 52%, rgba(248, 252, 255, 0) 78%);
}

.contact-hero-template .container {
  position: relative;
  z-index: 2;
}

.contact-hero-copy>span {
  display: inline-flex;
  margin-bottom: 18px;
  color: #0d4fb5;
  font-weight: 900;
}

.contact-hero-copy h1 {
  max-width: 720px;
  margin: 0 0 24px;
  color: #061c43;
  font-size: clamp(40px, 5.5vw, 62px);
  font-weight: 900;
  line-height: 1.14;
}

.contact-hero-copy p {
  max-width: 610px;
  margin-bottom: 28px;
  color: #17263f;
  font-size: 16px;
  line-height: 1.85;
}

.contact-hero-copy .button {
  gap: 9px;
  min-height: 52px;
  padding-inline: 24px;
  border-radius: 999px;
}

.contact-main {
  padding-top: 34px;
}

.contact-section-title h2 {
  position: relative;
  margin: 0 0 28px;
  color: #061c43;
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 900;
}

.contact-section-title h2::after {
  display: block;
  width: 52px;
  height: 3px;
  margin-top: 12px;
  content: "";
  background: #0d4fb5;
  border-radius: 99px;
}

.contact-section-title.text-center h2::after {
  margin-inline: auto;
}

.contact-info-tile,
.network-card,
.contact-message-form {
  background: #fff;
  border: 1px solid rgba(14, 79, 181, 0.1);
  border-radius: 12px;
  box-shadow: 0 18px 44px rgba(9, 42, 96, 0.08);
}

.contact-info-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  padding: 32px 20px;
  text-align: center;
}

.contact-info-tile>span {
  display: inline-grid;
  width: 62px;
  height: 62px;
  flex: 0 0 auto;
  place-items: center;
  margin-bottom: 20px;
  color: #fff;
  background: #0d4fb5;
  border-radius: 50%;
  font-size: 30px;
  box-shadow: 0 14px 30px rgba(13, 79, 181, 0.2);
}

.contact-info-tile h3 {
  margin: 0 0 12px;
  color: #061c43;
  font-size: 16px;
  font-weight: 900;
}

.contact-info-tile p {
  margin: 0 0 14px;
  color: #17263f;
  font-size: 14px;
  line-height: 1.6;
  word-break: break-word;
}

.contact-info-tile a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  align-self: end;
  color: #0d4fb5;
  font-size: 13px;
  font-weight: 900;
}

.contact-map-panel {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  margin-top: 28px;
  border: 1px solid rgba(14, 79, 181, 0.1);
  border-radius: 14px;
  box-shadow: 0 18px 44px rgba(9, 42, 96, 0.08);
}

.contact-map-panel iframe {
  width: 100%;
  height: 420px;
  border: 0;
}

.map-location-card {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: min(260px, calc(100% - 36px));
  padding: 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 18px 44px rgba(9, 42, 96, 0.16);
}

.map-location-card h3 {
  margin: 0 0 8px;
  color: #0d4fb5;
  font-size: 20px;
  font-weight: 900;
}

.map-location-card p {
  color: #17263f;
  font-size: 13px;
  line-height: 1.55;
}

.map-location-card img {
  width: 100%;
  aspect-ratio: 1.75 / 1;
  object-fit: cover;
  margin-bottom: 12px;
  border-radius: 8px;
}

.map-location-card a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #0d4fb5;
  font-size: 13px;
  font-weight: 900;
}

.contact-message-form {
  display: grid;
  gap: 16px;
  padding: clamp(24px, 4vw, 42px);
}

.contact-message-form h2 {
  position: relative;
  margin: 0 0 16px;
  color: #061c43;
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 900;
}

.contact-message-form h2::after {
  display: block;
  width: 52px;
  height: 3px;
  margin-top: 12px;
  content: "";
  background: #0d4fb5;
  border-radius: 99px;
}

.contact-message-form input,
.contact-message-form textarea {
  width: 100%;
  padding: 14px 18px;
  color: #17263f;
  background: #fff;
  border: 1px solid #dce8f7;
  border-radius: 8px;
  font: inherit;
}

.contact-message-form textarea {
  resize: vertical;
}

.contact-consent {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 12px;
  color: #17263f;
  font-size: 13px;
  line-height: 1.55;
}

.contact-consent input {
  width: 16px;
  height: 16px;
  margin-top: 3px;
}

.contact-message-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 54px;
  color: #fff;
  background: #0d4fb5;
  border: 0;
  border-radius: 8px;
  font-weight: 900;
}

.network-card {
  display: grid;
  justify-items: center;
  height: 100%;
  padding: 24px 18px;
  text-align: center;
}

.network-card i {
  color: #0d4fb5;
  font-size: 42px;
}

.network-card h3 {
  margin: 12px 0 4px;
  color: #0d4fb5;
  font-size: 16px;
  font-weight: 900;
}

.network-card strong {
  color: #061c43;
  font-size: 13px;
}

.network-card p {
  margin: 10px 0 0;
  color: #17263f;
  font-size: 13px;
  line-height: 1.5;
}

.contact-cta-card {
  background: #0d4fb5;
  color: #fff;
}

.contact-cta-card::after {
  background: linear-gradient(90deg, rgba(13, 79, 181, 0.96) 0%, rgba(13, 79, 181, 0.88) 42%, rgba(13, 79, 181, 0.08) 78%);
}

.contact-cta-card h2,
.contact-cta-card p {
  color: #fff;
}

@media (max-width: 1100px) {
  .site-footer {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-brand {
    grid-column: 1 / -1;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding: 0 0 24px;
  }

  .journey-line {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .journey-line::before {
    display: none;
  }

  .program-highlight-panel,
  .program-highlight-media {
    grid-template-columns: 1fr;
  }

  .program-highlight-media {
    gap: 12px;
  }

  .program-highlight-media div {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .activity-toolbar,
  .activity-cta-card,
  .newsletter-card {
    grid-template-columns: 1fr;
  }

  .activity-sort {
    max-width: 180px;
  }

  .newsletter-note {
    grid-column: 1;
  }

  .article-toolbar {
    grid-template-columns: 1fr;
  }

  .article-search {
    max-width: 420px;
  }

  .gallery-toolbar {
    grid-template-columns: 1fr;
  }

  .gallery-sort {
    max-width: 180px;
  }

  .gallery-mosaic {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .gallery-album,
  .gallery-album.small {
    grid-column: span 3;
  }

  .gallery-album.wide {
    grid-column: span 6;
  }

  .contact-info-tile {
    min-height: 230px;
  }
}

@media (max-width: 991.98px) {
  .about-hero-template {
    padding: 70px 0 360px;
  }

  .about-hero-template>img {
    top: auto;
    bottom: 0;
    width: 100%;
    height: 360px;
  }

  .about-hero-template::after {
    background: linear-gradient(180deg, rgba(248, 252, 255, 0.98) 0%, rgba(248, 252, 255, 0.98) 48%, rgba(248, 252, 255, 0.2) 78%);
  }

  .impact-band-item {
    border-left: 0;
  }

  .program-hero-template {
    min-height: auto;
    padding: 64px 0 350px;
  }

  .program-hero-template>img {
    top: auto;
    bottom: 0;
    width: 100%;
    height: 350px;
  }

  .program-hero-template::after {
    background: linear-gradient(180deg, rgba(248, 252, 255, 0.98) 0%, rgba(248, 252, 255, 0.98) 48%, rgba(248, 252, 255, 0.1) 78%);
  }

  .program-feature-card {
    min-height: 230px;
  }

  .program-impact-band .row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 18px;
  }

  .program-impact-band .col-lg-3 {
    grid-column: 1 / -1;
    justify-items: center;
    padding-right: 0;
    text-align: center;
  }

  .program-impact-band .impact-band-item {
    min-height: 110px;
    border-left: 0;
  }

  .activity-impact-band .row,
  .gallery-impact-band .row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 18px;
  }

  .activity-impact-band .col-lg-3,
  .gallery-impact-band .col-lg-3 {
    grid-column: 1 / -1;
    justify-items: center;
    padding-right: 0;
    text-align: center;
  }

  .activity-impact-band .impact-band-item,
  .gallery-impact-band .impact-band-item {
    min-height: 110px;
    border-left: 0;
  }

  .activity-hero-template {
    min-height: auto;
    padding: 64px 0 350px;
  }

  .activity-hero-template>img {
    top: auto;
    bottom: 0;
    width: 100%;
    height: 350px;
  }

  .activity-hero-template::after {
    background: linear-gradient(180deg, rgba(248, 252, 255, 0.98) 0%, rgba(248, 252, 255, 0.98) 48%, rgba(248, 252, 255, 0.1) 78%);
  }

  .activity-cta-card img {
    width: 100%;
    opacity: 0.4;
  }

  .article-hero-template {
    min-height: auto;
    padding: 64px 0 300px;
  }

  .article-hero-template>img {
    top: auto;
    bottom: 0;
    width: 100%;
    height: 300px;
  }

  .article-hero-template::after {
    background: linear-gradient(180deg, rgba(248, 252, 255, 0.98) 0%, rgba(248, 252, 255, 0.98) 48%, rgba(248, 252, 255, 0.1) 78%);
  }

  .gallery-hero-template {
    min-height: auto;
    padding: 64px 0 340px;
  }

  .gallery-hero-template>img {
    top: auto;
    bottom: 0;
    width: 100%;
    height: 340px;
  }

  .gallery-hero-template::after {
    background: linear-gradient(180deg, rgba(248, 252, 255, 0.98) 0%, rgba(248, 252, 255, 0.98) 48%, rgba(248, 252, 255, 0.1) 78%);
  }

  .contact-hero-template {
    min-height: auto;
    padding: 64px 0 350px;
  }

  .contact-hero-template>img {
    top: auto;
    bottom: 0;
    width: 100%;
    height: 350px;
  }

  .contact-hero-template::after {
    background: linear-gradient(180deg, rgba(248, 252, 255, 0.98) 0%, rgba(248, 252, 255, 0.98) 48%, rgba(248, 252, 255, 0.1) 78%);
  }

  .contact-message-form {
    margin-top: 10px;
  }
}

@media (max-width: 620px) {
  .about-hero-template {
    min-height: auto;
    padding: 44px 0 280px;
  }

  .about-hero-template>img {
    height: 280px;
  }

  .about-hero-copy h1 {
    font-size: 36px;
  }

  .journey-line,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    grid-template-columns: 1fr;
  }

  .program-hero-template {
    padding: 42px 0 270px;
  }

  .program-hero-template>img {
    height: 270px;
  }

  .program-hero-copy h1 {
    font-size: 38px;
  }

  .program-hero-copy h2 {
    font-size: 20px;
  }

  .program-highlight-panel {
    padding: 22px;
  }

  .program-highlight-media .main-photo,
  .program-highlight-media div img {
    height: auto;
    aspect-ratio: 1.5 / 1;
  }

  .program-highlight-media div {
    grid-template-columns: 1fr;
  }

  .program-impact-band {
    padding: 26px 16px;
  }

  .program-impact-band .row {
    grid-template-columns: 1fr;
    row-gap: 14px;
  }

  .program-impact-band .impact-band-item {
    min-height: auto;
    padding: 12px 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.22);
  }

  .activity-hero-template {
    padding: 42px 0 270px;
  }

  .activity-hero-template>img {
    height: 270px;
  }

  .activity-hero-copy h1 {
    font-size: 38px;
  }

  .activity-hero-copy h2 {
    font-size: 20px;
  }

  .activity-filters {
    gap: 9px;
  }

  .activity-filters button {
    flex: 1 1 100%;
  }

  .activity-sort {
    max-width: none;
  }

  .activity-impact-band {
    padding: 26px 16px;
  }

  .activity-impact-band .row,
  .gallery-impact-band .row {
    grid-template-columns: 1fr;
    row-gap: 14px;
  }

  .activity-impact-band .impact-band-item,
  .gallery-impact-band .impact-band-item {
    min-height: auto;
    padding: 12px 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.22);
  }

  .activity-cta-card {
    padding: 22px;
  }

  .activity-cta-card img {
    opacity: 0.24;
  }

  .newsletter-card {
    padding: 20px;
  }

  .newsletter-copy {
    align-items: flex-start;
  }

  .article-hero-template {
    padding: 42px 0 250px;
  }

  .article-hero-template>img {
    height: 250px;
  }

  .article-hero-copy h1 {
    font-size: 38px;
  }

  .article-filters {
    gap: 9px;
  }

  .article-filters button {
    flex: 1 1 100%;
  }

  .article-search {
    max-width: none;
  }

  .popular-article {
    grid-template-columns: 74px minmax(0, 1fr);
  }

  .popular-article img {
    width: 74px;
    height: 74px;
  }

  .gallery-hero-template {
    padding: 42px 0 270px;
  }

  .gallery-hero-template>img {
    height: 270px;
  }

  .gallery-hero-copy h1 {
    font-size: 38px;
  }

  .gallery-hero-copy h2 {
    font-size: 20px;
  }

  .gallery-filters {
    gap: 9px;
  }

  .gallery-filters button {
    flex: 1 1 100%;
  }

  .gallery-sort {
    max-width: none;
  }

  .gallery-mosaic {
    grid-template-columns: 1fr;
    grid-auto-rows: 230px;
  }

  .gallery-album,
  .gallery-album.small,
  .gallery-album.wide {
    grid-column: span 1;
    grid-row: span 1;
  }

  .gallery-load button {
    width: 100%;
    min-width: 0;
  }

  .gallery-impact-band {
    padding: 26px 16px;
  }

  .contact-hero-template {
    padding: 42px 0 270px;
  }

  .contact-hero-template>img {
    height: 270px;
  }

  .contact-hero-copy h1 {
    font-size: 36px;
  }

  .contact-map-panel iframe {
    height: 520px;
  }

  .map-location-card {
    right: 12px;
    bottom: 12px;
    left: 12px;
    width: auto;
  }

  .contact-info-tile {
    min-height: auto;
  }

  .contact-message-form {
    padding: 22px;
  }
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(24px);
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: none;
  transition: opacity 0.68s ease, transform 0.68s ease;
}

@media (max-width: 991.98px) {
  .site-header {
    min-height: 78px;
  }

  .brand {
    margin-right: 0;
  }

  .logo-img {
    height: 54px;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .site-nav {
    position: absolute;
    top: 78px;
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 14px;
    background: white;
    border: 1px solid var(--line);
    border-radius: 12px;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav .nav-cta {
    justify-content: center;
    margin: 8px 0 0;
  }

  .home-hero {
    min-height: auto;
    padding-bottom: 132px;
    background: linear-gradient(180deg, #f4fbff 0%, #f4fbff 54%, #0d4fb5 54%, #0d4fb5 100%);
  }

  .hero-visual {
    grid-template-columns: 1fr;
  }

  .hero-visual-main {
    border-radius: 28px;
  }

  .hero-visual-main img {
    min-height: 420px;
  }

  .hero-thumbs {
    grid-template-columns: repeat(3, 1fr);
  }

  .home-feature-strip {
    margin-top: -82px;
  }

  .feature-mini {
    border-bottom: 1px solid #e5edf8;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding-inline: 16px;
  }


  .hero-copy h1 {
    font-size: 38px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-visual-main img {
    min-height: 320px;
  }

  .hero-thumbs {
    gap: 8px;
  }

  .hero-thumbs img {
    border-width: 2px;
    border-radius: 12px;
  }

  .home-feature-strip {
    width: min(100% - 24px, 1120px);
  }

  .feature-mini {
    min-height: auto;
  }

  .about-panel::after {
    inset: 0;
    border-radius: 0;
  }

  .impact-grid {
    grid-template-columns: 1fr;
  }

  .partner-row {
    justify-content: center;
  }
}
