@font-face {
  font-family: "KTH Childhood Dreams";
  src: url("../fonts/KTH Childhood Dreams Thin.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "KTH Childhood Dreams";
  src: url("../fonts/KTH Childhood Dreams Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "KTH Childhood Dreams";
  src: url("../fonts/KTH Childhood Dreams Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
:root {
  --bg: #fff6e9;
  --ink: #112c2c;
  --amber: #ffc200;
  --red: #ec1c24;
  --blue: #1482dd;
  --header-action-height: 52px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "KTH Childhood Dreams", cursive;
  color: var(--ink);
  background-color: var(--bg);
  background-image: url("../images/backgroup-body.png");
  background-repeat: repeat;
  line-height: 1.4;
}

.container {
  width: min(1200px, 100% - 2rem);
  margin: 0 auto;
}

.row,
.e-row {
  --col-gap: 24px;
  --row-gap: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: var(--row-gap) var(--col-gap);
}

.row > *,
.e-row > * {
  min-width: 0;
}

.row.align-start,
.e-row.align-start {
  align-items: flex-start;
}

.row.align-center,
.e-row.align-center {
  align-items: center;
}

.row.align-end,
.e-row.align-end {
  align-items: flex-end;
}

.row.justify-start,
.e-row.justify-start {
  justify-content: flex-start;
}

.row.justify-center,
.e-row.justify-center {
  justify-content: center;
}

.row.justify-between,
.e-row.justify-between {
  justify-content: space-between;
}

.row.justify-end,
.e-row.justify-end {
  justify-content: flex-end;
}

.col,
.e-col {
  flex: 1 1 0;
  min-width: 0;
}

.col-auto,
.e-col-auto {
  flex: 0 0 auto;
}

.col-100,
.e-col-100 {
  width: 100%;
  flex: 0 0 100%;
}

.col-75,
.e-col-75 {
  width: calc(75% - var(--col-gap) * 0.25);
  flex: 0 0 calc(75% - var(--col-gap) * 0.25);
}

.col-66,
.e-col-66 {
  width: calc(66.6667% - var(--col-gap) * 0.34);
  flex: 0 0 calc(66.6667% - var(--col-gap) * 0.34);
}

.col-50,
.e-col-50 {
  width: calc(50% - var(--col-gap) * 0.5);
  flex: 0 0 calc(50% - var(--col-gap) * 0.5);
}

.col-33,
.e-col-33 {
  width: calc(33.3333% - var(--col-gap) * 0.67);
  flex: 0 0 calc(33.3333% - var(--col-gap) * 0.67);
}

.col-25,
.e-col-25 {
  width: calc(25% - var(--col-gap) * 0.75);
  flex: 0 0 calc(25% - var(--col-gap) * 0.75);
}

@media (max-width: 768px) {
  .row,
  .e-row {
    --col-gap: 16px;
    --row-gap: 16px;
  }
  .col-75,
  .col-66,
  .col-50,
  .col-33,
  .col-25,
  .e-col-75,
  .e-col-66,
  .e-col-50,
  .e-col-33,
  .e-col-25 {
    width: 100%;
    flex: 0 0 100%;
  }
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 999px;
  font-weight: 700;
}

.article-content h3 {
  margin: 0;
  line-height: 1.2;
}
.article-content h3 a {
  color: var(--ink);
  text-decoration: none;
  transition: color 180ms ease;
}
.article-content h3 a:hover {
  color: var(--amber);
}

.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;
}

body {
  --google-bar-offset: 0px;
}

.nav-wrap {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 1.2rem;
  transition: all 180ms ease;
}

.site-header {
  position: sticky;
  top: var(--google-bar-offset, 0px);
  left: 0;
  width: 100%;
  z-index: 40;
  overflow: visible;
}
.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../images/backgroup-body.png");
  background-repeat: repeat;
  opacity: 0;
  transition: opacity 420ms ease-out;
  pointer-events: none;
  z-index: 0;
}
.site-header > * {
  position: relative;
  z-index: 1;
}
.site-header.is-sticky {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.site-header.is-sticky::before {
  opacity: 1;
}

.logo img {
  width: 160px;
  height: auto;
  display: block;
  transition: width 180ms ease, height 180ms ease;
}

.menu-btn {
  display: none;
  justify-self: end;
  border: 0;
  border-radius: 10px;
  background: #ffffea;
  color: var(--ink);
  font-family: "KTH Childhood Dreams", cursive;
  font-size: 1.25rem;
  padding: 0.5rem 0.75rem;
}

.nav-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  background: #ffffea;
  border-radius: 999px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 1rem 1.5rem;
}

.nav-pill a {
  text-decoration: none;
  color: var(--ink);
  font-family: "KTH Childhood Dreams", cursive;
  font-size: 0.95rem;
  white-space: nowrap;
}

.nav-pill a.active {
  color: var(--amber);
  font-weight: 700;
}

.lang-switcher {
  position: relative;
  display: flex;
  align-items: center;
}

.lang-current {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: var(--header-action-height);
  height: var(--header-action-height);
  border: 0;
  border-radius: 50%;
  background: #ffffea;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  color: var(--ink);
  font-family: "KTH Childhood Dreams", cursive;
  font-size: 0.9rem;
  cursor: pointer;
}

.lang-menu {
  position: absolute;
  top: calc(100% + 0.45rem);
  right: 0;
  display: none;
  flex-direction: column;
  gap: 0.3rem;
  min-width: 94px;
  padding: 0.45rem;
  border-radius: 12px;
  background: #ffffea;
  box-shadow: 0 8px 24px rgba(17, 44, 44, 0.16);
  z-index: 90;
}

.lang-switcher.open .lang-menu {
  display: flex;
}

.lang-option {
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--ink);
  font-family: "KTH Childhood Dreams", cursive;
  font-size: 0.85rem;
  line-height: 1;
  padding: 0.45rem 0.6rem;
  text-align: left;
  cursor: pointer;
}
.lang-option:hover {
  background: rgba(244, 193, 24, 0.2);
}

#goog-gt-tt,
.goog-te-balloon-frame {
  display: none !important;
}

#google_translate_element {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}
#google_translate_element .goog-te-gadget {
  font-family: "KTH Childhood Dreams", cursive;
  color: var(--ink);
  font-size: 0;
}
#google_translate_element .goog-te-gadget-simple {
  border: 0;
  padding: 0;
  background: transparent;
  box-shadow: none;
}
#google_translate_element .goog-te-menu-value {
  display: block;
  color: transparent;
  font-size: 0;
}
#google_translate_element .goog-te-menu-value span {
  display: none;
}
#google_translate_element .goog-te-gadget-icon,
#google_translate_element .goog-te-banner-frame,
#google_translate_element .goog-logo-link {
  display: none !important;
}

.donate {
  background: #f4c118;
  color: var(--ink);
  min-width: 148px;
  min-height: var(--header-action-height);
  padding: 0.9rem 1.2rem;
}

.footer {
  background: #ffffea;
}

.footer-pattern {
  height: 24px;
  background: url("../images/footer-texture.png") center/auto 100% repeat-x;
}

.footer-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 281px;
  gap: 2.5rem;
  align-items: start;
  padding: 4.8rem 0 3.8rem;
}

.footer-left {
  display: grid;
  gap: 1.9rem;
}

.footer-logo {
  width: 220px;
  height: auto;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(280px, 1fr));
  column-gap: 1.5rem;
  row-gap: 1.2rem;
}

.footer-col h5 {
  margin: 0 0 0.55rem;
  font-family: "KTH Childhood Dreams", cursive;
  font-size: 2rem;
  line-height: 1.2;
  color: #112c2c;
}

.footer-col a,
.footer-col p {
  margin: 0.22rem 0;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
  color: #112c2c;
  font-size: 1rem;
  line-height: 1.45;
}

.footer-col img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  flex: 0 0 auto;
}

.footer-col p > span {
  min-width: 0;
}

.footer-col strong {
  font-weight: 700;
}

.footer-qr p {
  margin: 0 0 0.85rem;
  color: #112c2c;
  font-size: 0.87rem;
  line-height: 1.45;
}

.footer-qr img {
  width: 100%;
  display: block;
}

@media (max-width: 1024px) {
  .nav-wrap {
    grid-template-columns: auto 1fr auto auto auto;
    grid-template-areas: "logo spacer lang donate menu";
    gap: 0.65rem;
  }
  .logo {
    grid-area: logo;
  }
  .menu-btn {
    display: inline-flex;
    grid-area: menu;
  }
  .donate {
    grid-area: donate;
    justify-self: end;
    min-width: 118px;
    padding: 0.65rem 0.95rem;
    font-size: 0.9rem;
  }
  .lang-switcher {
    grid-area: lang;
    justify-self: end;
  }
  .nav-wrap.is-sticky {
    top: 0;
    padding: 0.55rem 0.7rem;
    border-radius: 0;
  }
  .nav-pill {
    display: none;
    position: absolute;
    top: calc(100% + 0.45rem);
    left: 0;
    right: 0;
    z-index: 81;
    border-radius: 20px;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0.4rem;
    padding: 0.7rem;
  }
  .nav-pill a {
    display: block;
    width: 100%;
    padding: 0.55rem 0.75rem;
    border-radius: 10px;
  }
  .nav-pill a.active,
  .nav-pill a:hover {
    background: rgba(244, 193, 24, 0.18);
  }
  .nav-wrap .nav-pill {
    max-height: min(70vh, 420px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .nav-pill.open {
    display: flex;
  }
  .footer-body {
    grid-template-columns: 1fr;
    gap: 1.4rem;
    padding-top: 3rem;
  }
  .footer-columns {
    grid-template-columns: 1fr 1fr;
  }
  .footer-qr {
    width: min(281px, 100%);
  }
}
@media (max-width: 768px) {
  :root {
    --header-action-height: 42px;
  }
  .logo img {
    width: 120px;
  }
  .nav-wrap {
    grid-template-columns: auto 1fr auto auto auto;
    grid-template-areas: "logo spacer donate lang menu";
    gap: 0.55rem;
  }
  .nav-wrap.is-sticky {
    width: calc(100% - 1rem);
    top: 0;
  }
  .donate {
    display: inline-flex;
    grid-area: donate;
    min-width: 92px;
    padding: 0.55rem 0.7rem;
    font-size: 0.82rem;
  }
  .lang-menu {
    right: 0;
    left: auto;
  }
  .nav-wrap .nav-pill {
    max-height: min(65vh, 360px);
  }
  .footer-columns {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 480px) {
  :root {
    --header-action-height: 38px;
  }
  .donate {
    min-width: 88px;
    padding: 0.5rem 0.6rem;
    font-size: 0.78rem;
  }
}
.hero {
  position: relative;
  min-height: 780px;
  background: url("../images/hero-background.jpg") center/cover no-repeat;
  isolation: isolate;
  top: -160px;
  margin-bottom: -160px;
}
@media (max-width: 768px) {
  .hero {
    top: -120px;
    margin-bottom: -120px;
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(17, 44, 44, 0.3);
  z-index: -1;
}

.hero-content {
  display: grid;
  justify-items: center;
  align-content: end;
  gap: 2rem;
  text-align: center;
  min-height: 780px;
  padding-top: 11rem;
  padding-bottom: 3.25rem;
}

.hero-content h1 {
  margin: 0;
  font-family: "KTH Childhood Dreams", cursive;
  font-size: clamp(2rem, 6vw, 4rem);
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--amber);
}

.hero-content p {
  margin: 0;
  color: #fff6e9;
  width: min(760px, 100%);
}

.news-filters {
  display: flex;
  flex-wrap: nowrap;
  gap: 2rem;
  align-items: center;
  justify-content: center;
  padding: 1.35rem 0 1.9rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.news-filters::-webkit-scrollbar {
  display: none;
}
.news-filters a {
  text-decoration: none;
  color: var(--ink);
  font-size: 0.88rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  white-space: nowrap;
  padding: 0.15rem 0;
  border-bottom: 1px solid transparent;
  opacity: 0.85;
}
.news-filters a.active {
  color: var(--ink);
  font-weight: 700;
  font-size: 1.056rem;
  border-bottom-color: transparent;
  opacity: 1;
}

@media (max-width: 768px) {
  .news-filters {
    justify-content: flex-start;
    gap: 1.25rem;
    padding: 1.1rem 0 1.35rem;
  }
}
/* Shared form system */
.tvum-form {
  min-width: 0;
}

.tvum-form-title {
  margin: 0 0 0.4rem;
  text-align: center;
  font-size: 1.2rem;
  line-height: 1.25;
}

.tvum-field {
  display: grid;
  gap: 0.35rem;
  min-width: 0;
  color: #112c2c;
  font-size: 0.95rem;
  line-height: 1.2;
}

.tvum-input,
.tvum-select {
  height: 50px;
  width: 100%;
  max-width: 100%;
  border: 1.5px solid #f78d35;
  border-radius: 10px;
  background: #fff6e9;
  color: #112c2c;
  font-family: inherit;
  font-size: 0.95rem;
  padding: 0 0.85rem;
}

.tvum-input[type=file] {
  height: auto;
  overflow: hidden;
  padding: 0.5rem;
}

.tvum-select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, #112c2c 50%), linear-gradient(135deg, #112c2c 50%, transparent 50%);
  background-position: calc(100% - 18px) calc(50% - 2px), calc(100% - 12px) calc(50% - 2px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 2.3rem;
}

.tvum-form-note {
  margin: 0.65rem 0 0;
  color: #ec1c24;
  font-size: 0.875rem;
}

.verify-wrap {
  grid-column: 1/-1;
  width: 100%;
  margin-top: 0.2rem;
  min-height: 95px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  position: relative;
}
.verify-wrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 140px;
  height: 62px;
  transform: translateX(-50%);
  background: url("../images/button-deco.png") center/contain no-repeat;
  z-index: 1;
  pointer-events: none;
}

.verify-btn {
  appearance: none;
  -webkit-appearance: none;
  justify-self: center;
  margin-top: 0;
  border: 0;
  border-radius: 9px;
  background: #ffc200;
  color: #112c2c;
  font-family: inherit;
  font-weight: 700;
  font-size: 1rem;
  line-height: normal;
  padding: 0.55rem 3.2rem;
  cursor: pointer;
  position: relative;
  z-index: 2;
}

.section-title {
  display: grid;
  gap: 0.75rem;
  justify-items: center;
  text-align: center;
  margin-bottom: 20px;
}
.section-title h2 {
  font-size: clamp(2.4rem, 4.5vw, 3.5rem);
  line-height: 1.12;
  text-transform: uppercase;
  margin: 0;
}

.section-kicker {
  margin: 0;
  color: #8b5d00;
  font-size: 1rem;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.understanding-hero {
  min-height: 320px;
  position: relative;
  overflow: hidden;
  background: url("../images/library-background.png") center bottom/auto no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}
.understanding-hero .intro-summary {
  margin: 0 auto;
  width: min(380px, 100%);
  font-size: 1rem;
  line-height: 1.35;
  text-align: center;
  transform: translateY(-20px);
}

.story-section {
  padding: 4rem 0;
}

.story-layout {
  --col-gap: 2rem;
}

.story-portrait {
  margin: 0;
  display: grid;
  gap: 1rem;
  justify-items: center;
  text-align: center;
}
.story-portrait img {
  width: min(100%, 320px);
  display: block;
}
.story-portrait figcaption {
  max-width: 280px;
  font-size: 1rem;
  line-height: 1.35;
}

.story-bubbles {
  display: grid;
  gap: 1.35rem;
}

.story-bubble {
  padding: 1.4rem 1.6rem;
  border: 18px solid transparent;
  border-image-source: url("../images/border-texture.png");
  border-image-slice: 110 fill;
  border-image-repeat: round;
  background: var(--bg);
}
.story-bubble h2 {
  margin: 0 0 0.6rem;
  font-size: clamp(1.3rem, 2.2vw, 1.9rem);
  line-height: 1.15;
}
.story-bubble p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.38;
}

.story-bubble-top {
  transform: rotate(1.2deg);
}

.story-bubble-bottom {
  transform: rotate(-1.8deg);
}

.values-section {
  padding: 1.5rem 0 4rem;
}

.value-list {
  width: min(720px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 0.85rem;
}
.value-list .value-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  min-height: 128px;
}
.value-list .value-item .value-art {
  flex-basis: 132px;
  width: 132px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}
.value-list .value-item .value-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.45rem;
}
.value-list .value-item .value-copy h3,
.value-list .value-item .value-copy p {
  margin: 0;
}
.value-list .value-item .value-copy h3 {
  font-size: 1.05rem;
  line-height: 1.1;
}
.value-list .value-item .value-copy p {
  font-size: 0.78rem;
  line-height: 1.2;
  color: rgba(17, 44, 44, 0.92);
}
.value-list .value-item .value-copy,
.value-list .value-item > :not(.value-art, .value-copy) {
  flex: 1 1 0;
  min-width: 0;
}
.value-list .value-item .value-art {
  flex: 0 0 132px;
  width: 132px;
  height: 132px;
}
.value-list .value-item-left .value-copy {
  order: 1;
  text-align: right;
}
.value-list .value-item-left .value-art {
  order: 2;
}
.value-list .value-item-left > :not(.value-art, .value-copy) {
  order: 3;
}
.value-list .value-item-right > :not(.value-art, .value-copy) {
  order: 1;
}
.value-list .value-item-right .value-art {
  order: 2;
}
.value-list .value-item-right .value-copy {
  order: 3;
  text-align: left;
}
@media (max-width: 768px) {
  .value-list .value-item {
    flex-direction: column;
    align-items: center;
    gap: 0.7rem;
    min-height: 0;
  }
  .value-list .value-item-left .value-art,
  .value-list .value-item-right .value-art {
    order: 1;
    width: auto;
    flex-basis: auto;
  }
  .value-list .value-item-left .value-copy,
  .value-list .value-item-right .value-copy {
    order: 2;
    width: auto;
    flex-basis: auto;
    text-align: center;
  }
  .value-list .value-item > :not(.value-art, .value-copy) {
    display: none;
  }
  .value-list .value-item:first-child .value-copy {
    transform: none;
  }
  .value-list .value-copy h3 {
    font-size: 1.15rem;
  }
  .value-list .value-copy p {
    font-size: 0.84rem;
  }
}

.roadmap-section {
  padding: 2rem 0 5rem;
}
.roadmap-section .section-title {
  margin-bottom: 2rem;
}
.roadmap-section .section-title h2 {
  font-size: clamp(2rem, 3.6vw, 3rem);
  line-height: 1.12;
  text-transform: uppercase;
}

.roadmap-grid {
  position: relative;
  height: 1150px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.roadmap-grid::before {
  content: "";
  position: absolute;
  width: 860px;
  padding-bottom: 100%;
  pointer-events: none;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background: url("../images/roadmap-bg.png") center bottom/contain no-repeat;
}

.milestone-card {
  position: relative;
  z-index: 1;
  width: 485px;
  min-height: 290px;
  padding: 1.2rem;
  border: 24px solid transparent;
  border-image-source: url("../images/border-texture.png");
  border-image-slice: 110 fill;
  border-image-repeat: round;
  margin-bottom: 2rem;
}
.milestone-card h3,
.milestone-card h4,
.milestone-card p {
  margin: 0;
}
.milestone-card h3 {
  font-size: 2.8rem;
  line-height: 1.3;
  color: var(--ink);
}
.milestone-card h4 {
  margin: 0.15rem 0 1.1rem;
  font-size: 1.2rem;
  line-height: 1.1;
  text-transform: uppercase;
}
.milestone-card p {
  font-size: 1rem;
  line-height: 1.28;
}
.milestone-card.milestone-card-1 {
  align-self: flex-end;
}
.milestone-card.milestone-card-2 {
  align-self: flex-start;
}
.milestone-card.milestone-card-3 {
  align-self: flex-end;
}

.governance-section {
  padding: 2rem 0 4rem;
}
.governance-section .section-title {
  margin-bottom: 0;
}
.governance-section .content {
  margin: 1.75rem auto 0;
  overflow: hidden;
}
.governance-section img {
  width: 100%;
  height: auto;
  display: block;
}

.video-section .video-library-preview {
  min-height: 300px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: #dbdbdb;
  color: rgba(17, 44, 44, 0.72);
  text-align: center;
  font-size: 1rem;
  line-height: 1.3;
}
.video-section .video-library-embed {
  min-height: 0;
  padding: 0;
  background: transparent;
  line-height: 0;
  overflow: hidden;
}
.video-section .video-library-embed iframe {
  display: block;
  width: 100%;
  max-width: 100%;
  aspect-ratio: 16/9;
  border: 0;
}

.board-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.board-card {
  min-height: 270px;
  display: grid;
  align-content: start;
  justify-items: center;
  gap: 0.75rem;
  text-align: center;
  padding: 1.7rem 1.3rem;
  color: #fff;
}
.board-card h3,
.board-card p {
  margin: 0;
}
.board-card h3 {
  font-size: 1.45rem;
  line-height: 1.15;
}
.board-card p {
  font-size: 0.95rem;
  line-height: 1.35;
}

.board-card-brown {
  background: #c7772a;
}

.board-card-gold {
  background: #f2be19;
  color: var(--ink);
}

.board-avatar,
.leader-initials {
  width: 74px;
  height: 74px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  color: var(--ink);
  font-size: 1.4rem;
  box-shadow: 0 10px 20px rgba(17, 44, 44, 0.18);
}

.leaders-section {
  padding: 2rem 0 5rem;
  overflow: hidden;
}
.leaders-section .section-title {
  margin-bottom: 4rem;
}
.leaders-section .section-title h2 {
  font-size: clamp(2rem, 3.6vw, 3rem);
  line-height: 1.1;
  text-transform: uppercase;
}

.leader-featured {
  width: min(240px, 100%);
  margin: 0 auto 2.5rem;
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 0.45rem;
}
.leader-featured h3,
.leader-featured p {
  margin: 0;
}
.leader-featured h3 {
  font-size: 1rem;
  line-height: 1.05;
}
.leader-featured p {
  font-size: 0.72rem;
  line-height: 1.28;
}

.leader-badge {
  width: 122px;
  height: 122px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 14px 26px rgba(17, 44, 44, 0.14);
}
.leader-badge img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.leader-role {
  font-weight: 700;
}

.leaders-slider {
  width: min(1200px, 100%);
  margin: 0 auto;
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 1rem 0 1.25rem;
  scrollbar-width: none;
}
.leaders-slider::-webkit-scrollbar {
  display: none;
}

.leader-card {
  flex: 0 0 min(360px, 82vw);
  aspect-ratio: 1/1;
  padding: 2rem;
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
  gap: 0.55rem;
  color: var(--ink);
  scroll-snap-align: center;
}
.leader-card h3,
.leader-card p {
  margin: 0;
}
.leader-card h3 {
  font-size: 1rem;
  line-height: 1.05;
}
.leader-card p {
  font-size: 0.72rem;
  line-height: 1.28;
  max-width: 260px;
}

.leader-card-brown {
  background: #c97425;
}

.leader-card-gold {
  background: #ffc221;
}

.leader-avatar {
  width: 112px;
  height: 112px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 0.5rem;
}
.leader-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.contact-section {
  padding: 4.5rem 0 4rem;
}

.contact-shell {
  --col-gap: 4rem;
  padding: 0;
}

.contact-info {
  min-width: 480px;
  width: 480px;
  flex: 0 0 480px;
  display: grid;
  gap: 2.2rem;
  align-content: start;
}
.contact-info h3,
.contact-info p {
  margin: 0;
}
.contact-info h3 {
  margin-bottom: 1.15rem;
  font-size: 1.1rem;
  line-height: 1.2;
}
.contact-info p {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 1.08rem;
  line-height: 1.28;
}
.contact-info strong {
  font-weight: 700;
}

.contact-info-block {
  display: grid;
  gap: 0.45rem;
}

.bank-info {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.bank-detail {
  display: grid;
  gap: 0.25rem;
  min-width: 0;
}
.bank-detail p {
  display: block;
}

.contact-icon {
  width: 28px;
  flex: 0 0 28px;
  display: inline-flex;
  justify-content: center;
  line-height: 0;
}
.contact-icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  display: block;
}

.contact-nowrap {
  white-space: nowrap;
}

.contact-info p > span:not(.contact-icon) {
  min-width: 0;
}

.donation-note {
  margin-top: 1rem !important;
}
.donation-note > span:not(.contact-icon) {
  min-width: 0;
}

.donation-icon img {
  width: 28px;
  height: 28px;
}

.contact-form {
  padding-top: 20px;
  width: auto;
  flex: 1 1 0;
  min-width: 0;
  display: grid;
  gap: 2rem;
}
.contact-form .wpcf7 {
  width: 100%;
}
.contact-form .wpcf7 form {
  margin: 0;
  display: grid;
  gap: 2rem;
}
.contact-form .form-field {
  position: relative;
  display: block;
}
.contact-form label {
  position: absolute;
  top: -0.72rem;
  left: 1.7rem;
  padding: 0 0.6rem;
  background: var(--bg);
  font-size: 1rem;
  line-height: 1.2;
  font-weight: 700;
  z-index: 1;
}
.contact-form .wpcf7-form-control-wrap {
  display: block;
}
.contact-form .wpcf7-response-output {
  margin: 0;
  padding: 0.75rem 1rem;
  border-width: 1.5px;
  border-radius: 10px;
  font-size: 0.9rem;
  line-height: 1.25;
}
.contact-form input {
  width: 100%;
  height: 52px;
  border: 1.5px solid var(--amber);
  border-radius: 10px;
  background: transparent;
  color: var(--ink);
  font-family: "KTH Childhood Dreams", cursive;
  font-size: 1rem;
  line-height: 1;
  padding: 0 1.2rem;
  outline: 0;
}

.contact-form input[type="submit"] {
    background: #f4c118;
}

.contact-submit {
  justify-self: end;
  align-self: center;
  display: inline-flex;
  width: auto !important;
  max-width: none;
  min-width: 148px;
  min-height: var(--header-action-height);
  padding: 0.9rem 1.2rem;
  border: 0;
  border-radius: 999px;
  background: #f4c118;
  color: var(--ink);
  font-family: "KTH Childhood Dreams", cursive;
  font-size: 1rem;
  cursor: pointer;
}

@media (max-width: 1200px) {
  .intro-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .intro-copy {
    order: -1;
    max-width: 640px;
    margin: 0 auto;
  }
  .intro-strip {
    max-width: 760px;
    margin: 0 auto;
  }
  .roadmap-grid {
    height: auto;
    gap: 1rem;
  }
  .roadmap-grid::before {
    display: none;
  }
  .milestone-card {
    width: min(485px, 100%);
    min-height: 0;
    margin: 0 auto 1rem;
  }
  .milestone-card.milestone-card-1, .milestone-card.milestone-card-2, .milestone-card.milestone-card-3 {
    align-self: center;
  }
}
@media (max-width: 1024px) {
  .story-layout {
    --col-gap: 1.5rem;
  }
  .roadmap-grid {
    gap: 1rem 2rem;
  }
  .roadmap-grid::before {
    inset: 80px 12% 80px;
  }
  .milestone-card-left,
  .milestone-card-right {
    margin-left: 0;
    margin-right: 0;
  }
  .board-grid {
    grid-template-columns: 1fr;
  }
  .board-card {
    min-height: 0;
  }
}
@media (max-width: 768px) {
  .understanding-hero {
    padding: 1.5rem 0 3rem;
  }
  .section-title {
    gap: 0.55rem;
    margin-bottom: 1.6rem;
  }
  .section-kicker {
    font-size: 0.88rem;
  }
  .intro-strip {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }
  .intro-strip img {
    height: 108px;
    border-radius: 14px;
  }
  .intro-copy {
    gap: 0.85rem;
  }
  .intro-copy h1 {
    font-size: clamp(2rem, 10vw, 3rem);
    line-height: 1;
  }
  .intro-note,
  .story-bubble,
  .milestone-card {
    border-width: 14px;
  }
  .story-section,
  .values-section,
  .roadmap-section,
  .governance-section,
  .leaders-section,
  .contact-section {
    padding-top: 1.5rem;
    padding-bottom: 3rem;
  }
  .story-bubbles {
    gap: 1rem;
  }
  .value-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.7rem;
    min-height: 0;
  }
  .value-art {
    width: 108px;
    height: 108px;
  }
  .value-item-left .value-art,
  .value-item-right .value-art {
    order: 1;
    width: auto;
    flex-basis: auto;
  }
  .value-item-left .value-copy,
  .value-item-right .value-copy {
    order: 2;
    width: auto;
    flex-basis: auto;
    text-align: center;
  }
  .value-item > :not(.value-art, .value-copy) {
    display: none;
  }
  .value-item:first-child .value-copy {
    transform: none;
  }
  .value-copy h3 {
    font-size: 1.15rem;
  }
  .value-copy p {
    font-size: 0.84rem;
  }
  .roadmap-grid {
    height: auto;
    min-height: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-top: 0;
  }
  .milestone-card {
    position: static;
    width: min(485px, 100%);
    min-height: 0;
    margin: 0 auto;
  }
  .governance-section .content {
    width: 100%;
    margin-top: 1rem;
  }
  .leader-featured h3 {
    font-size: 1.45rem;
  }
  .contact-shell {
    padding-top: 1rem;
  }
  .contact-section {
    padding-top: 3rem;
  }
  .contact-info p {
    font-size: 1rem;
  }
  .contact-info {
    min-width: 0;
    width: 100%;
    flex: 0 0 100%;
  }
  .contact-form {
    width: 100%;
    flex: 0 0 100%;
    gap: 1.5rem;
  }
  .contact-submit {
    justify-self: end;
    width: auto !important;
  }
}
@media (max-width: 480px) {
  .intro-strip {
    grid-template-columns: 1fr;
  }
  .intro-strip img:nth-child(2n),
  .intro-strip img:nth-child(2n+1) {
    transform: none;
  }
  .value-item {
    gap: 0.75rem;
  }
  .value-item-left .value-copy,
  .value-item-left .value-art,
  .value-item-right .value-copy,
  .value-item-right .value-art {
    grid-column: auto;
    grid-row: auto;
    text-align: center;
  }
  .value-art {
    width: 104px;
    height: 104px;
  }
  .contact-submit {
    width: auto !important;
  }
}

/*# sourceMappingURL=understanding-library.css.map */
