/* ============================================================
   PY Theme Layer  -  Youth-Energetic Corporate Enhancement
   Peace by Youth  -  Empowering Youth, Shaping Futures
   Loaded after py.css  -  pure visual layer, no markup changes.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');

:root {
  --py-grad-hero: linear-gradient(120deg, #383658 0%, #0071BC 55%, #169E9A 100%);
  --py-grad-cta: linear-gradient(120deg, #0071BC 0%, #169E9A 100%);
  --py-grad-text: linear-gradient(100deg, #0071BC 10%, #22AFA7 90%);
  --py-profile-navy: #2D2D73;
  --py-profile-teal: #18A9A1;
  --py-profile-lavender: #B8A8CC;
  --py-theme-title-font: "ITCFranklinGothic LT BookCp", "ITC Franklin Gothic LT Book Cp", "Franklin Gothic Book", "Arial Narrow", Arial, sans-serif;
  --py-shadow-lift: 0 18px 44px rgba(56, 54, 88, .16);
  --py-shadow-soft: 0 10px 28px rgba(0, 113, 188, .10);
}

/* ---------- Global rhythm & polish ---------- */
html {
  scroll-behavior: smooth
}

::selection {
  background: #0071BC;
  color: #fff
}

body {
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility
}

/* ---------- Section labels: energetic chips ---------- */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: 999px;
  background: linear-gradient(120deg, rgba(0, 113, 188, .10), rgba(22, 158, 154, .12));
  color: #0071BC;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  border: 1px solid rgba(0, 113, 188, .18);
}

.section-label::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--py-grad-cta);
  box-shadow: 0 0 0 4px rgba(22, 158, 154, .18);
}

.section-label.pyh-label-icon::before {
  display: none
}

/* ---------- Headings: gradient accent on key titles ---------- */
.section-title,
.py-page-hero-title,
.pyh-hero-title,
.pyh-mission-title,
.pyh-evidence-head h2,
.pyh-cta h2 {
  font-family: var(--font-heading);
  color: var(--py-profile-navy, #383658);
  letter-spacing: 0;
  text-transform: uppercase;
}

.pyh-hero-title {
  color: #fff
}

.pyh-evidence-head h2, .pyh-cta h2 {
  color: #fff
}

.section-title {
  position: relative;
  display: block;
}

.section-title::after {
  content: "";
  display: block;
  width: clamp(76px, 10vw, 142px);
  height: 4px;
  margin-top: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--py-profile-navy), var(--py-profile-teal), var(--py-gold));
}

.section-header.center .section-title::after {
  margin-left: auto;
  margin-right: auto
}

.h-hero-title .accent,
.h-stats-dark-title .accent {
  background: linear-gradient(100deg, #3BA7D8, #22AFA7);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.accent-gold {
  color: #22AFA7
}

/* ---------- Buttons: pill + lift + arrow energy ---------- */
.py-btn, .brand-btn {
  border-radius: 999px !important;
  font-weight: 900;
  letter-spacing: .01em;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.py-btn-primary, .brand-btn-primary {
  background: var(--py-grad-cta) !important;
  color: #fff !important;
  border: 0 !important;
  box-shadow: 0 12px 28px rgba(0, 113, 188, .28);
}

.py-btn-primary:hover, .brand-btn-primary:hover {
  transform: translateY(-2px) scale(1.015);
  box-shadow: 0 18px 40px rgba(0, 113, 188, .36);
}

.py-btn-secondary:hover {
  border-color: #169E9A !important;
  color: #0071BC !important;
  transform: translateY(-2px)
}

/* ---------- Cards: hover lift + top accent sweep ---------- */
.py-card, .h-story-card, .py-program-card, .py-partner-card {
  transition: transform .22s ease, box-shadow .22s ease;
  position: relative;
  overflow: hidden;
}

.py-card:hover, .h-story-card:hover, .py-program-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--py-shadow-lift);
}

.py-program-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 4px;
  background: var(--py-grad-cta);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .28s ease;
}

.py-program-card:hover::after {
  transform: scaleX(1)
}

/* ---------- Hero: cinematic gradient veil + motion ---------- */
.h-hero, .py-page-hero {
  position: relative
}

.py-page-hero {
  background: var(--py-grad-hero) !important;
}

.py-page-hero .py-container {
  position: relative;
  z-index: 1
}

.py-page-hero .py-page-hero-title,
.py-page-hero h1 {
  color: #fff !important;
  letter-spacing: -.02em
}

.py-page-hero .py-breadcrumb, .py-page-hero .py-breadcrumb a,
.py-page-hero .py-page-hero-desc, .py-page-hero p {
  color: rgba(255, 255, 255, .86) !important
}

.py-page-hero::after {
  content: "";
  position: absolute;
  inset: auto -10% -55% auto;
  width: 52%;
  height: 120%;
  background: radial-gradient(circle, rgba(34, 175, 167, .35), rgba(0, 113, 188, .12) 45%, transparent 72%);
  pointer-events: none;
}

.py-page-hero::before {
  content: "";
  position: absolute;
  left: -8vw;
  right: -8vw;
  bottom: -68px;
  height: 124px;
  border-top: 18px solid var(--py-profile-teal);
  border-radius: 50% 50% 0 0;
  transform: rotate(-2deg);
  opacity: .95;
  pointer-events: none;
}

/* ---------- Stats: bold gradient numbers ---------- */
.h-stat-num, .py-stat-num, .brand-stat strong,
[class*="stat"] strong {
  background: var(--py-grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 900;
}

.h-stat-card, .py-stat-card {
  border-radius: 18px;
  border: 1px solid rgba(0, 113, 188, .10);
  transition: transform .2s ease, box-shadow .2s ease;
}

.h-stat-card:hover, .py-stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--py-shadow-soft)
}

/* ---------- Badges ---------- */
.py-badge {
  border-radius: 999px;
  font-weight: 900;
  letter-spacing: .04em
}

.py-badge-orange {
  background: rgba(0, 113, 188, .10);
  color: #0071BC
}

.py-badge-gold {
  background: rgba(245, 183, 0, .14);
  color: #8A6400
}

.py-badge-green {
  background: rgba(22, 158, 154, .12);
  color: #0F7A76
}

.py-badge-blue {
  background: rgba(56, 54, 88, .10);
  color: #383658
}

/* ---------- Timeline: energetic dots ---------- */
.py-timeline-dot {
  background: var(--py-grad-cta) !important;
  box-shadow: 0 0 0 5px rgba(22, 158, 154, .18);
}

.py-timeline-year {
  color: #0071BC;
  font-weight: 900
}

/* ---------- Updates marquee ---------- */
.pyUpdatesMarquee, .py-updates-strip {
  border: 1px solid rgba(0, 113, 188, .14);
  border-radius: 16px;
  background: linear-gradient(120deg, #F3F7FA, #fff);
}

/* ---------- Partner band ---------- */
.py-partner-card {
  filter: grayscale(.15);
  opacity: .92
}

.py-partner-card:hover {
  filter: none;
  opacity: 1;
  transform: translateY(-4px);
  box-shadow: var(--py-shadow-soft)
}

/* ---------- Footer: gradient brand band ---------- */
.ac-footer, .py-footer, footer.site-footer {
  background: linear-gradient(160deg, #1D2433 0%, #383658 70%, #2E4D6B 100%) !important;
}

.ac-footer a:hover {
  color: #22AFA7 !important
}

/* ---------- Forms ---------- */
input:focus, textarea:focus, select:focus {
  outline: none !important;
  border-color: #0071BC !important;
  box-shadow: 0 0 0 4px rgba(0, 113, 188, .14) !important;
}

/* ---------- Accessibility ---------- */
a:focus-visible, button:focus-visible {
  outline: 3px solid #22AFA7;
  outline-offset: 2px;
  border-radius: 6px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    transition: none !important;
    animation: none !important
  }

  html {
    scroll-behavior: auto
  }
}

/* ============================================================
   PY HOME 2026  -  energetic corporate homepage
   ============================================================ */
.pyh-gradtext {
  background: linear-gradient(100deg, #3BA7D8, #22AFA7);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent
}

.pyh-gradtext-light {
  background: linear-gradient(100deg, #8FD4F5, #7FE7DF);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent
}

.pyh-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, .14);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .28);
  backdrop-filter: blur(6px)
}

.pyh-chip-dark {
  background: rgba(34, 175, 167, .16);
  color: #7FE7DF;
  border-color: rgba(34, 175, 167, .4)
}

.pyh-icon-mask, .pyh-counter-icon, .pyh-mini-icon, .pyh-inline-icon, .pyh-card-brand-icon, .pyh-hero-stat-icon, .py-impact-icon {
  display: block;
  width: var(--pyh-icon-size, 32px);
  aspect-ratio: 1;
  background: var(--pyh-icon-fill, var(--py-grad-cta));
  -webkit-mask: var(--pyh-icon) center/contain no-repeat;
  mask: var(--pyh-icon) center/contain no-repeat;
}

.pyh-inline-icon {
  --pyh-icon-size: 18px;
  --pyh-icon-fill: currentColor;
  display: inline-block;
  flex: 0 0 auto;
}

.pyh-label-icon {
  display: inline-flex !important;
  align-items: center;
  gap: 9px
}

.pyh-label-icon .pyh-inline-icon {
  --pyh-icon-size: 24px;
  --pyh-icon-fill: linear-gradient(120deg, #0071BC, #169E9A)
}

.py-program-icon .pyh-icon-mask {
  --pyh-icon-size: 32px;
  --pyh-icon-fill: currentColor
}

.py-card:hover .py-program-icon .pyh-icon-mask {
  --pyh-icon-fill: #fff
}

.don-impact-icon .pyh-icon-mask {
  --pyh-icon-size: 31px;
  --pyh-icon-fill: linear-gradient(120deg, #0071BC, #169E9A)
}

.stat-lucide-icon {
  background: none !important;
  mask: none !important;
  -webkit-mask: none !important;
  color: var(--pyh-icon-color, #0071BC)
}

.pyh-hero-stat-icon {
  --pyh-icon-size: 30px;
  --pyh-icon-fill: rgba(255, 255, 255, .9);
  --pyh-icon-color: #fff;
  margin-bottom: 10px
}

.py-impact-icon {
  --pyh-icon-size: 42px;
  --pyh-icon-fill: linear-gradient(120deg, #0071BC, #169E9A);
  --pyh-icon-color: #0071BC;
  margin: 0 auto 12px
}

/* ---- hero ---- */
.pyh-hero {
  position: relative;
  overflow: hidden;
  background: #101827;
  color: #fff
}

.pyh-hero-advanced {
  min-height: calc(100vh - 78px);
  display: flex;
  align-items: stretch
}

.pyh-hero-advanced::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(118deg, #383658 0%, #0f4c81 42%, #0071BC 72%, #169E9A 110%);
  z-index: 0
}

.pyh-hero-pattern {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-image: linear-gradient(rgba(255, 255, 255, .075) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .075) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, .86), rgba(0, 0, 0, .34))
}

.pyh-hero-ribbon {
  position: absolute;
  left: -8vw;
  right: -8vw;
  bottom: 9%;
  height: 140px;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(245, 183, 0, .0), rgba(245, 183, 0, .18), rgba(34, 175, 167, .22), rgba(245, 183, 0, .0));
  transform: skewY(-5deg)
}

.pyh-hero-shell {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: clamp(62px, 8vw, 118px) clamp(24px, 5vw, 72px) 30px;
  display: flex;
  flex-direction: column;
  justify-content: center
}

.pyh-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, .82fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: center
}

.pyh-hero-copy {
  position: relative;
  z-index: 6;
  max-width: 760px
}

.pyh-chip-action {
  background: rgba(255, 255, 255, .12);
  border-color: rgba(255, 255, 255, .28);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .04)
}

.pyh-hero-title {
  font-family: "Bristone PY", var(--font-heading);
  font-size: clamp(46px, 7vw, 96px);
  font-weight: 900;
  line-height: .95;
  letter-spacing: 0;
  margin: 24px -28vw 22px 0;
  position: relative;
  z-index: 7;
  width: min(1060px, 74vw);
  max-width: none;
  text-wrap: balance;
  color: transparent;
  -webkit-text-stroke: 1.6px #fff;
  text-stroke: 1.6px #fff;
  text-shadow: 0 12px 34px rgba(0, 0, 0, .36);
}

.pyh-hero-title::after {
  content: "";
  display: block;
  width: min(190px, 42vw);
  height: 7px;
  margin-top: 22px;
  border-radius: 999px;
  background: linear-gradient(90deg, #F5B700, #22AFA7)
}

.pyh-hero-sub {
  font-size: clamp(17px, 1.55vw, 22px);
  line-height: 1.65;
  color: rgba(255, 255, 255, .86);
  max-width: 690px;
  margin-bottom: 32px
}

.pyh-hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 30px
}

.pyh-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 15px;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease
}

.pyh-btn svg {
  width: 18px;
  height: 18px;
  transition: transform .18s ease
}

.pyh-btn:hover svg {
  transform: translateX(4px)
}

.pyh-btn-solid {
  background: #fff;
  color: #0071BC;
  box-shadow: 0 14px 34px rgba(0, 0, 0, .22)
}

.pyh-btn-solid:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 44px rgba(0, 0, 0, .28)
}

.pyh-btn-ghost {
  border: 2px solid rgba(255, 255, 255, .55);
  color: #fff
}

.pyh-btn-ghost:hover {
  background: rgba(255, 255, 255, .12);
  transform: translateY(-2px)
}

.pyh-btn-link {
  padding-inline: 8px;
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 6px;
  text-decoration-thickness: 2px
}

.pyh-btn-link:hover {
  color: #F5B700;
  transform: translateY(-2px)
}

.pyh-btn-outline {
  border: 2px solid #0071BC;
  color: #0071BC
}

.pyh-btn-outline:hover {
  background: #0071BC;
  color: #fff;
  transform: translateY(-2px)
}

.pyh-btn-light {
  background: #fff;
  color: #383658;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .2)
}

.pyh-btn-light:hover {
  transform: translateY(-2px)
}

.pyh-btn-ghost-light {
  border: 2px solid rgba(255, 255, 255, .6);
  color: #fff
}

.pyh-btn-ghost-light:hover {
  background: rgba(255, 255, 255, .12)
}

.pyh-btn-sm {
  padding: 11px 20px;
  font-size: 14px
}

.pyh-hero-trust {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 13.5px;
  font-weight: 700;
  color: rgba(255, 255, 255, .75)
}

.pyh-hero-trust i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #22AFA7;
  display: inline-block
}

.pyh-hero-visual {
  position: relative;
  z-index: 2;
  min-width: 0
}

.pyh-hero-media-board {
  position: relative;
  min-height: 540px
}

.pyh-hero-media-board::before {
  content: "";
  position: absolute;
  inset: 42px 22px 36px -18px;
  border: 1px solid rgba(255, 255, 255, .26);
  transform: rotate(-3.5deg)
}

.pyh-hero-media-board::after {
  content: "";
  position: absolute;
  right: -8px;
  top: 20px;
  width: 34%;
  height: 72%;
  background: repeating-linear-gradient(135deg, rgba(245, 183, 0, .72) 0 10px, transparent 10px 20px);
  opacity: .32;
  transform: skewY(8deg)
}

.pyh-hero-photo {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 34px 80px rgba(0, 0, 0, .34)
}

.pyh-hero-photo-main {
  height: min(58vh, 560px);
  min-height: 440px;
  transform: rotate(2deg)
}

.pyh-hero-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover
}

.pyh-hero-photo-fallback {
  background: linear-gradient(140deg, rgba(255, 255, 255, .16), rgba(255, 255, 255, .04))
}

.pyh-hero-signal {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .95);
  color: #383658;
  box-shadow: 0 18px 42px rgba(0, 0, 0, .25);
  font-size: 13px;
  font-weight: 900
}

.pyh-hero-signal span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(120deg, #0071BC, #169E9A);
  color: #fff;
  font-size: 12px
}

.pyh-hero-signal-a {
  left: -22px;
  top: 12%
}

.pyh-hero-signal-b {
  right: -14px;
  bottom: 18%
}

.pyh-hero-statbar {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: clamp(32px, 5vw, 62px)
}

.pyh-hero-stat {
  padding: 18px 20px;
  border-top: 1px solid rgba(255, 255, 255, .22);
  background: linear-gradient(180deg, rgba(255, 255, 255, .12), rgba(255, 255, 255, .06));
  backdrop-filter: blur(8px)
}

.pyh-hero-stat strong {
  display: block;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1;
  font-weight: 900;
  color: #fff
}

.pyh-hero-stat strong em {
  font-style: normal;
  font-size: .58em;
  color: #F5B700
}

.pyh-hero-stat span {
  display: block;
  margin-top: 8px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #9DE8E2
}

.pyh-hero-stat small {
  display: block;
  margin-top: 5px;
  color: rgba(255, 255, 255, .72);
  font-size: 12px;
  line-height: 1.4
}

/* ---- ticker ---- */
.pyh-ticker {
  background: #F3F7FA;
  border-bottom: 1px solid #E4E7EC;
  overflow: hidden
}

.pyh-ticker-inner {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 12px 0
}

.pyh-ticker-label {
  flex-shrink: 0;
  background: linear-gradient(120deg, #0071BC, #169E9A);
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px
}

.pyh-ticker-track {
  display: flex;
  gap: 44px;
  white-space: nowrap;
  animation: pyhTicker 42s linear infinite
}

.pyh-ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #475467
}

.pyh-ticker-item .pyh-inline-icon {
  --pyh-icon-fill: linear-gradient(120deg, #0071BC, #169E9A)
}

.pyh-ticker-item strong {
  color: #383658
}

@keyframes pyhTicker {
  0% {
    transform: translateX(0)
  }

  100% {
    transform: translateX(-50%)
  }
}

.pyh-ticker:hover .pyh-ticker-track {
  animation-play-state: paused
}

/* ---- counters ---- */
.pyh-counters {
  background: #fff;
  padding-top: 64px;
  padding-bottom: 56px
}

.pyh-counter-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px
}

.pyh-counter {
  text-align: center;
  padding: 24px 12px 26px;
  border-radius: 20px;
  border: 1px solid rgba(0, 113, 188, .16);
  background: linear-gradient(180deg, #fff, #F3FBFA);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  position: relative;
  overflow: hidden
}

.pyh-counter::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: var(--py-grad-cta)
}

.pyh-counter:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 36px rgba(0, 113, 188, .12)
}

.pyh-counter-icon {
  --pyh-icon-size: 42px;
  --pyh-icon-fill: linear-gradient(120deg, #0071BC, #169E9A);
  margin: 0 auto 13px
}

.pyh-counter-num {
  font-family: var(--font-number);
  font-size: 38px;
  font-weight: 900;
  letter-spacing: 0;
  background: linear-gradient(100deg, #0071BC, #169E9A);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent
}

.pyh-counter-num em {
  font-style: normal;
  font-size: 24px
}

.pyh-counter-label {
  font-size: 13.5px;
  font-weight: 900;
  color: #383658;
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: .04em
}

.pyh-counter-note {
  font-size: 12px;
  color: #667085;
  margin-top: 4px
}

/* ---- mission ---- */
.pyh-mission {
  background: linear-gradient(180deg, #F7FAFD, #fff)
}

.pyh-mission-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 56px;
  align-items: center
}

.pyh-mission-title {
  font-size: clamp(30px, 3.6vw, 44px);
  font-weight: 900;
  letter-spacing: -.02em;
  color: #383658;
  line-height: 1.12;
  margin: 16px 0 18px
}

.pyh-mission-copy {
  font-size: 17px;
  line-height: 1.75;
  color: #475467;
  margin-bottom: 22px
}

.pyh-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 900;
  color: #0071BC;
  text-decoration: none
}

.pyh-link svg {
  width: 18px;
  height: 18px;
  transition: transform .18s ease
}

.pyh-link:hover svg {
  transform: translateX(4px)
}

.pyh-mini-card {
  border-radius: 22px;
  padding: 26px 28px;
  margin-bottom: 18px;
  box-shadow: 0 12px 34px rgba(56, 54, 88, .10);
  position: relative;
  overflow: hidden
}

.pyh-mini-card span:not(.pyh-mini-icon) {
  font-size: 11.5px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  opacity: .85
}

.pyh-mini-card p {
  font-size: 17px;
  font-weight: 800;
  line-height: 1.5;
  margin-top: 8px
}

.pyh-mini-vision {
  background: linear-gradient(125deg, #0071BC, #169E9A);
  color: #fff
}

.pyh-mini-values {
  background: #fff;
  border: 1px solid #EAEFF5;
  color: #383658
}

.pyh-mini-icon {
  --pyh-icon-size: 54px;
  margin-bottom: 16px
}

.pyh-mini-vision .pyh-mini-icon {
  --pyh-icon-fill: rgba(255, 255, 255, .94)
}

.pyh-mini-values .pyh-mini-icon {
  --pyh-icon-fill: linear-gradient(120deg, #0071BC, #169E9A)
}

.pyh-mini-values span:not(.pyh-mini-icon) {
  color: #0071BC
}

.pyh-mini-values p {
  font-size: 14.5px;
  font-weight: 700;
  color: #475467
}

.pyh-values-art {
  display: block;
  width: 100%;
  max-width: 340px;
  margin: 0 auto;
  height: auto
}

/* ---- thematic ---- */
.pyh-themes {
  background: #fff;
  padding-top: 82px;
  padding-bottom: 86px
}

.pyh-theme-heading {
  display: flex;
  justify-content: center;
  margin-bottom: 44px
}

.pyh-theme-heading h2 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 72px;
  max-width: min(1040px, 92vw);
  padding: 12px clamp(34px, 5vw, 64px);
  border-radius: 999px;
  background: #2D2D73;
  color: #fff;
  font-family: "Bristone PY", var(--font-heading);
  font-size: clamp(30px, 4.1vw, 56px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
  text-align: center;
  white-space: nowrap;
  box-shadow: 0 18px 42px rgba(45, 45, 115, .18);
}

.pyh-theme-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: start;
  gap: 0;
  border-radius: 28px;
  background: linear-gradient(180deg, #fff, #F8FBFD);
}

.pyh-theme-item {
  min-height: 356px;
  padding: 6px 18px 22px;
  text-align: center;
  text-decoration: none;
  color: #383658;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform .2s ease;
}

.pyh-theme-item+.pyh-theme-item {
  border-left: 4px solid rgba(56, 54, 88, .72)
}

.pyh-theme-item:hover {
  transform: translateY(-6px)
}

.pyh-theme-art {
  width: 100%;
  height: 164px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
}

.pyh-theme-art img {
  display: block;
  width: min(166px, 78%);
  max-height: 154px;
  object-fit: contain;
  filter: drop-shadow(0 12px 16px rgba(45, 45, 115, .08));
}

.pyh-theme-item h3 {
  width: 100%;
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--py-theme-title-font);
  font-size: clamp(24px, 2.05vw, 34px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: 0;
  color: #383658;
  text-transform: none;
  overflow-wrap: normal;
  word-break: normal;
}

.pyh-theme-item p {
  margin-top: 12px;
  max-width: 220px;
  font-family: "Roboto", Arial, sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.55;
  color: #667085;
}

.pyh-theme-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 900;
  color: var(--pyh-tone, #0071BC)
}

.pyh-theme-more svg {
  width: 15px;
  height: 15px;
  transition: transform .18s ease
}

.pyh-theme-card:hover .pyh-theme-more svg, .pyh-theme-item:hover .pyh-theme-more svg {
  transform: translateX(4px)
}

.pyh-tone-sun {
  --pyh-tone: #C79300
}

.pyh-tone-violet {
  --pyh-tone: #7556A6
}

.pyh-tone-peace {
  --pyh-tone: #2474B5
}

.pyh-tone-coral {
  --pyh-tone: #D95A49
}

.pyh-tone-leaf {
  --pyh-tone: #3E9B6F
}

/* ---- projects ---- */
.pyh-row-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 30px
}

.pyh-project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px
}

.pyh-project-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 30px 28px;
  border-radius: 24px;
  background: linear-gradient(180deg, #fff, #F7FAFD);
  border: 1px solid #EAEFF5;
  text-decoration: none;
  transition: transform .22s ease, box-shadow .22s ease;
  position: relative;
  overflow: hidden
}

.pyh-project-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 48px rgba(0, 113, 188, .14)
}

.pyh-card-brand-icon {
  --pyh-icon-size: 46px;
  --pyh-icon-fill: linear-gradient(120deg, #0071BC, #169E9A);
  margin-bottom: 4px
}

.pyh-project-badge {
  align-self: flex-start;
  padding: 6px 13px;
  border-radius: 999px;
  background: rgba(0, 113, 188, .10);
  color: #0071BC;
  font-size: 11.5px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase
}

.pyh-project-card h3 {
  font-family: var(--font-heading);
  font-size: 19px;
  font-weight: 900;
  color: #383658;
  line-height: 1.35;
  letter-spacing: 0;
  text-transform: uppercase
}

.pyh-project-card p {
  font-size: 14px;
  line-height: 1.65;
  color: #667085;
  flex: 1
}

/* ---- evidence band ---- */
.pyh-evidence {
  background: linear-gradient(140deg, #1D2433 0%, #383658 60%, #0F4C81 115%);
  color: #fff;
  padding: 88px 0;
  text-align: center
}

.pyh-evidence-head h2 {
  font-size: clamp(28px, 3.4vw, 42px);
  font-weight: 900;
  letter-spacing: -.02em;
  margin: 18px 0 14px
}

.pyh-evidence-head p {
  max-width: 720px;
  margin: 0 auto;
  font-size: 16.5px;
  line-height: 1.7;
  color: rgba(255, 255, 255, .82)
}

.pyh-evidence-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin: 44px auto 38px;
  max-width: 960px
}

.pyh-evidence-grid>div {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 20px;
  padding: 26px 16px;
  backdrop-filter: blur(4px)
}

.pyh-evidence-grid strong {
  display: block;
  font-size: 36px;
  font-weight: 900;
  background: linear-gradient(100deg, #8FD4F5, #7FE7DF);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent
}

.pyh-evidence-grid span {
  font-size: 13px;
  color: rgba(255, 255, 255, .78);
  line-height: 1.5;
  display: block;
  margin-top: 6px
}

/* ---- objectives ---- */
.pyh-objectives {
  position: relative;
  overflow: hidden;
  background: #fff;
  padding: 78px 0 92px;
  color: #2D2D73
}

.pyh-objectives-inner {
  position: relative;
  z-index: 2
}

.pyh-objectives-heading {
  display: flex;
  justify-content: center;
  margin-bottom: 20px
}

.pyh-objectives-heading h2 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: min(380px, 78vw);
  min-height: 64px;
  padding: 10px 42px;
  border-radius: 999px;
  background: #2D2D73;
  color: #fff;
  font-family: "Bristone PY", var(--font-heading);
  font-size: clamp(28px, 3.6vw, 46px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
  box-shadow: 0 16px 34px rgba(45, 45, 115, .16);
}

.pyh-objectives-row {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: center;
  gap: 18px;
  min-height: 360px;
  margin-top: 8px;
}

.pyh-objective-card {
  position: relative;
  z-index: 2;
  width: min(100%, 312px);
  aspect-ratio: 1;
  margin: 0 auto;
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 24%, rgba(24, 169, 161, .08), transparent 34%),
    linear-gradient(145deg, #fff 0%, #fff 56%, #F7FBFC 100%);
  border: 2px solid rgba(184, 168, 204, .78);
  box-shadow: 10px 10px 0 #18A9A1, 0 26px 54px rgba(45, 45, 115, .12);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 36px 34px 30px;
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.pyh-objective-card::before {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 50%;
  border: 1px solid rgba(184, 168, 204, .5);
  pointer-events: none;
}

.pyh-objective-card::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 18px;
  width: 54px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, #18A9A1, #2D2D73);
  transform: translateX(-50%);
  opacity: .88;
}

.pyh-objective-card:hover {
  transform: translateY(-8px);
  border-color: rgba(24, 169, 161, .72);
  box-shadow: 10px 10px 0 #2D2D73, 0 30px 62px rgba(45, 45, 115, .16);
}

.pyh-objective-2 {
  margin-top: 12px
}

.pyh-objective-3 {
  margin-top: 0
}

.pyh-objective-4 {
  box-shadow: 10px 10px 0 rgba(24, 169, 161, .42), 0 24px 48px rgba(45, 45, 115, .08);
  border-color: rgba(184, 168, 204, .7)
}

.pyh-objective-icon {
  --pyh-icon-size: 70px;
  --pyh-icon-fill: linear-gradient(135deg, #18A9A1, #2D2D73);
  display: block;
  width: var(--pyh-icon-size);
  aspect-ratio: 1;
  background: var(--pyh-icon-fill);
  -webkit-mask: var(--pyh-icon) center/contain no-repeat;
  mask: var(--pyh-icon) center/contain no-repeat;
  margin-bottom: 16px;
}

.pyh-objective-card h3 {
  font-family: "Roboto", Arial, sans-serif;
  font-size: clamp(17px, 1.45vw, 22px);
  font-weight: 700;
  line-height: 1.12;
  text-transform: uppercase;
  color: #2D2D73;
  margin-bottom: 8px;
  letter-spacing: .01em;
}

.pyh-objective-card p {
  font-family: "Roboto", Arial, sans-serif;
  font-size: clamp(14px, 1.18vw, 18px);
  line-height: 1.32;
  font-weight: 400;
  color: #383658;
  max-width: 224px;
}

.pyh-objective-4 .pyh-objective-icon {
  --pyh-icon-fill: #78CFCB
}

.pyh-objective-4 h3 {
  color: #77799E
}

.pyh-objective-4 p {
  color: #8788A7
}

.pyh-objectives-wave {
  position: absolute;
  left: -8vw;
  right: -8vw;
  pointer-events: none;
  z-index: 1
}

.pyh-objectives-wave::before {
  content: "";
  position: absolute;
  inset: 0;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.pyh-objectives-wave-a {
  top: 120px;
  height: 320px
}

.pyh-objectives-wave-a::before {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 1500 320' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M-40 200 C120 160 210 170 300 250 S460 340 560 230 S730 140 900 210 S1110 260 1170 130 S1360 20 1540 160' fill='none' stroke='%23B8A8CC' stroke-width='22' stroke-linecap='round'/%3E%3C/svg%3E");
  opacity: .94;
}

.pyh-objectives-wave-b {
  top: 132px;
  height: 320px
}

.pyh-objectives-wave-b::before {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 1500 320' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M-20 210 C150 170 230 180 315 245 S470 322 565 235 S735 160 895 215 S1100 262 1165 145 S1350 48 1530 170' fill='none' stroke='%23D8CFE5' stroke-width='3' stroke-linecap='round'/%3E%3C/svg%3E");
  opacity: .9;
}

/* ---- news ---- */
.pyh-news-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px
}

.pyh-news-card, .pyh-event-card {
  border-radius: 24px;
  padding: 28px;
  border: 1px solid #EAEFF5;
  background: #fff;
  text-decoration: none;
  transition: transform .22s ease, box-shadow .22s ease;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  overflow: hidden
}

.pyh-news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 42px rgba(56, 54, 88, .12)
}

.pyh-news-brand-icon {
  --pyh-icon-size: 42px;
  --pyh-icon-fill: linear-gradient(120deg, #2D2D73, #18A9A1)
}

.pyh-news-meta {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #0071BC
}

.pyh-news-card h3, .pyh-event-card h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 900;
  color: #383658;
  line-height: 1.4;
  letter-spacing: 0;
  text-transform: uppercase
}

.pyh-news-card p {
  font-size: 14px;
  line-height: 1.65;
  color: #667085
}

.pyh-event-card {
  background: linear-gradient(140deg, #F3FBFA, #EFF6FC);
  border-color: rgba(22, 158, 154, .25)
}

.pyh-event-card .pyh-chip {
  background: linear-gradient(120deg, #0071BC, #169E9A);
  border: 0
}

.pyh-event-card h3 {
  font-size: 19px;
  font-weight: 900;
  color: #383658
}

.pyh-event-meta {
  font-size: 13.5px;
  font-weight: 800;
  color: #0F7A76
}

.pyh-event-card p {
  font-size: 14px;
  line-height: 1.65;
  color: #475467
}

.pyh-event-card .pyh-btn {
  align-self: flex-start;
  background: linear-gradient(120deg, #0071BC, #169E9A);
  color: #fff
}

/* ---- partners ---- */
.pyh-partner-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  flex-wrap: wrap;
  margin-top: 30px
}

.pyh-partner img {
  height: 56px;
  width: auto;
  max-width: 150px;
  object-fit: contain;
  filter: grayscale(.4);
  opacity: .8;
  transition: filter .2s ease, opacity .2s ease, transform .2s ease
}

.pyh-partner:hover img {
  filter: none;
  opacity: 1;
  transform: translateY(-3px)
}

.pyh-partner-note {
  text-align: center;
  margin-top: 26px;
  font-weight: 800
}

.pyh-partner-note a {
  color: #0071BC;
  text-decoration: none
}

/* ---- cta ---- */
.pyh-cta {
  background: linear-gradient(125deg, #0071BC 0%, #169E9A 100%);
  color: #fff;
  padding: 76px 0
}

.pyh-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  flex-wrap: wrap
}

.pyh-cta h2 {
  font-size: clamp(26px, 3.2vw, 40px);
  font-weight: 900;
  letter-spacing: -.02em;
  margin-bottom: 10px
}

.pyh-cta p {
  font-size: 16.5px;
  color: rgba(255, 255, 255, .88);
  max-width: 540px
}

.pyh-cta-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap
}

/* ---- what we do thematic pills ---- */
.pyw-label-pill {
  gap: 10px;
  background: linear-gradient(120deg, rgba(0, 113, 188, .09), rgba(24, 169, 161, .11));
  color: #2D2D73;
  border-color: rgba(0, 113, 188, .18);
}

.pyw-label-pill::before {
  display: none
}

.pyw-label-pill img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  flex: 0 0 auto
}

.pyw-theme-pills {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.pyw-theme-pill {
  position: relative;
  min-height: 280px;
  padding: 22px 18px 20px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 50% 0%, rgba(24, 169, 161, .12), transparent 36%),
    linear-gradient(180deg, #fff, #F8FCFD);
  border: 1px solid rgba(0, 113, 188, .16);
  box-shadow: 0 18px 42px rgba(45, 45, 115, .08);
  text-decoration: none;
  color: #2D2D73;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.pyw-theme-pill::before {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 28px;
  border: 1px solid rgba(184, 168, 204, .45);
  pointer-events: none;
}

.pyw-theme-pill::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 72px;
  height: 5px;
  border-radius: 0 0 999px 999px;
  background: linear-gradient(90deg, #0071BC, #18A9A1);
  transform: translateX(-50%);
}

.pyw-theme-pill:hover {
  transform: translateY(-7px);
  border-color: rgba(24, 169, 161, .42);
  box-shadow: 0 26px 58px rgba(45, 45, 115, .14);
}

.pyw-theme-pill-icon {
  width: 112px;
  height: 112px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
}

.pyw-theme-pill-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain
}

.pyw-theme-pill-copy {
  display: grid;
  gap: 8px;
  justify-items: center
}

.pyw-theme-pill-copy strong {
  font-family: var(--py-theme-title-font, var(--font-heading));
  font-size: clamp(22px, 2vw, 31px);
  font-weight: 400;
  line-height: 1.08;
  color: #383658;
}

.pyw-theme-pill-copy small {
  font-family: "Roboto", Arial, sans-serif;
  font-size: 12.5px;
  line-height: 1.45;
  color: #667085;
  max-width: 210px;
}

.pyw-theme-pill-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
  margin-top: auto;
  padding-top: 16px;
}

.pyw-theme-pill-tags em {
  font-style: normal;
  font: 700 10px/1 "Roboto", Arial, sans-serif;
  color: #0071BC;
  background: #E8F1FA;
  border: 1px solid rgba(0, 113, 188, .14);
  border-radius: 999px;
  padding: 6px 8px;
}

.pyw-program-head {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 18px 0 20px
}

.pyw-program-head-icon {
  width: 78px;
  height: 78px;
  flex: 0 0 78px;
  display: grid;
  place-items: center;
  border-radius: 26px;
  background: #fff;
  border: 1px solid rgba(0, 113, 188, .16);
  box-shadow: 0 14px 34px rgba(45, 45, 115, .08);
}

.pyw-program-head-icon img {
  width: 58px;
  height: 58px;
  object-fit: contain
}

.pyw-program-title {
  margin-bottom: 4px !important;
  font-size: clamp(23px, 3vw, 35px) !important
}

.pyw-program-label {
  font-size: 13px;
  color: var(--py-muted);
  font-weight: 700;
  line-height: 1.45
}

.pyw-program-desc {
  font-size: 16px;
  line-height: 1.75;
  color: var(--py-muted);
  margin-bottom: 24px
}

.pyw-icon-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px
}

.pyw-icon-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 7px 12px;
  border-radius: 999px;
  background: linear-gradient(120deg, #fff, #F3FBFA);
  border: 1px solid rgba(0, 113, 188, .16);
  box-shadow: 0 8px 20px rgba(45, 45, 115, .06);
  color: #2D2D73;
  font: 800 12px/1.2 "Roboto", Arial, sans-serif;
}

.pyw-icon-pill img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  flex: 0 0 auto
}

/* ---- about profile 2026 ---- */
.py-about-profile-hero .py-page-hero-title {
  max-width: 980px
}

.py-about-profile {
  background: #fff
}

.py-profile-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(310px, .72fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: center
}

.py-profile-grid.reverse {
  grid-template-columns: minmax(310px, .72fr) minmax(0, 1.04fr)
}

.py-profile-copy p {
  font-family: "Roboto", Arial, sans-serif;
  font-size: 16.5px;
  line-height: 1.78;
  color: #4b5563;
  margin: 0 0 18px
}

.py-profile-title-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 42px;
  padding: 9px 22px;
  border-radius: 999px;
  background: #2D2D73;
  color: #fff;
  font-family: "Bristone PY", var(--font-heading);
  font-size: clamp(16px, 2vw, 25px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
  box-shadow: 0 14px 32px rgba(45, 45, 115, .16);
}

.py-profile-title-pill img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  flex: 0 0 auto
}

.py-profile-title-pill svg {
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
  color: #fff
}

.py-profile-heading {
  font-family: "Bristone PY", var(--font-heading);
  font-size: clamp(34px, 4.4vw, 58px);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: 0;
  text-transform: uppercase;
  color: #2D2D73;
  margin: 18px 0 18px;
}

.py-profile-heading.small {
  font-size: clamp(28px, 3.4vw, 42px)
}

.py-profile-office-row, .py-profile-values-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px
}

.py-profile-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 46px;
  padding: 8px 14px;
  border-radius: 999px;
  background: linear-gradient(120deg, #fff, #F3FBFA);
  border: 1px solid rgba(0, 113, 188, .16);
  color: #2D2D73;
  box-shadow: 0 10px 24px rgba(45, 45, 115, .06);
  font-family: "Roboto", Arial, sans-serif;
}

.py-profile-pill img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  flex: 0 0 auto
}

.py-profile-pill strong {
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #0071BC
}

.py-profile-pill em {
  font-style: normal;
  font-size: 14px;
  font-weight: 800;
  color: #2D2D73
}

.py-profile-pill.value-pill {
  font-weight: 900;
  font-size: 13px
}

.py-profile-section-head {
  margin-bottom: 32px;
  max-width: 960px
}

.py-profile-section-head.center {
  text-align: center;
  margin-inline: auto
}

.py-profile-section-head.center .py-profile-title-pill {
  margin-inline: auto
}

.py-profile-register-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 34px
}

.py-profile-register-pill {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  padding: 20px 16px;
  border-radius: 28px;
  background: #fff;
  border: 1px solid rgba(0, 113, 188, .14);
  box-shadow: 0 16px 38px rgba(45, 45, 115, .08);
}

.py-profile-register-pill img {
  width: 56px;
  height: 56px;
  object-fit: contain
}

.py-profile-register-pill strong {
  font: 900 13px/1.25 "Roboto", Arial, sans-serif;
  color: #2D2D73
}

.py-profile-register-pill span {
  font: 500 12px/1.45 "Roboto", Arial, sans-serif;
  color: #667085
}

.py-profile-foundation-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.25fr;
  gap: 18px;
  align-items: stretch
}

.py-profile-statement, .py-profile-values-card {
  min-height: 230px;
  border-radius: 30px;
  background: #fff;
  border: 1px solid rgba(0, 113, 188, .14);
  box-shadow: 0 18px 42px rgba(45, 45, 115, .08);
  padding: 28px;
}

.py-profile-statement {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center
}

.py-profile-statement img {
  width: 78px;
  height: 78px;
  object-fit: contain;
  margin-bottom: 18px
}

.py-profile-statement span {
  font: 900 12px/1 "Roboto", Arial, sans-serif;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #0071BC;
  margin-bottom: 10px
}

.py-profile-statement p {
  font: 900 21px/1.35 "Roboto", Arial, sans-serif;
  color: #2D2D73;
  margin: 0
}

.py-profile-values-card {
  display: grid;
  place-items: center
}

.py-profile-values-card img {
  display: block;
  width: min(100%, 360px);
  height: auto
}

.py-profile-objective-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin: 36px 0 28px
}

.py-profile-objective {
  aspect-ratio: 1;
  border-radius: 50%;
  background: linear-gradient(145deg, #fff, #F7FBFC);
  border: 2px solid rgba(184, 168, 204, .72);
  box-shadow: 9px 9px 0 #18A9A1, 0 20px 48px rgba(45, 45, 115, .1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 28px;
}

.py-profile-objective img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  margin-bottom: 14px
}

.py-profile-objective h3 {
  font: 900 17px/1.12 "Roboto", Arial, sans-serif;
  text-transform: uppercase;
  color: #2D2D73;
  margin: 0 0 8px
}

.py-profile-objective p {
  font: 400 14px/1.35 "Roboto", Arial, sans-serif;
  color: #4b5563;
  margin: 0
}

.py-profile-milestone-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px
}

.py-profile-milestone-grid article, .py-profile-belief-list article, .py-profile-governance-grid article, .py-profile-department-grid article {
  border-radius: 24px;
  background: #fff;
  border: 1px solid rgba(0, 113, 188, .14);
  box-shadow: 0 14px 34px rgba(45, 45, 115, .07);
  padding: 18px;
}

.py-profile-milestone-grid img, .py-profile-belief-list img, .py-profile-governance-grid img, .py-profile-department-grid img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  margin-bottom: 10px
}

.py-profile-lucide-icon {
  display: block;
  width: 48px;
  height: 48px;
  margin-bottom: 14px;
  color: #2D2D73;
  stroke-width: 1.85;
  filter: drop-shadow(0 8px 14px rgba(24, 169, 161, .12));
}

.py-profile-governance-grid article:nth-child(2n) .py-profile-lucide-icon,
.py-profile-department-grid article:nth-child(2n) .py-profile-lucide-icon {
  color: #0071BC
}

.py-profile-governance-grid article:nth-child(3n) .py-profile-lucide-icon,
.py-profile-department-grid article:nth-child(3n) .py-profile-lucide-icon {
  color: #18A9A1
}

.py-profile-milestone-grid strong, .py-profile-belief-list strong, .py-profile-governance-grid strong, .py-profile-department-grid strong {
  display: block;
  font: 900 15px/1.2 "Roboto", Arial, sans-serif;
  color: #2D2D73;
  margin-bottom: 6px
}

.py-profile-milestone-grid span, .py-profile-governance-grid p, .py-profile-department-grid p {
  display: block;
  font: 400 13px/1.55 "Roboto", Arial, sans-serif;
  color: #667085;
  margin: 0
}

.py-profile-two-col {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 34px;
  align-items: start
}

.py-profile-belief-list {
  display: grid;
  gap: 14px;
  margin-top: 24px
}

.py-profile-belief-list article {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px
}

.py-profile-belief-list img {
  margin: 0;
  flex: 0 0 auto
}

.py-profile-belief-list strong {
  margin: 0;
  font-size: 17px
}

.py-profile-muted {
  font: 400 15px/1.65 "Roboto", Arial, sans-serif;
  color: #667085;
  margin: 0 0 18px
}

.py-profile-safeguard-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px
}

.py-profile-safeguard-list span {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 11px 14px;
  border-radius: 999px;
  background: linear-gradient(120deg, #fff, #F3FBFA);
  border: 1px solid rgba(0, 113, 188, .14);
  font: 800 12.5px/1.25 "Roboto", Arial, sans-serif;
  color: #2D2D73;
}

.py-profile-governance-grid {
  display: grid;
  gap: 14px;
  margin-top: 24px
}

.py-profile-governance-grid span {
  display: inline-flex;
  margin-top: 8px;
  font: 800 11px/1.3 "Roboto", Arial, sans-serif;
  color: #0071BC;
  text-transform: uppercase;
  letter-spacing: .05em
}

.py-profile-department-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin-top: 36px
}

.py-profile-intro-grid {
  display: grid;
  grid-template-columns: minmax(330px, .78fr) minmax(0, 1fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: center
}

.py-profile-intro-visual {
  position: relative;
  min-height: 520px;
  display: grid;
  align-content: end
}

.py-profile-round-photo {
  position: absolute;
  top: 0;
  left: 0;
  width: min(260px, 44%);
  aspect-ratio: 1;
  margin: 0;
  border-radius: 50%;
  overflow: hidden;
  background: #fff;
  border: 10px solid #fff;
  box-shadow: 0 26px 62px rgba(45, 45, 115, .18);
  z-index: 3;
}

.py-profile-round-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover
}

.py-profile-logo-card {
  position: relative;
  z-index: 2;
  width: min(100%, 520px);
  margin-left: auto;
  padding: 34px 34px 32px;
  border-radius: 34px;
  background: linear-gradient(135deg, #fff 0%, #F4FCFC 100%);
  border: 1px solid rgba(24, 169, 161, .18);
  box-shadow: 0 26px 70px rgba(45, 45, 115, .12);
}

.py-profile-logo-card img {
  display: block;
  width: 100%;
  height: auto
}

.py-profile-design-strip {
  position: absolute;
  left: 58px;
  right: 8px;
  top: 188px;
  height: 160px;
  z-index: 1;
  pointer-events: none;
}

.py-profile-design-strip span {
  position: absolute;
  display: block;
  border-radius: 999px;
  background: #2D2D73;
  opacity: .95;
  transform: rotate(-8deg)
}

.py-profile-design-strip span:nth-child(1) {
  left: 0;
  right: 80px;
  top: 14px;
  height: 24px
}

.py-profile-design-strip span:nth-child(2) {
  left: 70px;
  right: 0;
  top: 58px;
  height: 18px;
  background: #18A9A1
}

.py-profile-design-strip span:nth-child(3) {
  left: 28px;
  right: 130px;
  top: 102px;
  height: 12px;
  background: #F2C319
}

.py-profile-foundation-grid.mission-vision-only {
  grid-template-columns: repeat(2, minmax(0, 1fr))
}

.py-profile-objectives-home {
  background: #fff
}

.py-profile-themes {
  background: #F7FBF8
}

.py-profile-core-values-showcase {
  margin-top: 54px;
  display: grid;
  place-items: center;
  gap: 24px;
  padding: 36px;
  border-radius: 34px;
  background: #fff;
  border: 1px solid rgba(0, 113, 188, .12);
  box-shadow: 0 20px 56px rgba(45, 45, 115, .08);
}

.py-profile-core-values-showcase img {
  display: block;
  width: min(100%, 620px);
  height: auto
}

.py-profile-presence {
  overflow: hidden
}

.py-profile-map-full {
  position: relative;
  width: 100%;
  max-width: 1380px;
  margin: 18px auto 0;
  padding: 0 clamp(18px, 4vw, 58px);
}

.py-profile-map-img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 18px 30px rgba(45, 45, 115, .1))
}

.py-profile-history-grid {
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(0, 1.14fr);
  gap: 34px;
  align-items: start
}

.py-profile-governance .py-profile-governance-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 0
}

/* ---- impact page 2026 ---- */
.pyi-hero {
  position: relative;
  overflow: hidden;
  padding: 92px 0 104px;
  background:
    linear-gradient(135deg, rgba(45, 45, 115, .96), rgba(0, 113, 188, .9) 56%, rgba(24, 169, 161, .92)),
    #2D2D73;
  color: #fff;
}

.pyi-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, .08) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .08) 1px, transparent 1px);
  background-size: 52px 52px;
  opacity: .42;
}

.pyi-hero::after {
  content: "";
  position: absolute;
  right: -12%;
  bottom: -52%;
  width: 620px;
  height: 620px;
  border: 34px solid rgba(255, 255, 255, .13);
  border-radius: 50%;
}

.pyi-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1120px
}

.pyi-hero .py-breadcrumb a, .pyi-hero .py-breadcrumb span {
  color: rgba(255, 255, 255, .82)
}

.pyi-kicker, .pyi-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 38px;
  padding: 7px 15px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .94);
  color: #2D2D73;
  font: 900 12px/1 "Roboto", Arial, sans-serif;
  letter-spacing: .08em;
  text-transform: uppercase;
  box-shadow: 0 14px 34px rgba(45, 45, 115, .13);
}

.pyi-kicker {
  margin-top: 28px
}

.pyi-kicker-icon, .pyi-label-icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(17%) sepia(34%) saturate(2065%) hue-rotate(216deg) brightness(88%) contrast(91%);
}

.pyi-hero h1 {
  max-width: 1030px;
  margin: 22px 0 18px;
  font-family: "Bristone PY", var(--font-heading);
  font-size: clamp(54px, 8vw, 112px);
  line-height: .92;
  letter-spacing: 0;
  text-transform: uppercase;
}

.pyi-hero p {
  max-width: 760px;
  margin: 0;
  font: 500 19px/1.65 "Roboto", Arial, sans-serif;
  color: rgba(255, 255, 255, .88)
}

.pyi-section-head {
  max-width: 900px;
  margin-bottom: 34px
}

.pyi-section-head.center {
  text-align: center;
  margin-inline: auto
}

.pyi-section-head.center .pyi-label {
  margin-inline: auto
}

.pyi-section-head h2 {
  margin: 18px 0 12px;
  font-family: "Bristone PY", var(--font-heading);
  font-size: clamp(38px, 5.6vw, 74px);
  line-height: .98;
  letter-spacing: 0;
  text-transform: uppercase;
  color: #2D2D73;
}

.pyi-section-head p {
  margin: 0;
  font: 400 16px/1.7 "Roboto", Arial, sans-serif;
  color: #667085
}

.pyi-stats, .pyi-sectors {
  background: #fff
}

.pyi-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px
}

.pyi-stat-card {
  position: relative;
  min-height: 218px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 26px 18px;
  border-radius: 28px;
  background: linear-gradient(145deg, #fff, #F4FCFC);
  border: 1px solid rgba(0, 113, 188, .14);
  box-shadow: 0 18px 46px rgba(45, 45, 115, .08);
  overflow: hidden;
}

.pyi-stat-card::before {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  top: 0;
  height: 4px;
  border-radius: 0 0 999px 999px;
  background: linear-gradient(90deg, #0071BC, #18A9A1, #F2C319)
}

.pyi-stat-icon {
  width: 54px;
  height: 54px;
  object-fit: contain;
  margin-bottom: 14px;
  filter: brightness(0) saturate(100%) invert(17%) sepia(34%) saturate(2065%) hue-rotate(216deg) brightness(88%) contrast(91%);
}

.pyi-stat-card:nth-child(3n+2) .pyi-stat-icon {
  filter: brightness(0) saturate(100%) invert(35%) sepia(96%) saturate(1283%) hue-rotate(176deg) brightness(89%) contrast(96%)
}

.pyi-stat-card:nth-child(3n) .pyi-stat-icon {
  filter: brightness(0) saturate(100%) invert(50%) sepia(82%) saturate(482%) hue-rotate(132deg) brightness(89%) contrast(89%)
}

.pyi-stat-number {
  font: 900 46px/1 "Roboto", Arial, sans-serif;
  color: #2D2D73
}

.pyi-stat-number.gold {
  color: #D8A500
}

.pyi-stat-card strong {
  margin-top: 8px;
  font: 900 13px/1.25 "Roboto", Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: #2D2D73
}

.pyi-stat-card em {
  margin-top: 6px;
  font: 500 13px/1.4 "Roboto", Arial, sans-serif;
  color: #667085;
  font-style: normal
}

.pyi-note {
  text-align: center;
  font: italic 13px/1.5 "Roboto", Arial, sans-serif;
  color: #667085;
  margin: 24px 0 0
}

.pyi-footprint, .pyi-networks {
  background: #F7FBF8
}

.pyi-footprint-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px
}

.pyi-footprint-card {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 22px;
  align-items: start;
  padding: 30px;
  border-radius: 30px;
  background: #fff;
  border: 1px solid rgba(0, 113, 188, .13);
  box-shadow: 0 18px 48px rgba(45, 45, 115, .07);
}

.pyi-footprint-icon {
  width: 82px;
  height: 82px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(17%) sepia(34%) saturate(2065%) hue-rotate(216deg) brightness(88%) contrast(91%);
}

.pyi-footprint-card:nth-child(2n) .pyi-footprint-icon {
  filter: brightness(0) saturate(100%) invert(50%) sepia(82%) saturate(482%) hue-rotate(132deg) brightness(89%) contrast(89%)
}

.pyi-footprint-card h3 {
  font: 900 32px/1 "Roboto", Arial, sans-serif;
  color: #2D2D73;
  margin: 0 0 8px
}

.pyi-footprint-card p {
  font: 400 15px/1.65 "Roboto", Arial, sans-serif;
  color: #667085;
  margin: 0 0 18px
}

.pyi-districts {
  display: flex;
  flex-wrap: wrap;
  gap: 9px
}

.pyi-districts span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 7px 12px;
  border-radius: 999px;
  background: #F3FBFA;
  border: 1px solid rgba(24, 169, 161, .2);
  font: 800 12px/1 "Roboto", Arial, sans-serif;
  color: #2D2D73
}

.pyi-sector-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px
}

.pyi-sector-card {
  padding: 26px;
  border-radius: 30px;
  background: linear-gradient(150deg, #fff, #F7FBFC);
  border: 1px solid rgba(0, 113, 188, .14);
  box-shadow: 0 18px 46px rgba(45, 45, 115, .07);
}

.pyi-sector-top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px
}

.pyi-sector-icon {
  width: 74px;
  height: 74px;
  object-fit: contain;
  flex: 0 0 auto;
  filter: saturate(1.15) contrast(1.04);
}

.pyi-sector-card h3 {
  font: 900 24px/1.1 "Roboto", Arial, sans-serif;
  color: #2D2D73;
  margin: 0
}

.pyi-sector-card ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none
}

.pyi-sector-card li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  font: 400 14px/1.55 "Roboto", Arial, sans-serif;
  color: #4b5563
}

.pyi-sector-card li span {
  width: 16px;
  height: 16px;
  margin-top: 3px;
  border-radius: 50%;
  background: #18A9A1;
  box-shadow: inset 0 0 0 5px #fff, 0 0 0 1px rgba(24, 169, 161, .28)
}

.pyi-network-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px
}

.pyi-network-card {
  min-height: 172px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 9px;
  padding: 18px 12px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid rgba(0, 113, 188, .13);
  box-shadow: 0 14px 36px rgba(45, 45, 115, .06);
}

.pyi-network-card img {
  width: 76px;
  height: 76px;
  object-fit: contain
}

.pyi-network-card strong {
  font: 900 13px/1.25 "Roboto", Arial, sans-serif;
  color: #2D2D73
}

.pyi-network-card span {
  font: 800 11px/1.2 "Roboto", Arial, sans-serif;
  color: #0071BC;
  text-transform: uppercase;
  letter-spacing: .05em
}

/* ---- partners page 2026 ---- */
.pyp-hero {
  position: relative;
  overflow: hidden;
  padding: 92px 0 104px;
  background: linear-gradient(135deg, #2D2D73 0%, #0071BC 58%, #18A9A1 100%);
  color: #fff;
}

.pyp-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, .08) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .08) 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: .42;
}

.pyp-hero::after {
  content: "";
  position: absolute;
  right: -170px;
  bottom: -240px;
  width: 620px;
  height: 620px;
  border: 34px solid rgba(255, 255, 255, .14);
  border-radius: 50%;
}

.pyp-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1120px
}

.pyp-hero .py-breadcrumb a, .pyp-hero .py-breadcrumb span {
  color: rgba(255, 255, 255, .84)
}

.pyp-kicker, .pyp-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 38px;
  padding: 7px 15px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .95);
  color: #2D2D73;
  font: 900 12px/1 "Roboto", Arial, sans-serif;
  letter-spacing: .08em;
  text-transform: uppercase;
  box-shadow: 0 14px 34px rgba(45, 45, 115, .13);
}

.pyp-kicker {
  margin-top: 28px
}

.pyp-kicker img, .pyp-label img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(17%) sepia(34%) saturate(2065%) hue-rotate(216deg) brightness(88%) contrast(91%)
}

.pyp-hero h1 {
  max-width: 1040px;
  margin: 22px 0 18px;
  font-family: "Bristone PY", var(--font-heading);
  font-size: clamp(54px, 8vw, 112px);
  line-height: .92;
  letter-spacing: 0;
  text-transform: uppercase;
}

.pyp-hero p {
  max-width: 760px;
  margin: 0;
  font: 500 19px/1.65 "Roboto", Arial, sans-serif;
  color: rgba(255, 255, 255, .9)
}

.pyp-hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px
}

.pyp-hero-stats span {
  min-width: 178px;
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .2);
  backdrop-filter: blur(8px);
}

.pyp-hero-stats strong {
  display: block;
  font: 900 34px/1 "Roboto", Arial, sans-serif;
  color: #fff
}

.pyp-hero-stats em {
  display: block;
  margin-top: 5px;
  font: 800 12px/1.2 "Roboto", Arial, sans-serif;
  color: rgba(255, 255, 255, .8);
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: .06em
}

.pyp-partners {
  background: #fff
}

.pyp-networks, .pyp-inquiry {
  background: #F7FBF8
}

.pyp-section-head {
  max-width: 920px;
  margin-bottom: 34px
}

.pyp-section-head.center {
  text-align: center;
  margin-inline: auto
}

.pyp-section-head.center .pyp-label {
  margin-inline: auto
}

.pyp-section-head h2 {
  margin: 18px 0 12px;
  font-family: "Bristone PY", var(--font-heading);
  font-size: clamp(38px, 5.6vw, 74px);
  line-height: .98;
  letter-spacing: 0;
  text-transform: uppercase;
  color: #2D2D73;
}

.pyp-section-head p {
  margin: 0;
  font: 400 16px/1.7 "Roboto", Arial, sans-serif;
  color: #667085
}

.pyp-logo-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px
}

.pyp-logo-card {
  min-height: 188px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 8px;
  padding: 18px 12px;
  border-radius: 24px;
  background: linear-gradient(145deg, #fff, #F7FBFC);
  border: 1px solid rgba(0, 113, 188, .13);
  box-shadow: 0 14px 36px rgba(45, 45, 115, .06);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.pyp-logo-card:hover {
  transform: translateY(-5px);
  border-color: rgba(24, 169, 161, .32);
  box-shadow: 0 22px 52px rgba(45, 45, 115, .1)
}

.pyp-logo-card img {
  width: 78px;
  height: 78px;
  object-fit: contain
}

.pyp-logo-card strong {
  font: 900 13px/1.2 "Roboto", Arial, sans-serif;
  color: #2D2D73
}

.pyp-logo-card span {
  font: 500 11px/1.35 "Roboto", Arial, sans-serif;
  color: #667085;
  max-width: 150px
}

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

.pyp-network-card {
  padding: 24px;
  border-radius: 28px;
  background: #fff;
  border: 1px solid rgba(0, 113, 188, .13);
  box-shadow: 0 16px 42px rgba(45, 45, 115, .07);
}

.pyp-network-top {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 16px;
  align-items: center;
  margin-bottom: 14px
}

.pyp-network-top img {
  width: 72px;
  height: 72px;
  object-fit: contain
}

.pyp-network-top strong {
  display: block;
  font: 900 20px/1.16 "Roboto", Arial, sans-serif;
  color: #2D2D73;
  margin-bottom: 8px
}

.pyp-level {
  display: inline-flex;
  min-height: 26px;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: #F3FBFA;
  color: #0071BC;
  font: 900 10px/1 "Roboto", Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: .08em
}

.pyp-level.international {
  background: #EEF7FF;
  color: #0071BC
}

.pyp-level.regional {
  background: #FFF8DC;
  color: #9B7500
}

.pyp-level.national {
  background: #ECFBF8;
  color: #149290
}

.pyp-network-card em {
  display: inline-flex;
  margin-bottom: 10px;
  font: 900 12px/1.2 "Roboto", Arial, sans-serif;
  color: #18A9A1;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-style: normal
}

.pyp-network-card p {
  font: 400 14px/1.62 "Roboto", Arial, sans-serif;
  color: #667085;
  margin: 0
}

.pyp-inquiry-grid {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(420px, 1.05fr);
  gap: 34px;
  align-items: start
}

.pyp-form-card {
  padding: 34px;
  border-radius: 30px;
  background: #fff;
  border: 1px solid rgba(0, 113, 188, .13);
  box-shadow: 0 20px 54px rgba(45, 45, 115, .08);
}

/* ---- projects page 2026 ---- */
.pypj-hero {
  position: relative;
  overflow: hidden;
  padding: 92px 0 104px;
  background: linear-gradient(135deg, #2D2D73 0%, #0071BC 58%, #18A9A1 100%);
  color: #fff;
}

.pypj-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, .08) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .08) 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: .42;
}

.pypj-hero::after {
  content: "";
  position: absolute;
  right: -170px;
  bottom: -240px;
  width: 620px;
  height: 620px;
  border: 34px solid rgba(255, 255, 255, .14);
  border-radius: 50%
}

.pypj-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1120px
}

.pypj-hero .py-breadcrumb a, .pypj-hero .py-breadcrumb span {
  color: rgba(255, 255, 255, .84)
}

.pypj-kicker, .pypj-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 38px;
  padding: 7px 15px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .95);
  color: #2D2D73;
  font: 900 12px/1 "Roboto", Arial, sans-serif;
  letter-spacing: .08em;
  text-transform: uppercase;
  box-shadow: 0 14px 34px rgba(45, 45, 115, .13);
}

.pypj-kicker {
  margin-top: 28px
}

.pypj-kicker-icon, .pypj-label-icon, .pypj-inline-icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
  flex: 0 0 auto
}

.pypj-kicker-icon, .pypj-label-icon {
  filter: saturate(1.12) contrast(1.05)
}

.pypj-hero h1 {
  max-width: 1050px;
  margin: 22px 0 18px;
  font-family: "Bristone PY", var(--font-heading);
  font-size: clamp(54px, 8vw, 112px);
  line-height: .92;
  letter-spacing: 0;
  text-transform: uppercase
}

.pypj-hero p {
  max-width: 780px;
  margin: 0;
  font: 500 19px/1.65 "Roboto", Arial, sans-serif;
  color: rgba(255, 255, 255, .9)
}

.pypj-hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px
}

.pypj-hero-stats span {
  min-width: 190px;
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .2);
  backdrop-filter: blur(8px)
}

.pypj-hero-stats strong {
  display: block;
  font: 900 34px/1 "Roboto", Arial, sans-serif;
  color: #fff
}

.pypj-hero-stats em {
  display: block;
  margin-top: 5px;
  font: 800 12px/1.2 "Roboto", Arial, sans-serif;
  color: rgba(255, 255, 255, .8);
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: .06em
}

.pypj-featured-section, .pypj-completed-section {
  background: #F7FBF8
}

.pypj-current-section, .pypj-cta-section {
  background: #fff
}

.pypj-section-head {
  max-width: 920px;
  margin-bottom: 34px
}

.pypj-section-head h2 {
  margin: 18px 0 12px;
  font-family: "Bristone PY", var(--font-heading);
  font-size: clamp(38px, 5.6vw, 74px);
  line-height: .98;
  letter-spacing: 0;
  text-transform: uppercase;
  color: #2D2D73
}

.pypj-section-head p {
  margin: 0;
  font: 400 16px/1.7 "Roboto", Arial, sans-serif;
  color: #667085
}

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

.pypj-grid.featured .pypj-card:first-child {
  grid-column: span 2
}

.pypj-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border-radius: 28px;
  background: #fff;
  border: 1px solid rgba(0, 113, 188, .13);
  box-shadow: 0 18px 46px rgba(45, 45, 115, .07);
  text-decoration: none;
  color: inherit;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.pypj-card:hover {
  transform: translateY(-5px);
  border-color: rgba(24, 169, 161, .32);
  box-shadow: 0 24px 58px rgba(45, 45, 115, .11)
}

.pypj-card-media {
  position: relative;
  height: 224px;
  margin: 0;
  background: #2D2D73;
  overflow: hidden
}

.pypj-grid.featured .pypj-card:first-child .pypj-card-media {
  height: 318px
}

.pypj-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .35s ease
}

.pypj-card:hover .pypj-card-media img {
  transform: scale(1.04)
}

.pypj-card-media::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 48%;
  background: linear-gradient(180deg, transparent, rgba(45, 45, 115, .62))
}

.pypj-card-placeholder {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  font-family: "Bristone PY", var(--font-heading);
  font-size: 58px;
  color: #fff;
  background: linear-gradient(135deg, #2D2D73, #0071BC, #18A9A1)
}

.pypj-status, .pypj-featured {
  position: absolute;
  z-index: 2;
  top: 14px;
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 6px 11px;
  border-radius: 999px;
  font: 900 10px/1 "Roboto", Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: .07em;
  box-shadow: 0 10px 20px rgba(45, 45, 115, .18)
}

.pypj-status {
  left: 14px;
  background: #fff;
  color: #2D2D73
}

.pypj-status.active {
  background: #ECFBF8;
  color: #0B837E
}

.pypj-status.upcoming {
  background: #EEF7FF;
  color: #0071BC
}

.pypj-status.on_hold {
  background: #FFF8DC;
  color: #9B7500
}

.pypj-status.completed {
  background: #EEF0F4;
  color: #383658
}

.pypj-featured {
  right: 14px;
  background: #F2C319;
  color: #2D2D73
}

.pypj-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 22px
}

.pypj-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 13px
}

.pypj-card-top span {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: #F3FBFA;
  color: #0071BC;
  font: 900 10px/1 "Roboto", Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: .06em
}

.pypj-card-top em {
  font: 900 10px/1 "Roboto", Arial, sans-serif;
  color: #98A2B3;
  font-style: normal;
  letter-spacing: .06em
}

.pypj-card h3 {
  font: 900 22px/1.15 "Roboto", Arial, sans-serif;
  color: #2D2D73;
  margin: 0 0 12px
}

.pypj-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px
}

.pypj-meta span, .pypj-partner {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font: 700 12px/1.35 "Roboto", Arial, sans-serif;
  color: #667085;
  margin: 0
}

.pypj-meta img, .pypj-partner img {
  width: 17px;
  height: 17px;
  filter: brightness(0) saturate(100%) invert(35%) sepia(96%) saturate(1283%) hue-rotate(176deg) brightness(89%) contrast(96%)
}

.pypj-card-body>p:not(.pypj-partner) {
  font: 400 14px/1.62 "Roboto", Arial, sans-serif;
  color: #4b5563;
  margin: 10px 0 0
}

.pypj-reach {
  display: inline-flex;
  margin-top: 14px;
  padding: 8px 11px;
  border-radius: 12px;
  background: #F7FBF8;
  color: #2D2D73;
  font: 900 12px/1.2 "Roboto", Arial, sans-serif
}

.pypj-readmore {
  margin-top: auto;
  padding-top: 18px;
  font: 900 13px/1 "Roboto", Arial, sans-serif;
  color: #0071BC;
  text-transform: uppercase;
  letter-spacing: .06em
}

.pypj-tools {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin: 0 0 26px
}

.pypj-search {
  position: relative;
  flex: 1;
  min-width: 260px;
  max-width: 460px
}

.pypj-search span {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  display: flex
}

.pypj-search img {
  width: 18px;
  height: 18px;
  filter: brightness(0) saturate(100%) invert(35%) sepia(96%) saturate(1283%) hue-rotate(176deg) brightness(89%) contrast(96%)
}

.pypj-search input {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(0, 113, 188, .16);
  border-radius: 999px;
  padding: 12px 18px 12px 44px;
  background: #fff;
  color: #2D2D73;
  font: 500 14px/1 "Roboto", Arial, sans-serif;
  box-shadow: 0 10px 26px rgba(45, 45, 115, .05)
}

.pypj-search input:focus {
  outline: 3px solid rgba(24, 169, 161, .14);
  border-color: #18A9A1
}

.pypj-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px
}

.pypj-filter-bar button {
  min-height: 38px;
  border: 1px solid rgba(0, 113, 188, .16);
  border-radius: 999px;
  background: #fff;
  color: #2D2D73;
  padding: 8px 13px;
  font: 900 11px/1 "Roboto", Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: .04em;
  cursor: pointer
}

.pypj-filter-bar button.active {
  background: #2D2D73;
  color: #fff;
  border-color: #2D2D73
}

.pypj-count {
  margin-left: auto;
  font: 800 12px/1 "Roboto", Arial, sans-serif;
  color: #667085
}

.pypj-empty {
  grid-column: 1/-1;
  text-align: center;
  padding: 48px 20px;
  border: 1px dashed rgba(0, 113, 188, .28);
  border-radius: 24px;
  color: #667085;
  background: #fff
}

.pypj-cta {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  padding: 42px;
  border-radius: 34px;
  background: linear-gradient(135deg, #2D2D73, #0071BC 70%, #18A9A1);
  color: #fff;
  box-shadow: 0 24px 60px rgba(45, 45, 115, .14)
}

.pypj-cta span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font: 900 12px/1 "Roboto", Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #fff
}

.pypj-cta span img {
  filter: brightness(0) invert(1)
}

.pypj-cta h2 {
  font-family: "Bristone PY", var(--font-heading);
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1;
  margin: 18px 0 12px;
  text-transform: uppercase
}

.pypj-cta p {
  max-width: 690px;
  margin: 0 auto 26px;
  font: 400 16px/1.7 "Roboto", Arial, sans-serif;
  color: rgba(255, 255, 255, .86)
}

/* ---- publications page 2026 ---- */
.pypub-hero {
  position: relative;
  overflow: hidden;
  padding: 96px 0 108px;
  color: #fff;
  background: linear-gradient(135deg, rgba(45, 45, 115, .97), rgba(0, 113, 188, .94) 58%, rgba(24, 169, 161, .96)), radial-gradient(circle at 14% 20%, rgba(242, 195, 25, .28), transparent 35%)
}

.pypub-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, .08) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .08) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: .34
}

.pypub-hero::after {
  content: "";
  position: absolute;
  right: -170px;
  bottom: -240px;
  width: 620px;
  height: 620px;
  border: 34px solid rgba(255, 255, 255, .14);
  border-radius: 50%
}

.pypub-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1120px
}

.pypub-hero .py-breadcrumb a, .pypub-hero .py-breadcrumb span {
  color: rgba(255, 255, 255, .84)
}

.pypub-kicker, .pypub-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 34px;
  padding: 8px 13px;
  border-radius: 999px;
  background: #ECFBF8;
  color: #0071BC;
  font: 900 11px/1 "Roboto", Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: .08em
}

.pypub-kicker {
  margin-top: 28px;
  background: rgba(255, 255, 255, .14);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .2);
  backdrop-filter: blur(10px)
}

.pypub-icon, .pypub-kicker-icon, .pypub-label-icon, .pypub-inline-icon, .pypub-search-icon, .pypub-action-icon, .pypub-empty-icon {
  width: 22px;
  height: 22px;
  object-fit: contain;
  flex: 0 0 auto;
  filter: brightness(0) saturate(100%) invert(35%) sepia(96%) saturate(1283%) hue-rotate(176deg) brightness(89%) contrast(96%)
}

.pypub-kicker-icon {
  filter: brightness(0) invert(1)
}

.pypub-hero h1 {
  max-width: 1080px;
  margin: 22px 0 18px;
  font-family: "Bristone PY", var(--font-heading);
  font-size: clamp(54px, 8vw, 112px);
  line-height: .92;
  letter-spacing: 0;
  text-transform: uppercase
}

.pypub-hero p {
  max-width: 780px;
  margin: 0;
  font: 500 19px/1.65 "Roboto", Arial, sans-serif;
  color: rgba(255, 255, 255, .9)
}

.pypub-hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px
}

.pypub-hero-stats span {
  min-width: 190px;
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .2);
  backdrop-filter: blur(8px)
}

.pypub-hero-stats strong {
  display: block;
  font: 900 34px/1 "Roboto", Arial, sans-serif;
  color: #fff
}

.pypub-hero-stats em {
  display: block;
  margin-top: 5px;
  font: 800 12px/1.2 "Roboto", Arial, sans-serif;
  color: rgba(255, 255, 255, .8);
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: .06em
}

.pypub-library {
  background: #F7FBF8
}

.pypub-section-head {
  max-width: 920px;
  margin-bottom: 34px
}

.pypub-section-head h2 {
  margin: 18px 0 12px;
  font-family: "Bristone PY", var(--font-heading);
  font-size: clamp(38px, 5.6vw, 74px);
  line-height: .98;
  letter-spacing: 0;
  text-transform: uppercase;
  color: #2D2D73
}

.pypub-section-head p {
  margin: 0;
  font: 400 16px/1.7 "Roboto", Arial, sans-serif;
  color: #667085
}

.pypub-tools {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin: 0 0 26px
}

.pypub-search {
  position: relative;
  flex: 1;
  min-width: 260px;
  max-width: 460px
}

.pypub-search span {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  display: flex
}

.pypub-search-icon {
  width: 18px;
  height: 18px
}

.pypub-search input {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(0, 113, 188, .16);
  border-radius: 999px;
  padding: 12px 18px 12px 44px;
  background: #fff;
  color: #2D2D73;
  font: 500 14px/1 "Roboto", Arial, sans-serif;
  box-shadow: 0 10px 26px rgba(45, 45, 115, .05)
}

.pypub-search input:focus {
  outline: 3px solid rgba(24, 169, 161, .14);
  border-color: #18A9A1
}

.pypub-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px
}

.pypub-filter-bar button {
  min-height: 38px;
  border: 1px solid rgba(0, 113, 188, .16);
  border-radius: 999px;
  background: #fff;
  color: #2D2D73;
  padding: 8px 13px;
  font: 900 11px/1 "Roboto", Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: .04em;
  cursor: pointer
}

.pypub-filter-bar button.active {
  background: #2D2D73;
  color: #fff;
  border-color: #2D2D73
}

.pypub-count {
  margin-left: auto;
  font: 800 12px/1 "Roboto", Arial, sans-serif;
  color: #667085
}

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

.pypub-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  border-radius: 28px;
  background: #fff;
  border: 1px solid rgba(0, 113, 188, .14);
  box-shadow: 0 20px 50px rgba(45, 45, 115, .07);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease
}

.pypub-card:hover {
  transform: translateY(-5px);
  border-color: rgba(24, 169, 161, .32);
  box-shadow: 0 24px 58px rgba(45, 45, 115, .11)
}

.pypub-card[hidden] {
  display: none
}

.pypub-card-media {
  position: relative;
  height: 230px;
  margin: 0;
  background: #2D2D73;
  overflow: hidden;
  text-decoration: none
}

.pypub-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .35s ease
}

.pypub-card:hover .pypub-card-media img {
  transform: scale(1.04)
}

.pypub-card-media::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 55%;
  background: linear-gradient(180deg, transparent, rgba(45, 45, 115, .68))
}

.pypub-type, .pypub-file-badge {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  min-height: 29px;
  align-items: center;
  padding: 7px 11px;
  border-radius: 999px;
  font: 900 10px/1 "Roboto", Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: .07em;
  box-shadow: 0 10px 20px rgba(45, 45, 115, .18)
}

.pypub-type {
  left: 14px;
  top: 14px;
  background: #fff;
  color: #2D2D73
}

.pypub-file-badge {
  right: 14px;
  top: 14px;
  background: #F2C319;
  color: #2D2D73
}

.pypub-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 22px
}

.pypub-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 13px
}

.pypub-card-top span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 28px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #F3FBFA;
  color: #0071BC;
  font: 900 10px/1 "Roboto", Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: .06em
}

.pypub-inline-icon {
  width: 16px;
  height: 16px
}

.pypub-card-top em {
  font: 900 10px/1.2 "Roboto", Arial, sans-serif;
  color: #98A2B3;
  font-style: normal;
  text-align: right;
  text-transform: uppercase;
  letter-spacing: .05em
}

.pypub-card h3 {
  font: 900 23px/1.15 "Roboto", Arial, sans-serif;
  color: #2D2D73;
  margin: 0 0 12px
}

.pypub-card h3 a {
  color: inherit;
  text-decoration: none
}

.pypub-card h3 a:hover {
  color: #0071BC
}

.pypub-card p {
  font: 400 14px/1.62 "Roboto", Arial, sans-serif;
  color: #4b5563;
  margin: 0
}

.pypub-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: auto;
  padding-top: 20px
}

.pypub-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 38px;
  border: 1px solid rgba(0, 113, 188, .18);
  border-radius: 999px;
  background: #fff;
  color: #2D2D73;
  padding: 9px 13px;
  text-decoration: none;
  font: 900 11px/1 "Roboto", Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: .05em
}

.pypub-action.primary {
  background: #0071BC;
  color: #fff;
  border-color: #0071BC;
  box-shadow: 0 10px 22px rgba(0, 113, 188, .18)
}

.pypub-action.primary .pypub-action-icon {
  filter: brightness(0) invert(1)
}

.pypub-action.disabled {
  opacity: .58;
  cursor: default
}

.pypub-action-icon {
  width: 16px;
  height: 16px
}

.pypub-empty {
  grid-column: 1/-1;
  display: grid;
  justify-items: center;
  gap: 10px;
  text-align: center;
  padding: 48px 20px;
  border: 1px dashed rgba(0, 113, 188, .28);
  border-radius: 24px;
  color: #667085;
  background: #fff
}

.pypub-empty[hidden] {
  display: none
}

.pypub-empty-icon {
  width: 42px;
  height: 42px
}

.pypub-empty strong {
  font: 900 18px/1.2 "Roboto", Arial, sans-serif;
  color: #2D2D73
}

.pypub-empty span {
  font: 400 14px/1.5 "Roboto", Arial, sans-serif;
  color: #667085
}

/* ---- publication detail page 2026 ---- */
.pypubd-hero {
  position: relative;
  overflow: hidden;
  padding: 88px 0 100px;
  color: #fff;
  background: linear-gradient(135deg, #2D2D73, #0071BC 62%, #18A9A1)
}

.pypubd-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: .2;
  filter: saturate(1.08) contrast(1.05)
}

.pypubd-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, .08) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .08) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: .34
}

.pypubd-hero::after {
  content: "";
  position: absolute;
  right: -180px;
  bottom: -260px;
  width: 660px;
  height: 660px;
  border: 34px solid rgba(255, 255, 255, .14);
  border-radius: 50%
}

.pypubd-hero-inner {
  position: relative;
  z-index: 1
}

.pypubd-hero .py-breadcrumb a, .pypubd-hero .py-breadcrumb span {
  color: rgba(255, 255, 255, .84)
}

.pypubd-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 460px);
  gap: 42px;
  align-items: center;
  margin-top: 28px
}

.pypubd-icon, .pypubd-kicker-icon, .pypubd-label-icon, .pypubd-badge-icon, .pypubd-panel-icon, .pypubd-file-icon, .pypubd-file-action-icon, .pypubd-admin-icon {
  width: 22px;
  height: 22px;
  object-fit: contain;
  flex: 0 0 auto;
  filter: brightness(0) saturate(100%) invert(35%) sepia(96%) saturate(1283%) hue-rotate(176deg) brightness(89%) contrast(96%)
}

.pypubd-kicker-icon, .pypubd-admin-icon {
  filter: brightness(0) invert(1)
}

.pypubd-kicker, .pypubd-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 34px;
  padding: 8px 13px;
  border-radius: 999px;
  background: #ECFBF8;
  color: #0071BC;
  font: 900 11px/1 "Roboto", Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: .08em
}

.pypubd-kicker {
  background: rgba(255, 255, 255, .14);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .2);
  backdrop-filter: blur(10px)
}

.pypubd-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 20px 0 18px
}

.pypubd-badges span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 31px;
  padding: 8px 12px;
  border-radius: 999px;
  background: #fff;
  color: #2D2D73;
  font: 900 10px/1 "Roboto", Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: .07em;
  box-shadow: 0 10px 22px rgba(0, 0, 0, .12)
}

.pypubd-badge-icon {
  width: 15px;
  height: 15px
}

.pypubd-hero h1 {
  max-width: 900px;
  margin: 0 0 18px;
  font-family: "Bristone PY", var(--font-heading);
  font-size: clamp(46px, 6.5vw, 88px);
  line-height: .96;
  letter-spacing: 0;
  text-transform: uppercase
}

.pypubd-hero p {
  max-width: 760px;
  margin: 0;
  font: 500 18px/1.68 "Roboto", Arial, sans-serif;
  color: rgba(255, 255, 255, .9)
}

.pypubd-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 30px
}

.pypubd-cover {
  position: relative;
  margin: 0;
  min-height: 430px;
  border-radius: 34px;
  overflow: hidden;
  background: #2D2D73;
  box-shadow: 0 32px 78px rgba(0, 0, 0, .24);
  transform: rotate(1.2deg)
}

.pypubd-cover::before {
  content: "";
  position: absolute;
  inset: 18px -18px -18px 18px;
  border: 3px solid rgba(242, 195, 25, .52);
  border-radius: 34px;
  z-index: -1
}

.pypubd-cover img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover
}

.pypubd-main, .pypubd-related {
  background: #F7FBF8
}

.pypubd-layout {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: 28px;
  align-items: start
}

.pypubd-sidebar {
  position: sticky;
  top: 110px;
  display: grid;
  gap: 18px
}

.pypubd-panel, .pypubd-story, .pypubd-related-card {
  border: 1px solid rgba(0, 113, 188, .14);
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 22px 58px rgba(45, 45, 115, .08)
}

.pypubd-panel {
  border-radius: 28px;
  overflow: hidden
}

.pypubd-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(0, 113, 188, .12);
  background: #fff
}

.pypubd-panel-head span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font: 900 12px/1 "Roboto", Arial, sans-serif;
  color: #2D2D73;
  text-transform: uppercase;
  letter-spacing: .08em
}

.pypubd-panel-icon {
  width: 20px;
  height: 20px
}

.pypubd-upload-btn {
  min-height: 31px;
  border: 0;
  border-radius: 999px;
  background: #0071BC;
  color: #fff;
  padding: 7px 12px;
  font: 900 10px/1 "Roboto", Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: .06em;
  cursor: pointer
}

.pypubd-file-list {
  display: grid
}

.pypubd-file-empty {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 20px;
  color: #667085;
  font: 600 13px/1.4 "Roboto", Arial, sans-serif
}

.pypubd-file-row {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr) 34px auto;
  gap: 10px;
  align-items: center;
  padding: 14px 16px;
  border-top: 1px solid rgba(0, 113, 188, .08)
}

.pypubd-file-row:first-child {
  border-top: 0
}

.pypubd-file-icon {
  width: 28px;
  height: 28px
}

.pypubd-file-info {
  min-width: 0;
  display: grid;
  gap: 3px
}

.pypubd-file-info .pub-file-name {
  font: 800 13px/1.25 "Roboto", Arial, sans-serif;
  color: #2D2D73;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis
}

.pypubd-file-info .pub-file-size {
  font: 600 11px/1 "Roboto", Arial, sans-serif;
  color: #667085
}

.pypubd-file-dl {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: #ECFBF8
}

.pypubd-file-action-icon {
  width: 17px;
  height: 17px
}

.pypubd-file-del {
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 10px;
  background: #FFF1F1;
  color: #B42318;
  font: 900 12px/1 "Roboto", Arial, sans-serif;
  cursor: pointer
}

.pypubd-meta {
  margin: 0;
  padding: 4px 20px 18px
}

.pypubd-meta div {
  display: grid;
  gap: 5px;
  padding: 14px 0;
  border-top: 1px solid rgba(0, 113, 188, .1)
}

.pypubd-meta div:first-child {
  border-top: 0
}

.pypubd-meta dt {
  font: 900 10px/1 "Roboto", Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #0071BC
}

.pypubd-meta dd {
  margin: 0;
  font: 800 14px/1.35 "Roboto", Arial, sans-serif;
  color: #2D2D73
}

.pypubd-story {
  border-radius: 34px;
  padding: 34px
}

.pypubd-content {
  margin-top: 22px;
  font: 400 16px/1.82 "Roboto", Arial, sans-serif;
  color: #344054
}

.pypubd-content h2, .pypubd-content h3, .pypubd-content h4 {
  font-family: "Roboto", Arial, sans-serif;
  color: #2D2D73;
  margin: 30px 0 12px;
  letter-spacing: 0
}

.pypubd-content h2 {
  font-size: 30px;
  line-height: 1.14;
  font-weight: 900
}

.pypubd-content h3 {
  font-size: 23px;
  line-height: 1.2;
  font-weight: 900
}

.pypubd-content p {
  margin: 0 0 18px
}

.pypubd-content ul, .pypubd-content ol {
  padding-left: 24px;
  margin: 0 0 20px
}

.pypubd-content li {
  margin-bottom: 8px
}

.pypubd-content blockquote {
  margin: 24px 0;
  padding: 18px 20px;
  border-left: 5px solid #18A9A1;
  border-radius: 0 18px 18px 0;
  background: #F3FBFA;
  color: #2D2D73;
  font-weight: 700
}

.pypubd-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(0, 113, 188, .12)
}

.pypubd-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 7px 11px;
  border-radius: 999px;
  background: #ECFBF8;
  color: #2D2D73;
  font: 900 11px/1 "Roboto", Arial, sans-serif
}

.pypubd-download-block {
  margin-top: 32px;
  padding: 24px;
  border-radius: 26px;
  background: #F7FBF8;
  border: 1px solid rgba(0, 113, 188, .12)
}

.pypubd-download-block h2 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  font: 900 22px/1.15 "Roboto", Arial, sans-serif;
  color: #2D2D73
}

.pypubd-download-block>div {
  display: grid;
  gap: 10px
}

.pypubd-download-block a {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 13px 14px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(0, 113, 188, .1);
  text-decoration: none;
  color: #2D2D73
}

.pypubd-download-block strong {
  display: block;
  font: 900 13px/1.25 "Roboto", Arial, sans-serif;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis
}

.pypubd-download-block em {
  display: block;
  margin-top: 3px;
  font: 600 11px/1 "Roboto", Arial, sans-serif;
  color: #667085;
  font-style: normal
}

.pypubd-section-head {
  max-width: 820px;
  margin-bottom: 32px
}

.pypubd-section-head h2 {
  margin: 18px 0 0;
  font-family: "Bristone PY", var(--font-heading);
  font-size: clamp(38px, 5.6vw, 72px);
  line-height: 1;
  text-transform: uppercase;
  color: #2D2D73
}

.pypubd-related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px
}

.pypubd-related-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 28px;
  text-decoration: none;
  color: inherit;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease
}

.pypubd-related-card:hover {
  transform: translateY(-5px);
  border-color: rgba(24, 169, 161, .34);
  box-shadow: 0 28px 64px rgba(45, 45, 115, .12)
}

.pypubd-related-card figure {
  margin: 0;
  height: 214px;
  background: #2D2D73;
  overflow: hidden
}

.pypubd-related-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .35s ease
}

.pypubd-related-card:hover img {
  transform: scale(1.04)
}

.pypubd-related-card div {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex: 1
}

.pypubd-related-card span {
  align-self: flex-start;
  margin-bottom: 13px;
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: #ECFBF8;
  color: #0071BC;
  font: 900 10px/1 "Roboto", Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: .07em
}

.pypubd-related-card h3 {
  font: 900 22px/1.15 "Roboto", Arial, sans-serif;
  color: #2D2D73;
  margin: 0 0 11px
}

.pypubd-related-card p {
  font: 800 12px/1 "Roboto", Arial, sans-serif;
  color: #98A2B3;
  margin: 0
}

.pypubd-related-card strong {
  margin-top: auto;
  padding-top: 18px;
  font: 900 12px/1 "Roboto", Arial, sans-serif;
  color: #0071BC;
  text-transform: uppercase;
  letter-spacing: .07em
}

.pypubd-admin-bar {
  position: sticky;
  top: 0;
  z-index: 200;
  background: #2D2D73;
  border-bottom: 2px solid #18A9A1
}

.pypubd-admin-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 24px;
  min-height: 46px
}

.pypubd-admin-bar-left, .pypubd-admin-bar-right {
  display: flex;
  align-items: center;
  gap: 9px
}

.pypubd-admin-bar-left {
  font: 800 12px/1 "Roboto", Arial, sans-serif;
  color: rgba(255, 255, 255, .82)
}

.pypubd-admin-status {
  display: inline-flex;
  padding: 5px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .1)
}

.pypubd-admin-status.published {
  color: #8FF3C0
}

.pypubd-admin-btn {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
  color: #fff;
  padding: 7px 12px;
  text-decoration: none;
  font: 900 11px/1 "Roboto", Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: .04em;
  cursor: pointer
}

.pypubd-admin-btn.primary {
  background: #0071BC;
  border-color: #0071BC
}

#pub-upload-toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 9999;
  display: grid;
  gap: 8px
}

.pub-toast-item {
  padding: 11px 15px;
  border-radius: 12px;
  background: #2D2D73;
  color: #fff;
  font: 800 13px/1.3 "Roboto", Arial, sans-serif;
  box-shadow: 0 14px 34px rgba(45, 45, 115, .2)
}

.pub-toast-item.success {
  background: #087F6F
}

.pub-toast-item.error {
  background: #B42318
}

/* ---- news listing and detail 2026 ---- */
.pyn-hero, .pynd-hero {
  position: relative;
  overflow: hidden;
  padding: 96px 0 108px;
  color: #fff;
  background: linear-gradient(135deg, rgba(45, 45, 115, .97), rgba(0, 113, 188, .94) 58%, rgba(24, 169, 161, .96)), radial-gradient(circle at 14% 20%, rgba(242, 195, 25, .28), transparent 35%)
}

.pyn-hero::before, .pynd-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, .08) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .08) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: .34
}

.pyn-hero::after, .pynd-hero::after {
  content: "";
  position: absolute;
  right: -170px;
  bottom: -240px;
  width: 620px;
  height: 620px;
  border: 34px solid rgba(255, 255, 255, .14);
  border-radius: 50%
}

.pynd-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: .18;
  filter: saturate(1.08) contrast(1.05)
}

.pyn-hero-inner, .pynd-hero-inner {
  position: relative;
  z-index: 1
}

.pyn-hero-inner {
  max-width: 1120px
}

.pyn-hero .py-breadcrumb a, .pyn-hero .py-breadcrumb span, .pynd-hero .py-breadcrumb a, .pynd-hero .py-breadcrumb span {
  color: rgba(255, 255, 255, .84)
}

.pyn-icon, .pyn-kicker-icon, .pyn-label-icon, .pyn-search-icon, .pyn-empty-icon, .pynd-icon, .pynd-kicker-icon, .pynd-label-icon, .pynd-badge-icon {
  width: 22px;
  height: 22px;
  object-fit: contain;
  flex: 0 0 auto;
  filter: brightness(0) saturate(100%) invert(35%) sepia(96%) saturate(1283%) hue-rotate(176deg) brightness(89%) contrast(96%)
}

.pyn-kicker-icon, .pynd-kicker-icon {
  filter: brightness(0) invert(1)
}

.pyn-kicker, .pyn-label, .pynd-kicker, .pynd-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 34px;
  padding: 8px 13px;
  border-radius: 999px;
  background: #ECFBF8;
  color: #0071BC;
  font: 900 11px/1 "Roboto", Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: .08em
}

.pyn-kicker, .pynd-kicker {
  margin-top: 28px;
  background: rgba(255, 255, 255, .14);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .2);
  backdrop-filter: blur(10px)
}

.pyn-hero h1 {
  max-width: 1080px;
  margin: 22px 0 18px;
  font-family: "Bristone PY", var(--font-heading);
  font-size: clamp(54px, 8vw, 112px);
  line-height: .92;
  letter-spacing: 0;
  text-transform: uppercase
}

.pyn-hero p {
  max-width: 780px;
  margin: 0;
  font: 500 19px/1.65 "Roboto", Arial, sans-serif;
  color: rgba(255, 255, 255, .9)
}

.pyn-hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px
}

.pyn-hero-stats span {
  min-width: 190px;
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .2);
  backdrop-filter: blur(8px)
}

.pyn-hero-stats strong {
  display: block;
  font: 900 34px/1 "Roboto", Arial, sans-serif;
  color: #fff
}

.pyn-hero-stats em {
  display: block;
  margin-top: 5px;
  font: 800 12px/1.2 "Roboto", Arial, sans-serif;
  color: rgba(255, 255, 255, .8);
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: .06em
}

.pyn-featured, .pynd-main, .pynd-related {
  background: #F7FBF8
}

.pyn-list-section {
  background: #fff
}

.pyn-section-head, .pynd-section-head {
  max-width: 920px;
  margin-bottom: 34px
}

.pyn-section-head h2, .pynd-section-head h2 {
  margin: 18px 0 12px;
  font-family: "Bristone PY", var(--font-heading);
  font-size: clamp(38px, 5.6vw, 74px);
  line-height: .98;
  letter-spacing: 0;
  text-transform: uppercase;
  color: #2D2D73
}

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

.pyn-grid, .pynd-related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px
}

.pyn-card, .pynd-related-card {
  overflow: hidden;
  border-radius: 28px;
  background: #fff;
  border: 1px solid rgba(0, 113, 188, .14);
  box-shadow: 0 20px 50px rgba(45, 45, 115, .07);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease
}

.pyn-card:hover, .pynd-related-card:hover {
  transform: translateY(-5px);
  border-color: rgba(24, 169, 161, .32);
  box-shadow: 0 24px 58px rgba(45, 45, 115, .11)
}

.pyn-card[hidden] {
  display: none
}

.pyn-card a, .pynd-related-card a {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  color: inherit;
  text-decoration: none
}

.pyn-card figure, .pynd-related-card figure {
  position: relative;
  height: 216px;
  margin: 0;
  background: #2D2D73;
  overflow: hidden
}

.pyn-card-featured figure {
  height: 300px
}

.pyn-card figure img, .pynd-related-card figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .35s ease
}

.pyn-card:hover figure img, .pynd-related-card:hover figure img {
  transform: scale(1.04)
}

.pyn-card figure span, .pynd-related-card figure span {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  font-family: "Bristone PY", var(--font-heading);
  font-size: 54px;
  color: #fff;
  background: linear-gradient(135deg, #2D2D73, #0071BC, #18A9A1)
}

.pyn-card figure::after, .pynd-related-card figure::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 48%;
  background: linear-gradient(180deg, transparent, rgba(45, 45, 115, .62))
}

.pyn-card div:not(.pyn-card-top), .pynd-related-card div {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 22px
}

.pyn-card-top {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 13px;
  padding: 0 !important
}

.pyn-card-top span, .pynd-related-card div>span {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: #ECFBF8;
  color: #0071BC;
  font: 900 10px/1 "Roboto", Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: .07em
}

.pyn-card-top time {
  font: 900 10px/1.2 "Roboto", Arial, sans-serif;
  color: #98A2B3;
  text-transform: uppercase;
  letter-spacing: .05em
}

.pyn-card h3, .pynd-related-card h3 {
  font: 900 23px/1.15 "Roboto", Arial, sans-serif;
  color: #2D2D73;
  margin: 0 0 12px
}

.pyn-card p, .pynd-related-card p {
  font: 400 14px/1.62 "Roboto", Arial, sans-serif;
  color: #4b5563;
  margin: 0
}

.pyn-card strong, .pynd-related-card strong {
  margin-top: auto;
  padding-top: 18px;
  font: 900 12px/1 "Roboto", Arial, sans-serif;
  color: #0071BC;
  text-transform: uppercase;
  letter-spacing: .07em
}

.pyn-tools {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin: 0 0 26px
}

.pyn-search {
  position: relative;
  flex: 1;
  min-width: 260px;
  max-width: 460px
}

.pyn-search span {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  display: flex
}

.pyn-search-icon {
  width: 18px;
  height: 18px
}

.pyn-search input {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(0, 113, 188, .16);
  border-radius: 999px;
  padding: 12px 18px 12px 44px;
  background: #fff;
  color: #2D2D73;
  font: 500 14px/1 "Roboto", Arial, sans-serif;
  box-shadow: 0 10px 26px rgba(45, 45, 115, .05)
}

.pyn-search input:focus {
  outline: 3px solid rgba(24, 169, 161, .14);
  border-color: #18A9A1
}

.pyn-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px
}

.pyn-filter-bar button {
  min-height: 38px;
  border: 1px solid rgba(0, 113, 188, .16);
  border-radius: 999px;
  background: #fff;
  color: #2D2D73;
  padding: 8px 13px;
  font: 900 11px/1 "Roboto", Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: .04em;
  cursor: pointer
}

.pyn-filter-bar button.active {
  background: #2D2D73;
  color: #fff;
  border-color: #2D2D73
}

.pyn-count {
  margin-left: auto;
  font: 800 12px/1 "Roboto", Arial, sans-serif;
  color: #667085
}

.pyn-empty {
  grid-column: 1/-1;
  display: grid;
  justify-items: center;
  gap: 10px;
  text-align: center;
  padding: 48px 20px;
  border: 1px dashed rgba(0, 113, 188, .28);
  border-radius: 24px;
  color: #667085;
  background: #fff
}

.pyn-empty[hidden] {
  display: none
}

.pyn-empty-icon {
  width: 42px;
  height: 42px
}

.pyn-empty h3 {
  font: 900 18px/1.2 "Roboto", Arial, sans-serif;
  color: #2D2D73;
  margin: 0
}

.pyn-empty p {
  margin: 0;
  font: 400 14px/1.5 "Roboto", Arial, sans-serif;
  color: #667085
}

.pynd-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 460px);
  gap: 42px;
  align-items: center;
  margin-top: 28px
}

.pynd-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 20px 0 18px
}

.pynd-badges span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 31px;
  padding: 8px 12px;
  border-radius: 999px;
  background: #fff;
  color: #2D2D73;
  font: 900 10px/1 "Roboto", Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: .07em;
  box-shadow: 0 10px 22px rgba(0, 0, 0, .12)
}

.pynd-badge-icon {
  width: 15px;
  height: 15px
}

.pynd-hero h1 {
  max-width: 900px;
  margin: 0 0 18px;
  font-family: "Bristone PY", var(--font-heading);
  font-size: clamp(46px, 6.5vw, 88px);
  line-height: .96;
  letter-spacing: 0;
  text-transform: uppercase
}

.pynd-hero p {
  max-width: 760px;
  margin: 0;
  font: 500 18px/1.68 "Roboto", Arial, sans-serif;
  color: rgba(255, 255, 255, .9)
}

.pynd-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px
}

.pynd-meta span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .18);
  font: 800 12px/1 "Roboto", Arial, sans-serif;
  color: #fff
}

.pynd-cover {
  position: relative;
  margin: 0;
  min-height: 430px;
  border-radius: 34px;
  overflow: hidden;
  background: #2D2D73;
  box-shadow: 0 32px 78px rgba(0, 0, 0, .24);
  transform: rotate(1.2deg)
}

.pynd-cover img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover
}

.pynd-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 28px;
  align-items: start
}

.pynd-article, .pynd-share-card, .pynd-back-card {
  border: 1px solid rgba(0, 113, 188, .14);
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 22px 58px rgba(45, 45, 115, .08);
  border-radius: 34px
}

.pynd-article {
  padding: 34px
}

.pynd-content {
  margin-top: 22px;
  font: 400 16px/1.82 "Roboto", Arial, sans-serif;
  color: #344054
}

.pynd-content h2, .pynd-content h3, .pynd-content h4 {
  font-family: "Roboto", Arial, sans-serif;
  color: #2D2D73;
  margin: 30px 0 12px;
  letter-spacing: 0
}

.pynd-content h2 {
  font-size: 30px;
  line-height: 1.14;
  font-weight: 900
}

.pynd-content h3 {
  font-size: 23px;
  line-height: 1.2;
  font-weight: 900
}

.pynd-content p {
  margin: 0 0 18px
}

.pynd-content ul, .pynd-content ol {
  padding-left: 24px;
  margin: 0 0 20px
}

.pynd-content li {
  margin-bottom: 8px
}

.pynd-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(0, 113, 188, .12)
}

.pynd-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 7px 11px;
  border-radius: 999px;
  background: #ECFBF8;
  color: #2D2D73;
  font: 900 11px/1 "Roboto", Arial, sans-serif
}

.pynd-source {
  margin-top: 24px;
  font: 700 14px/1.5 "Roboto", Arial, sans-serif;
  color: #667085
}

.pynd-source a {
  color: #0071BC
}

.pynd-aside {
  position: sticky;
  top: 110px;
  display: grid;
  gap: 18px
}

.pynd-share-card, .pynd-back-card {
  padding: 24px
}

.pynd-share-card h2, .pynd-back-card h2 {
  margin: 18px 0 10px;
  font: 900 25px/1.1 "Roboto", Arial, sans-serif;
  color: #2D2D73
}

.pynd-share-card p, .pynd-back-card p {
  font: 400 14px/1.6 "Roboto", Arial, sans-serif;
  color: #667085;
  margin: 0 0 18px
}

.pynd-share-links {
  display: grid;
  gap: 9px
}

.pynd-share-links a, .pynd-share-links button {
  display: flex;
  align-items: center;
  gap: 9px;
  width: 100%;
  min-height: 38px;
  border: 1px solid rgba(0, 113, 188, .14);
  border-radius: 14px;
  background: #fff;
  color: #2D2D73;
  padding: 9px 12px;
  text-decoration: none;
  font: 900 12px/1 "Roboto", Arial, sans-serif;
  cursor: pointer
}

.pynd-share-links svg {
  width: 18px;
  height: 18px
}

.pynd-share-status {
  min-height: 18px !important;
  margin-top: 10px !important
}

/* ---- events page 2026 ---- */
.pye-hero {
  position: relative;
  overflow: hidden;
  padding: 96px 0 108px;
  color: #fff;
  background: linear-gradient(135deg, rgba(45, 45, 115, .97), rgba(0, 113, 188, .94) 58%, rgba(24, 169, 161, .96)), radial-gradient(circle at 14% 20%, rgba(242, 195, 25, .28), transparent 35%)
}

.pye-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: .18;
  filter: saturate(1.08) contrast(1.05)
}

.pye-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, .08) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .08) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: .34
}

.pye-hero::after {
  content: "";
  position: absolute;
  right: -170px;
  bottom: -240px;
  width: 620px;
  height: 620px;
  border: 34px solid rgba(255, 255, 255, .14);
  border-radius: 50%
}

.pye-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1120px
}

.pye-hero .py-breadcrumb a, .pye-hero .py-breadcrumb span {
  color: rgba(255, 255, 255, .84)
}

.pye-icon, .pye-kicker-icon, .pye-label-icon, .pye-inline-icon, .pye-empty-icon, .pye-card-placeholder-icon {
  width: 22px;
  height: 22px;
  object-fit: contain;
  flex: 0 0 auto;
  filter: brightness(0) saturate(100%) invert(35%) sepia(96%) saturate(1283%) hue-rotate(176deg) brightness(89%) contrast(96%)
}

.pye-kicker-icon {
  filter: brightness(0) invert(1)
}

.pye-kicker, .pye-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 34px;
  padding: 8px 13px;
  border-radius: 999px;
  background: #ECFBF8;
  color: #0071BC;
  font: 900 11px/1 "Roboto", Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: .08em
}

.pye-kicker {
  margin-top: 28px;
  background: rgba(255, 255, 255, .14);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .2);
  backdrop-filter: blur(10px)
}

.pye-hero h1 {
  max-width: 1080px;
  margin: 22px 0 18px;
  font-family: "Bristone PY", var(--font-heading);
  font-size: clamp(54px, 8vw, 112px);
  line-height: .92;
  letter-spacing: 0;
  text-transform: uppercase
}

.pye-hero p {
  max-width: 780px;
  margin: 0;
  font: 500 19px/1.65 "Roboto", Arial, sans-serif;
  color: rgba(255, 255, 255, .9)
}

.pye-hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px
}

.pye-hero-stats span {
  min-width: 190px;
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .2);
  backdrop-filter: blur(8px)
}

.pye-hero-stats strong {
  display: block;
  font: 900 34px/1 "Roboto", Arial, sans-serif;
  color: #fff
}

.pye-hero-stats em {
  display: block;
  margin-top: 5px;
  font: 800 12px/1.2 "Roboto", Arial, sans-serif;
  color: rgba(255, 255, 255, .8);
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: .06em
}

.pye-main {
  background: #F7FBF8
}

.pye-alert {
  margin-bottom: 18px;
  padding: 14px 16px;
  border-radius: 16px;
  font: 800 14px/1.4 "Roboto", Arial, sans-serif
}

.pye-alert.success {
  background: #ECFBF8;
  border: 1px solid rgba(24, 169, 161, .25);
  color: #087F6F
}

.pye-alert.error {
  background: #FEF3F2;
  border: 1px solid #FECDCA;
  color: #B42318
}

.pye-empty {
  display: grid;
  justify-items: center;
  gap: 10px;
  text-align: center;
  padding: 58px 20px;
  border: 1px dashed rgba(0, 113, 188, .28);
  border-radius: 28px;
  color: #667085;
  background: #fff
}

.pye-empty-icon {
  width: 44px;
  height: 44px
}

.pye-empty h2 {
  font: 900 28px/1.1 "Roboto", Arial, sans-serif;
  color: #2D2D73;
  margin: 0
}

.pye-empty p {
  margin: 0;
  font: 400 15px/1.5 "Roboto", Arial, sans-serif;
  color: #667085
}

.pye-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 28px;
  align-items: start
}

.pye-section-head {
  max-width: 900px;
  margin-bottom: 30px
}

.pye-section-head h2 {
  margin: 18px 0 0;
  font-family: "Bristone PY", var(--font-heading);
  font-size: clamp(38px, 5.6vw, 74px);
  line-height: .98;
  letter-spacing: 0;
  text-transform: uppercase;
  color: #2D2D73
}

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

.pye-card, .pye-detail-panel {
  overflow: hidden;
  border-radius: 28px;
  background: #fff;
  border: 1px solid rgba(0, 113, 188, .14);
  box-shadow: 0 20px 50px rgba(45, 45, 115, .07);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease
}

.pye-card.active, .pye-card:hover {
  transform: translateY(-5px);
  border-color: rgba(24, 169, 161, .34);
  box-shadow: 0 24px 58px rgba(45, 45, 115, .11)
}

.pye-card a {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  color: inherit;
  text-decoration: none
}

.pye-card figure {
  position: relative;
  height: 230px;
  margin: 0;
  background: #2D2D73;
  overflow: hidden
}

.pye-card figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .35s ease
}

.pye-card:hover figure img {
  transform: scale(1.04)
}

.pye-card figure span {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #2D2D73, #0071BC, #18A9A1)
}

.pye-card-placeholder-icon {
  width: 74px;
  height: 74px;
  filter: brightness(0) invert(1)
}

.pye-card figure::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 48%;
  background: linear-gradient(180deg, transparent, rgba(45, 45, 115, .62))
}

.pye-card div:not(.pye-card-top) {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 22px
}

.pye-card-top {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 13px;
  padding: 0 !important
}

.pye-card-top span {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: #ECFBF8;
  color: #0071BC;
  font: 900 10px/1 "Roboto", Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: .07em
}

.pye-card-top time {
  font: 900 10px/1.2 "Roboto", Arial, sans-serif;
  color: #98A2B3;
  text-transform: uppercase;
  letter-spacing: .05em
}

.pye-card h3 {
  font: 900 23px/1.15 "Roboto", Arial, sans-serif;
  color: #2D2D73;
  margin: 0 0 12px
}

.pye-card p {
  font: 400 14px/1.62 "Roboto", Arial, sans-serif;
  color: #4b5563;
  margin: 0
}

.pye-card .pye-meta {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 10px;
  font: 800 12px/1.35 "Roboto", Arial, sans-serif;
  color: #667085
}

.pye-inline-icon {
  width: 17px;
  height: 17px
}

.pye-card strong {
  margin-top: auto;
  padding-top: 18px;
  font: 900 12px/1 "Roboto", Arial, sans-serif;
  color: #0071BC;
  text-transform: uppercase;
  letter-spacing: .07em
}

.pye-detail-panel {
  position: sticky;
  top: 110px;
  padding: 26px
}

.pye-detail-panel h2 {
  margin: 18px 0 12px;
  font: 900 30px/1.08 "Roboto", Arial, sans-serif;
  color: #2D2D73
}

.pye-detail-facts {
  display: grid;
  gap: 8px;
  margin-bottom: 18px
}

.pye-detail-facts span {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  padding: 9px 11px;
  border-radius: 14px;
  background: #F7FBF8;
  color: #2D2D73;
  font: 800 13px/1.3 "Roboto", Arial, sans-serif
}

.pye-detail-copy {
  font: 400 15px/1.7 "Roboto", Arial, sans-serif;
  color: #4b5563;
  margin-bottom: 20px
}

.pye-detail-copy p {
  margin: 0 0 12px
}

.pye-form {
  display: grid;
  gap: 12px
}

.pye-form .py-input, .pye-form .py-textarea {
  border-color: rgba(0, 113, 188, .16);
  border-radius: 14px
}

.pye-form>p {
  font: 500 12px/1.45 "Roboto", Arial, sans-serif;
  color: #667085;
  margin: 0
}

.pye-closed {
  font: 700 14px/1.55 "Roboto", Arial, sans-serif;
  color: #667085;
  margin: 0
}

.py-profile-introduction {
  padding: 0;
  background: #fff;
  overflow: hidden
}

.py-profile-intro-sheet {
  position: relative;
  min-height: 710px;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  background: #fff;
  overflow: hidden;
}

.py-profile-arc-photo {
  position: absolute;
  left: -78px;
  top: -122px;
  width: min(850px, 66vw);
  height: 455px;
  margin: 0;
  border-bottom-right-radius: 100% 72%;
  overflow: hidden;
  z-index: 2;
  box-shadow: 0 18px 0 rgba(45, 45, 115, .34);
}

.py-profile-arc-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center
}

.py-profile-arc-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(24, 169, 161, .08), rgba(45, 45, 115, .24));
  pointer-events: none;
}

.py-profile-arc-brand {
  position: absolute;
  left: -118px;
  top: 296px;
  width: min(800px, 64vw);
  height: 128px;
  border-bottom-right-radius: 100% 82%;
  background: #18A9A1;
  z-index: 1;
}

.py-profile-arc-brand::before {
  content: "";
  position: absolute;
  left: 0;
  right: -16px;
  top: -54px;
  height: 96px;
  border-bottom-right-radius: 100% 90%;
  background: rgba(184, 168, 204, .62);
}

.py-profile-corner-pattern {
  position: absolute;
  right: 32px;
  top: 0;
  width: 188px;
  height: 190px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 52px;
  gap: 0;
  z-index: 3;
  opacity: .95;
}

.py-profile-corner-pattern span {
  width: 0;
  height: 0;
  border-top: 26px solid transparent;
  border-bottom: 26px solid transparent;
  border-left: 52px solid rgba(184, 168, 204, .78)
}

.py-profile-corner-pattern span:nth-child(2), .py-profile-corner-pattern span:nth-child(5) {
  border-left-color: #0071BC
}

.py-profile-corner-pattern span:nth-child(3), .py-profile-corner-pattern span:nth-child(4) {
  border-left-color: #18A9A1
}

.py-profile-corner-pattern span:nth-child(even) {
  transform: rotate(180deg)
}

.py-profile-intro-content {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: minmax(170px, 250px) minmax(0, 1fr);
  gap: 24px 46px;
  width: min(1180px, calc(100% - 80px));
  margin: 0 auto;
  padding-top: 230px;
  padding-bottom: 26px;
}

.py-profile-logo-lockup {
  align-self: end;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 180px
}

.py-profile-logo-lockup img {
  display: block;
  width: min(100%, 220px);
  height: auto
}

.py-profile-intro-copy {
  align-self: start;
  max-width: 880px;
  text-align: center;
  color: #2D2D73
}

.py-profile-intro-badge-svg {
  display: block;
  width: min(100%, 430px);
  height: auto;
  margin: 0 auto 12px
}

.py-profile-intro-badge {
  display: grid;
  justify-items: center;
  margin: 0 auto 12px;
  color: #2D2D73;
  text-transform: uppercase
}

.py-profile-intro-badge span {
  font-family: "Bristone PY", "Roboto", Arial, sans-serif;
  font-size: 102px;
  font-weight: 900;
  line-height: .78;
  letter-spacing: 0;
  color: transparent;
  -webkit-text-stroke: 2px #2D2D73;
  text-stroke: 2px #2D2D73;
}

.py-profile-intro-badge strong {
  font: 900 44px/1 "Roboto", Arial, sans-serif;
  letter-spacing: .02em;
  color: #2D2D73
}

.py-profile-intro-copy p {
  font-family: "Roboto Condensed", "Roboto", Arial, sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.42;
  color: #2D2D73;
  margin: 0 0 8px;
}

.py-profile-legal-row {
  grid-column: 1/-1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  align-items: start;
  margin-top: 8px;
}

.py-profile-legal-item {
  display: grid;
  justify-items: center;
  text-align: center;
  color: #2D2D73
}

.py-profile-legal-item img {
  display: block;
  width: 70px;
  height: 70px;
  object-fit: contain;
  margin-bottom: 8px
}

.py-profile-legal-item strong {
  display: block;
  font: 900 13px/1.1 "Roboto", Arial, sans-serif;
  color: #2D2D73;
  margin-bottom: 3px
}

.py-profile-legal-item span {
  display: block;
  font: 500 12.5px/1.12 "Roboto", Arial, sans-serif;
  color: #2D2D73;
  max-width: 230px
}

.py-profile-presence .py-profile-heading {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto
}

/* ---- project detail page 2026 ---- */
.pypd-hero {
  position: relative;
  overflow: hidden;
  padding: 96px 0 108px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(45, 45, 115, .96), rgba(0, 113, 188, .94) 56%, rgba(24, 169, 161, .96)),
    radial-gradient(circle at 18% 20%, rgba(242, 195, 25, .26), transparent 34%);
}

.pypd-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, .08) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .08) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: .35;
}

.pypd-hero::after {
  content: "";
  position: absolute;
  right: -180px;
  bottom: -260px;
  width: 660px;
  height: 660px;
  border: 34px solid rgba(255, 255, 255, .14);
  border-radius: 50%
}

.pypd-hero-inner {
  position: relative;
  z-index: 1
}

.pypd-hero .py-breadcrumb a, .pypd-hero .py-breadcrumb span {
  color: rgba(255, 255, 255, .84)
}

.pypd-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 520px);
  gap: 42px;
  align-items: center;
  margin-top: 30px
}

.pypd-kicker, .pypd-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 34px;
  padding: 8px 13px;
  border-radius: 999px;
  background: #ECFBF8;
  color: #0071BC;
  font: 900 11px/1 "Roboto", Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.pypd-kicker {
  background: rgba(255, 255, 255, .14);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .2);
  backdrop-filter: blur(10px)
}

.pypd-kicker-icon, .pypd-label-icon, .pypd-icon {
  width: 22px;
  height: 22px;
  object-fit: contain;
  flex: 0 0 auto
}

.pypd-kicker-icon {
  filter: brightness(0) invert(1)
}

.pypd-label-icon, .pypd-icon, .pypd-highlight-icon {
  filter: brightness(0) saturate(100%) invert(35%) sepia(96%) saturate(1283%) hue-rotate(176deg) brightness(89%) contrast(96%)
}

.pypd-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 20px 0 18px
}

.pypd-sector, .pypd-status, .pypd-featured {
  display: inline-flex;
  align-items: center;
  min-height: 31px;
  padding: 8px 12px;
  border-radius: 999px;
  font: 900 10px/1 "Roboto", Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: .07em;
  box-shadow: 0 10px 22px rgba(0, 0, 0, .12);
}

.pypd-sector {
  background: #fff;
  color: #2D2D73
}

.pypd-status {
  background: #EEF0F4;
  color: #383658
}

.pypd-status.active {
  background: #ECFBF8;
  color: #0B837E
}

.pypd-status.upcoming {
  background: #EEF7FF;
  color: #0071BC
}

.pypd-status.completed {
  background: #F8FAFC;
  color: #475467
}

.pypd-status.on_hold {
  background: #FFF8DC;
  color: #9B7500
}

.pypd-featured {
  background: #F2C319;
  color: #2D2D73
}

.pypd-hero h1 {
  max-width: 920px;
  margin: 0 0 18px;
  font-family: "Bristone PY", var(--font-heading);
  font-size: clamp(52px, 7vw, 98px);
  line-height: .94;
  letter-spacing: 0;
  text-transform: uppercase
}

.pypd-hero p {
  max-width: 760px;
  margin: 0;
  font: 500 18px/1.68 "Roboto", Arial, sans-serif;
  color: rgba(255, 255, 255, .9)
}

.pypd-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 30px
}

.pypd-mini-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 32px
}

.pypd-mini-facts span {
  display: grid;
  gap: 7px;
  align-content: start;
  min-height: 132px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 22px;
  background: rgba(255, 255, 255, .12);
  backdrop-filter: blur(10px)
}

.pypd-mini-facts img {
  width: 28px;
  height: 28px;
  filter: brightness(0) invert(1)
}

.pypd-mini-facts strong {
  font: 900 10px/1 "Roboto", Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(255, 255, 255, .72)
}

.pypd-mini-facts em {
  font: 800 14px/1.35 "Roboto", Arial, sans-serif;
  color: #fff;
  font-style: normal
}

.pypd-hero-media {
  position: relative;
  margin: 0;
  min-height: 500px;
  border-radius: 34px;
  overflow: hidden;
  background: #2D2D73;
  box-shadow: 0 32px 78px rgba(0, 0, 0, .25);
  transform: rotate(1.4deg);
}

.pypd-hero-media::before {
  content: "";
  position: absolute;
  inset: 18px -18px -18px 18px;
  border: 3px solid rgba(242, 195, 25, .52);
  border-radius: 34px;
  z-index: -1
}

.pypd-hero-media img {
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
  display: block;
  filter: saturate(1.06) contrast(1.03)
}

.pypd-media-placeholder {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  min-height: 500px;
  font-family: "Bristone PY", var(--font-heading);
  font-size: 90px;
  color: #fff;
  background: linear-gradient(135deg, #2D2D73, #0071BC, #18A9A1)
}

.pypd-content-section, .pypd-related-section {
  background: #F7FBF8
}

.pypd-layout {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: 28px;
  align-items: start
}

.pypd-facts, .pypd-story, .pypd-related-card {
  border: 1px solid rgba(0, 113, 188, .14);
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 22px 58px rgba(45, 45, 115, .08);
}

.pypd-facts {
  position: sticky;
  top: 110px;
  border-radius: 30px;
  padding: 26px
}

.pypd-facts h2 {
  margin: 18px 0 20px;
  font: 900 30px/1.05 "Roboto", Arial, sans-serif;
  color: #2D2D73;
  letter-spacing: 0
}

.pypd-fact-list {
  margin: 0;
  display: grid;
  gap: 0
}

.pypd-fact-list div {
  padding: 14px 0;
  border-top: 1px solid rgba(0, 113, 188, .12)
}

.pypd-fact-list dt {
  font: 900 10px/1 "Roboto", Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #0071BC
}

.pypd-fact-list dd {
  margin: 6px 0 0;
  font: 800 14px/1.38 "Roboto", Arial, sans-serif;
  color: #2D2D73
}

.pypd-donor-logo {
  display: block;
  max-height: 32px;
  max-width: 140px;
  object-fit: contain;
  margin-bottom: 8px;
}

.pypd-highlight {
  display: grid;
  gap: 7px;
  margin-top: 20px;
  padding: 20px;
  border-radius: 22px;
  background: linear-gradient(135deg, #2D2D73, #0071BC 70%, #18A9A1);
  color: #fff;
}

.pypd-highlight-icon {
  width: 34px;
  height: 34px;
  filter: brightness(0) invert(1)
}

.pypd-highlight strong, .pypd-budget strong, .pypd-sdgs strong {
  font: 900 10px/1.2 "Roboto", Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: .08em
}

.pypd-highlight span {
  font: 900 34px/1 "Roboto", Arial, sans-serif
}

.pypd-budget {
  margin-top: 14px;
  padding: 16px;
  border-radius: 18px;
  background: #FFF8DC;
  color: #2D2D73
}

.pypd-budget strong {
  display: block;
  color: #8B6B00
}

.pypd-budget span {
  display: block;
  margin-top: 7px;
  font: 900 19px/1.2 "Roboto", Arial, sans-serif
}

.pypd-sdgs {
  margin-top: 18px;
  color: #2D2D73
}

.pypd-sdgs strong {
  display: block;
  color: #0071BC;
  margin-bottom: 9px
}

.pypd-sdgs div, .pypd-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px
}

.pypd-sdgs span, .pypd-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 7px 11px;
  border-radius: 999px;
  background: #ECFBF8;
  color: #2D2D73;
  font: 900 11px/1 "Roboto", Arial, sans-serif
}

.pypd-story {
  border-radius: 34px;
  padding: 34px
}

.pypd-story h2 {
  margin: 20px 0 14px;
  font-family: "Bristone PY", var(--font-heading);
  font-size: clamp(36px, 5vw, 68px);
  line-height: 1;
  text-transform: uppercase;
  color: #2D2D73
}

.pypd-lead {
  margin: 0 0 22px;
  font: 500 18px/1.68 "Roboto", Arial, sans-serif;
  color: #4b5563
}

.pypd-rich {
  font: 400 16px/1.82 "Roboto", Arial, sans-serif;
  color: #344054
}

.pypd-rich h2, .pypd-rich h3, .pypd-rich h4 {
  font-family: "Roboto", Arial, sans-serif;
  color: #2D2D73;
  margin: 30px 0 12px;
  letter-spacing: 0
}

.pypd-rich h2 {
  font-size: 30px;
  line-height: 1.14;
  font-weight: 900
}

.pypd-rich h3 {
  font-size: 23px;
  line-height: 1.2;
  font-weight: 900
}

.pypd-rich h4 {
  font-size: 18px;
  line-height: 1.25;
  font-weight: 900
}

.pypd-rich p {
  margin: 0 0 18px
}

.pypd-rich ul, .pypd-rich ol {
  padding-left: 24px;
  margin: 0 0 20px
}

.pypd-rich li {
  margin-bottom: 8px
}

.pypd-rich blockquote {
  margin: 24px 0;
  padding: 18px 20px;
  border-left: 5px solid #18A9A1;
  border-radius: 0 18px 18px 0;
  background: #F3FBFA;
  color: #2D2D73;
  font-weight: 700
}

.pypd-rich img {
  max-width: 100%;
  height: auto;
  border-radius: 22px
}

.pypd-list-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 32px
}

.pypd-list-card {
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: 22px;
  border-radius: 24px;
  background: #F7FBF8;
  border: 1px solid rgba(0, 113, 188, .14)
}

.pypd-list-card::before {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  top: 0;
  height: 5px;
  border-radius: 0 0 999px 999px;
  background: linear-gradient(90deg, #0071BC, #18A9A1, #F2C319)
}

.pypd-list-card>span {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: #fff;
  margin-bottom: 15px;
  box-shadow: 0 10px 22px rgba(45, 45, 115, .08)
}

.pypd-list-card img {
  width: 42px;
  height: 42px;
  object-fit: contain
}

.pypd-list-card h3 {
  font: 900 20px/1.12 "Roboto", Arial, sans-serif;
  color: #2D2D73;
  margin: 0 0 13px
}

.pypd-list-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px
}

.pypd-list-card li {
  position: relative;
  padding-left: 19px;
  font: 400 14px/1.58 "Roboto", Arial, sans-serif;
  color: #4b5563
}

.pypd-list-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .72em;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #18A9A1
}

.pypd-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 30px
}

.pypd-gallery figure {
  margin: 0;
  overflow: hidden;
  border-radius: 22px;
  background: #2D2D73
}

.pypd-gallery img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  transition: transform .35s ease
}

.pypd-gallery figure:hover img {
  transform: scale(1.04)
}

.pypd-tags {
  margin-top: 28px
}

.pypd-section-head {
  max-width: 820px;
  margin-bottom: 32px
}

.pypd-section-head h2 {
  margin: 18px 0 0;
  font-family: "Bristone PY", var(--font-heading);
  font-size: clamp(38px, 5.6vw, 72px);
  line-height: 1;
  text-transform: uppercase;
  color: #2D2D73
}

.pypd-related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px
}

.pypd-related-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 28px;
  text-decoration: none;
  color: inherit;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease
}

.pypd-related-card:hover {
  transform: translateY(-5px);
  border-color: rgba(24, 169, 161, .34);
  box-shadow: 0 28px 64px rgba(45, 45, 115, .12)
}

.pypd-related-card figure {
  position: relative;
  margin: 0;
  height: 214px;
  background: #2D2D73;
  overflow: hidden
}

.pypd-related-card figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .35s ease
}

.pypd-related-card:hover figure img {
  transform: scale(1.04)
}

.pypd-related-card figure span {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  font-family: "Bristone PY", var(--font-heading);
  font-size: 54px;
  color: #fff;
  background: linear-gradient(135deg, #2D2D73, #0071BC, #18A9A1)
}

.pypd-related-card div {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex: 1
}

.pypd-related-sector {
  align-self: flex-start;
  margin-bottom: 13px;
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: #ECFBF8;
  color: #0071BC;
  font: 900 10px/1 "Roboto", Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: .07em
}

.pypd-related-card h3 {
  font: 900 22px/1.15 "Roboto", Arial, sans-serif;
  color: #2D2D73;
  margin: 0 0 11px
}

.pypd-related-card p {
  font: 400 14px/1.62 "Roboto", Arial, sans-serif;
  color: #4b5563;
  margin: 0
}

.pypd-related-card strong {
  margin-top: auto;
  padding-top: 18px;
  font: 900 12px/1 "Roboto", Arial, sans-serif;
  color: #0071BC;
  text-transform: uppercase;
  letter-spacing: .07em
}

/* ---- responsive ---- */
@media (max-width:1080px) {
  .pyh-hero-grid {
    grid-template-columns: 1fr;
    gap: 46px
  }

  .pyh-hero-copy {
    position: relative;
    max-width: 900px
  }

  .pyh-hero-title {
    width: auto;
    max-width: 820px;
    margin: 24px 0 22px
  }

  .pyh-hero-visual {
    margin-left: 0
  }

  .pyh-hero-media-board {
    min-height: auto;
    max-width: 760px
  }

  .pyh-hero-photo-main {
    height: 440px;
    min-height: 360px
  }

  .pyh-counter-grid {
    grid-template-columns: repeat(3, 1fr)
  }

  .pyh-theme-strip {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px
  }

  .pyh-theme-item {
    min-height: auto;
    padding: 10px 18px 24px;
    border-left: 0 !important
  }

  .pyh-theme-item:not(:nth-child(3n+1)) {
    border-left: 3px solid rgba(56, 54, 88, .45) !important
  }

  .pyh-theme-item h3 {
    font-size: clamp(25px, 3.4vw, 34px)
  }

  .pyw-theme-pills {
    grid-template-columns: repeat(3, minmax(0, 1fr))
  }

  .py-profile-grid, .py-profile-grid.reverse {
    grid-template-columns: 1fr
  }

  .py-profile-register-grid, .py-profile-objective-row {
    grid-template-columns: repeat(2, minmax(0, 1fr))
  }

  .py-profile-foundation-grid, .py-profile-foundation-grid.mission-vision-only, .py-profile-two-col, .py-profile-intro-grid, .py-profile-history-grid {
    grid-template-columns: 1fr
  }

  .py-profile-department-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr))
  }

  .py-profile-governance .py-profile-governance-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr))
  }

  .py-profile-intro-visual {
    min-height: 500px;
    max-width: 700px;
    margin-inline: auto
  }

  .py-profile-intro-sheet {
    min-height: auto
  }

  .py-profile-arc-photo {
    left: -90px;
    top: -96px;
    width: 760px;
    max-width: 82vw;
    height: 390px
  }

  .py-profile-arc-brand {
    top: 260px;
    width: 690px;
    max-width: 78vw
  }

  .py-profile-corner-pattern {
    right: 12px;
    transform: scale(.82);
    transform-origin: top right
  }

  .py-profile-intro-content {
    grid-template-columns: 1fr;
    width: min(760px, calc(100% - 44px));
    padding-top: 400px
  }

  .py-profile-logo-lockup {
    padding-top: 0;
    justify-content: flex-start
  }

  .py-profile-logo-lockup img {
    width: 210px
  }

  .py-profile-intro-copy {
    text-align: left;
    max-width: none
  }

  .py-profile-intro-badge, .py-profile-intro-badge-svg {
    margin-left: 0;
    margin-right: 0
  }

  .py-profile-legal-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 14px
  }

  .pyh-objectives-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
    min-height: auto
  }

  .pyh-objective-card {
    width: min(100%, 300px)
  }

  .pyh-objectives-wave-a, .pyh-objectives-wave-b {
    top: 180px;
    height: 420px
  }

  .pyi-stat-grid, .pyi-sector-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr))
  }

  .pyi-network-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr))
  }

  .pyi-footprint-grid {
    grid-template-columns: 1fr
  }

  .pyp-logo-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr))
  }

  .pyp-inquiry-grid {
    grid-template-columns: 1fr
  }

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

  .pypj-grid.featured .pypj-card:first-child {
    grid-column: span 2
  }

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

  .pypubd-hero-grid, .pypubd-layout {
    grid-template-columns: 1fr
  }

  .pypubd-sidebar {
    position: relative;
    top: auto
  }

  .pypubd-related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr))
  }

  .pyn-grid, .pyn-featured-grid, .pynd-related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr))
  }

  .pynd-hero-grid, .pynd-layout {
    grid-template-columns: 1fr
  }

  .pynd-aside {
    position: relative;
    top: auto
  }

  .pye-layout {
    grid-template-columns: 1fr
  }

  .pye-detail-panel {
    position: relative;
    top: auto
  }

  .pypd-hero-grid, .pypd-layout {
    grid-template-columns: 1fr
  }

  .pypd-facts {
    position: relative;
    top: auto
  }

  .pypd-related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr))
  }
}

@media (max-width:860px) {
  .pyh-hero-advanced {
    min-height: auto
  }

  .pyh-hero-shell {
    padding-top: 64px;
    padding-bottom: 28px
  }

  .pyh-hero-grid {
    gap: 38px
  }

  .pyh-hero-statbar {
    grid-template-columns: 1fr;
    gap: 10px
  }

  .pyh-mission-grid {
    grid-template-columns: 1fr;
    gap: 34px
  }

  .pyh-project-grid, .pyh-news-grid {
    grid-template-columns: 1fr
  }

  .pyh-theme-strip {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px
  }

  .pyh-theme-item:not(:nth-child(3n+1)) {
    border-left: 0 !important
  }

  .pyh-theme-item:nth-child(even) {
    border-left: 3px solid rgba(56, 54, 88, .4) !important
  }

  .pyh-theme-heading h2 {
    font-size: clamp(26px, 6vw, 44px)
  }

  .pyw-theme-pills {
    grid-template-columns: repeat(2, minmax(0, 1fr))
  }

  .pyw-theme-pill {
    min-height: 250px
  }

  .py-profile-heading {
    font-size: clamp(30px, 7vw, 46px)
  }

  .py-profile-department-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr))
  }

  .pyh-evidence-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .pyh-objectives {
    padding: 64px 0 76px
  }

  .pyh-objectives-row {
    gap: 22px
  }

  .pyh-objective-card {
    width: min(100%, 270px);
    padding: 28px
  }

  .pyh-objective-card p {
    font-size: 16px
  }

  .pyi-hero {
    padding: 72px 0 82px
  }

  .pyi-hero h1 {
    font-size: clamp(46px, 12vw, 74px)
  }

  .pyi-hero p {
    font-size: 17px
  }

  .pyi-footprint-card {
    grid-template-columns: 72px 1fr;
    padding: 24px
  }

  .pyi-footprint-icon {
    width: 64px;
    height: 64px
  }

  .pyp-hero {
    padding: 72px 0 82px
  }

  .pyp-hero h1 {
    font-size: clamp(46px, 12vw, 74px)
  }

  .pyp-hero p {
    font-size: 17px
  }

  .pyp-logo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr))
  }

  .pyp-network-grid {
    grid-template-columns: 1fr
  }

  .pypj-hero {
    padding: 72px 0 82px
  }

  .pypj-hero h1 {
    font-size: clamp(46px, 12vw, 74px)
  }

  .pypj-hero p {
    font-size: 17px
  }

  .pypj-tools {
    align-items: flex-start
  }

  .pypj-search {
    max-width: none;
    width: 100%
  }

  .pypj-count {
    width: 100%;
    margin-left: 0
  }

  .pypub-hero {
    padding: 72px 0 82px
  }

  .pypub-hero h1 {
    font-size: clamp(46px, 12vw, 74px)
  }

  .pypub-hero p {
    font-size: 17px
  }

  .pypub-tools {
    align-items: flex-start
  }

  .pypub-search {
    max-width: none;
    width: 100%
  }

  .pypub-count {
    width: 100%;
    margin-left: 0
  }

  .pypubd-hero {
    padding: 72px 0 82px
  }

  .pypubd-hero h1 {
    font-size: clamp(42px, 11vw, 70px)
  }

  .pypubd-hero p {
    font-size: 17px
  }

  .pypubd-cover, .pypubd-cover img {
    min-height: 360px
  }

  .pypubd-admin-bar-inner {
    align-items: flex-start;
    flex-direction: column;
    padding: 10px 18px
  }

  .pyn-hero, .pynd-hero {
    padding: 72px 0 82px
  }

  .pyn-hero h1, .pynd-hero h1 {
    font-size: clamp(42px, 11vw, 70px)
  }

  .pyn-hero p, .pynd-hero p {
    font-size: 17px
  }

  .pyn-tools {
    align-items: flex-start
  }

  .pyn-search {
    max-width: none;
    width: 100%
  }

  .pyn-count {
    width: 100%;
    margin-left: 0
  }

  .pynd-cover, .pynd-cover img {
    min-height: 360px
  }

  .pye-hero {
    padding: 72px 0 82px
  }

  .pye-hero h1 {
    font-size: clamp(42px, 11vw, 70px)
  }

  .pye-hero p {
    font-size: 17px
  }

  .pypd-hero {
    padding: 72px 0 82px
  }

  .pypd-hero-grid {
    gap: 34px
  }

  .pypd-hero h1 {
    font-size: clamp(46px, 12vw, 74px)
  }

  .pypd-hero p {
    font-size: 17px
  }

  .pypd-hero-media, .pypd-hero-media img, .pypd-media-placeholder {
    min-height: 380px
  }

  .pypd-mini-facts, .pypd-list-grid, .pypd-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr))
  }

  .pypd-story {
    padding: 28px
  }
}

@media (max-width:540px) {
  .pyh-hero-shell {
    padding-inline: 22px
  }

  .pyh-hero-title {
    font-size: clamp(42px, 14vw, 64px)
  }

  .pyh-hero-ctas {
    display: grid
  }

  .pyh-hero-ctas .pyh-btn {
    justify-content: center
  }

  .pyh-hero-photo-main {
    height: 320px;
    min-height: 320px;
    transform: none
  }

  .pyh-hero-media-board::before, .pyh-hero-media-board::after, .pyh-hero-signal {
    display: none
  }

  .pyh-counter-grid {
    grid-template-columns: 1fr 1fr
  }

  .pyh-theme-heading {
    margin-bottom: 30px
  }

  .pyh-theme-heading h2 {
    min-height: 58px;
    padding: 12px 24px;
    font-size: clamp(23px, 7.4vw, 34px);
    white-space: nowrap
  }

  .pyh-theme-strip {
    grid-template-columns: 1fr
  }

  .pyh-theme-item {
    border-left: 0 !important;
    border-top: 2px solid rgba(56, 54, 88, .22);
    padding: 20px 10px 26px
  }

  .pyh-theme-item:nth-child(even) {
    border-left: 0 !important
  }

  .pyh-theme-item:first-child {
    border-top: 0
  }

  .pyh-theme-art {
    height: 138px;
    margin-bottom: 10px
  }

  .pyh-theme-art img {
    max-height: 132px;
    width: min(150px, 74%)
  }

  .pyh-theme-item h3 {
    min-height: auto;
    font-size: 32px
  }

  .pyh-theme-item p {
    max-width: 290px
  }

  .pyw-theme-pills {
    grid-template-columns: 1fr
  }

  .pyw-theme-pill {
    min-height: auto;
    padding: 22px 18px 24px
  }

  .pyw-theme-pill-icon {
    width: 96px;
    height: 96px
  }

  .pyw-program-head {
    align-items: flex-start
  }

  .pyw-program-head-icon {
    width: 64px;
    height: 64px;
    flex-basis: 64px;
    border-radius: 20px
  }

  .pyw-program-head-icon img {
    width: 48px;
    height: 48px
  }

  .py-profile-register-grid, .py-profile-objective-row, .py-profile-milestone-grid, .py-profile-safeguard-list, .py-profile-department-grid {
    grid-template-columns: 1fr
  }

  .py-profile-governance .py-profile-governance-grid {
    grid-template-columns: 1fr
  }

  .py-profile-intro-visual {
    min-height: 390px
  }

  .py-profile-arc-photo {
    left: -118px;
    top: -72px;
    width: 620px;
    max-width: 118vw;
    height: 300px
  }

  .py-profile-arc-brand {
    left: -130px;
    top: 208px;
    width: 560px;
    max-width: 112vw;
    height: 82px
  }

  .py-profile-corner-pattern {
    right: -22px;
    top: -14px;
    transform: scale(.58);
    transform-origin: top right
  }

  .py-profile-intro-content {
    width: calc(100% - 30px);
    padding-top: 318px;
    gap: 18px
  }

  .py-profile-logo-lockup {
    justify-content: center
  }

  .py-profile-logo-lockup img {
    width: 178px
  }

  .py-profile-intro-copy {
    text-align: center
  }

  .py-profile-intro-badge, .py-profile-intro-badge-svg {
    margin-left: auto;
    margin-right: auto
  }

  .py-profile-intro-badge span {
    font-size: 70px;
    -webkit-text-stroke-width: 1.4px;
    text-stroke-width: 1.4px
  }

  .py-profile-intro-badge strong {
    font-size: 30px
  }

  .py-profile-intro-copy p {
    font-size: 16px;
    line-height: 1.52;
    text-align: justify
  }

  .py-profile-legal-row {
    grid-template-columns: 1fr 1fr;
    gap: 18px 10px
  }

  .py-profile-legal-item img {
    width: 58px;
    height: 58px
  }

  .py-profile-legal-item strong {
    font-size: 11px
  }

  .py-profile-legal-item span {
    font-size: 10.5px
  }

  .py-profile-round-photo {
    width: 150px;
    border-width: 7px
  }

  .py-profile-logo-card {
    padding: 24px 20px 22px;
    border-radius: 26px
  }

  .py-profile-design-strip {
    left: 30px;
    top: 134px;
    height: 118px
  }

  .py-profile-design-strip span:nth-child(1) {
    right: 34px;
    height: 18px
  }

  .py-profile-design-strip span:nth-child(2) {
    left: 42px;
    height: 14px
  }

  .py-profile-design-strip span:nth-child(3) {
    right: 72px;
    height: 10px
  }

  .py-profile-map-full {
    padding: 0 6px;
    overflow-x: auto
  }

  .py-profile-map-img {
    min-width: 620px
  }

  .py-profile-core-values-showcase {
    padding: 24px 16px;
    border-radius: 26px
  }

  .py-profile-objective {
    aspect-ratio: auto;
    border-radius: 28px;
    min-height: 230px
  }

  .py-profile-foundation-grid {
    gap: 14px
  }

  .py-profile-title-pill {
    font-size: 18px
  }

  .pyh-objectives-heading h2 {
    min-width: 0;
    min-height: 54px;
    padding: 10px 30px;
    font-size: 30px
  }

  .pyh-objectives-row {
    grid-template-columns: 1fr;
    gap: 22px
  }

  .pyh-objective-card {
    width: min(100%, 292px);
    box-shadow: 8px 8px 0 #18A9A1, 0 18px 34px rgba(45, 45, 115, .1)
  }

  .pyh-objective-4 {
    box-shadow: 8px 8px 0 rgba(24, 169, 161, .42), 0 18px 34px rgba(45, 45, 115, .08)
  }

  .pyh-objectives-wave-a, .pyh-objectives-wave-b {
    display: none
  }

  .pyh-float {
    display: none
  }

  .pyi-hero {
    padding: 54px 0 64px
  }

  .pyi-kicker, .pyi-label {
    font-size: 10px
  }

  .pyi-section-head h2 {
    font-size: 36px
  }

  .pyi-stat-grid, .pyi-sector-grid, .pyi-network-grid {
    grid-template-columns: 1fr
  }

  .pyi-stat-card {
    min-height: 190px
  }

  .pyi-footprint-card {
    grid-template-columns: 1fr;
    text-align: left
  }

  .pyi-sector-top {
    align-items: flex-start
  }

  .pyi-sector-icon {
    width: 62px;
    height: 62px
  }

  .pyp-hero {
    padding: 54px 0 64px
  }

  .pyp-kicker, .pyp-label {
    font-size: 10px
  }

  .pyp-section-head h2 {
    font-size: 36px
  }

  .pyp-logo-grid {
    grid-template-columns: 1fr
  }

  .pyp-logo-card {
    min-height: 170px
  }

  .pyp-network-top {
    grid-template-columns: 58px 1fr
  }

  .pyp-network-top img {
    width: 58px;
    height: 58px
  }

  .pyp-form-card {
    padding: 22px
  }

  .pyp-hero-stats span {
    width: 100%;
    min-width: 0
  }

  .pypj-hero {
    padding: 54px 0 64px
  }

  .pypj-kicker, .pypj-label {
    font-size: 10px
  }

  .pypj-section-head h2 {
    font-size: 36px
  }

  .pypj-grid, .pypj-grid.featured {
    grid-template-columns: 1fr
  }

  .pypj-grid.featured .pypj-card:first-child {
    grid-column: span 1
  }

  .pypj-grid.featured .pypj-card:first-child .pypj-card-media {
    height: 224px
  }

  .pypj-card-body {
    padding: 20px
  }

  .pypj-hero-stats span {
    width: 100%;
    min-width: 0
  }

  .pypj-filter-bar {
    width: 100%;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 4px
  }

  .pypj-filter-bar button {
    white-space: nowrap
  }

  .pypj-cta {
    padding: 30px 20px;
    border-radius: 28px
  }

  .pypub-hero {
    padding: 54px 0 64px
  }

  .pypub-kicker, .pypub-label {
    font-size: 10px
  }

  .pypub-section-head h2 {
    font-size: 36px
  }

  .pypub-grid {
    grid-template-columns: 1fr
  }

  .pypub-card-body {
    padding: 20px
  }

  .pypub-hero-stats span {
    width: 100%;
    min-width: 0
  }

  .pypub-filter-bar {
    width: 100%;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 4px
  }

  .pypub-filter-bar button {
    white-space: nowrap
  }

  .pypub-card-actions {
    display: grid
  }

  .pypubd-hero {
    padding: 54px 0 64px
  }

  .pypubd-kicker, .pypubd-label {
    font-size: 10px
  }

  .pypubd-actions {
    display: grid
  }

  .pypubd-actions .py-btn {
    justify-content: center
  }

  .pypubd-cover {
    border-radius: 26px;
    transform: none
  }

  .pypubd-cover, .pypubd-cover img {
    min-height: 290px
  }

  .pypubd-story, .pypubd-panel {
    border-radius: 26px
  }

  .pypubd-story {
    padding: 22px
  }

  .pypubd-file-row {
    grid-template-columns: 30px minmax(0, 1fr) 34px;
    gap: 9px
  }

  .pypubd-file-del {
    grid-column: 2/-1;
    width: auto
  }

  .pypubd-related-grid {
    grid-template-columns: 1fr
  }

  .pypubd-section-head h2 {
    font-size: 36px
  }

  .pypubd-related-card figure {
    height: 196px
  }

  .pyn-hero, .pynd-hero {
    padding: 54px 0 64px
  }

  .pyn-kicker, .pyn-label, .pynd-kicker, .pynd-label {
    font-size: 10px
  }

  .pyn-section-head h2, .pynd-section-head h2 {
    font-size: 36px
  }

  .pyn-grid, .pyn-featured-grid, .pynd-related-grid {
    grid-template-columns: 1fr
  }

  .pyn-card figure, .pyn-card-featured figure, .pynd-related-card figure {
    height: 210px
  }

  .pyn-hero-stats span {
    width: 100%;
    min-width: 0
  }

  .pyn-filter-bar {
    width: 100%;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 4px
  }

  .pyn-filter-bar button {
    white-space: nowrap
  }

  .pynd-cover {
    border-radius: 26px;
    transform: none
  }

  .pynd-cover, .pynd-cover img {
    min-height: 290px
  }

  .pynd-article, .pynd-share-card, .pynd-back-card {
    border-radius: 26px
  }

  .pynd-article {
    padding: 22px
  }

  .pye-hero {
    padding: 54px 0 64px
  }

  .pye-kicker, .pye-label {
    font-size: 10px
  }

  .pye-section-head h2 {
    font-size: 36px
  }

  .pye-grid {
    grid-template-columns: 1fr
  }

  .pye-card figure {
    height: 210px
  }

  .pye-hero-stats span {
    width: 100%;
    min-width: 0
  }

  .pye-detail-panel {
    border-radius: 26px;
    padding: 22px
  }

  .pypd-hero {
    padding: 54px 0 64px
  }

  .pypd-kicker, .pypd-label {
    font-size: 10px
  }

  .pypd-badges {
    gap: 7px
  }

  .pypd-actions {
    display: grid
  }

  .pypd-actions .py-btn {
    justify-content: center
  }

  .pypd-mini-facts, .pypd-list-grid, .pypd-gallery, .pypd-related-grid {
    grid-template-columns: 1fr
  }

  .pypd-mini-facts span {
    min-height: 0
  }

  .pypd-hero-media {
    border-radius: 26px;
    transform: none
  }

  .pypd-hero-media, .pypd-hero-media img, .pypd-media-placeholder {
    min-height: 300px
  }

  .pypd-facts, .pypd-story {
    border-radius: 26px;
    padding: 22px
  }

  .pypd-facts h2 {
    font-size: 25px
  }

  .pypd-story h2, .pypd-section-head h2 {
    font-size: 36px
  }

  .pypd-related-card figure {
    height: 196px
  }
}

/* PY Work / Opportunities */
.pyw-page {
  background: #F7FBF8;
  color: #2D2D73;
  font-family: "Roboto", Arial, sans-serif
}

.pyw-hero {
  position: relative;
  overflow: hidden;
  padding: 90px 0 96px;
  color: #fff;
  background: linear-gradient(135deg, #2D2D73, #0071BC 62%, #18A9A1)
}

.pyw-hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, .08) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .08) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: .34
}

.pyw-hero:after {
  content: "";
  position: absolute;
  right: -180px;
  bottom: -240px;
  width: 620px;
  height: 620px;
  border: 32px solid rgba(255, 255, 255, .13);
  border-radius: 50%
}

.pyw-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 390px);
  gap: 36px;
  align-items: center
}

.pyw-kicker, .pyw-label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 34px;
  padding: 8px 13px;
  border-radius: 999px;
  background: #ECFBF8;
  color: #0071BC;
  font: 900 11px/1 "Roboto", Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: .08em
}

.pyw-kicker {
  background: rgba(255, 255, 255, .14);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .22);
  backdrop-filter: blur(10px)
}

.pyw-kicker img, .pyw-label img, .pyw-card-icon img, .pyw-downloads img, .pyw-empty img {
  width: 21px;
  height: 21px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(35%) sepia(96%) saturate(1283%) hue-rotate(176deg) brightness(89%) contrast(96%)
}

.pyw-kicker img {
  filter: brightness(0) invert(1)
}

.pyw-hero h1 {
  max-width: 930px;
  margin: 22px 0 18px;
  font-family: "Bristone PY", var(--font-heading);
  font-size: clamp(48px, 7.2vw, 96px);
  line-height: .94;
  letter-spacing: 0;
  text-transform: uppercase
}

.pyw-hero p {
  max-width: 770px;
  margin: 0;
  font: 500 18px/1.65 "Roboto", Arial, sans-serif;
  color: rgba(255, 255, 255, .9)
}

.pyw-hero-card {
  display: grid;
  justify-items: start;
  gap: 10px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 30px;
  background: rgba(255, 255, 255, .12);
  box-shadow: 0 30px 70px rgba(0, 0, 0, .18);
  backdrop-filter: blur(12px)
}

.pyw-hero-card img {
  width: 58px;
  height: 58px;
  filter: brightness(0) invert(1)
}

.pyw-hero-card strong {
  font: 900 68px/1 "Roboto", Arial, sans-serif;
  color: #fff
}

.pyw-hero-card span {
  font: 900 13px/1 "Roboto", Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: .08em
}

.pyw-hero-card em {
  font: 400 14px/1.55 "Roboto", Arial, sans-serif;
  color: rgba(255, 255, 255, .8);
  font-style: normal
}

.pyw-main {
  padding: 64px 0 82px
}

.pyw-section-head {
  max-width: 820px;
  margin-bottom: 28px
}

.pyw-section-head h2, .pyw-detail h2, .pyw-submit h2 {
  margin: 16px 0 10px;
  font-family: "Bristone PY", var(--font-heading);
  font-size: clamp(38px, 5.4vw, 76px);
  line-height: .98;
  text-transform: uppercase;
  color: #2D2D73
}

.pyw-section-head p, .pyw-submit p {
  margin: 0;
  font: 400 16px/1.7 "Roboto", Arial, sans-serif;
  color: #667085
}

.pyw-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 0 0 28px
}

.pyw-tabs a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  border: 1px solid rgba(0, 113, 188, .16);
  border-radius: 999px;
  background: #fff;
  color: #2D2D73;
  padding: 9px 14px;
  text-decoration: none;
  font: 900 11px/1 "Roboto", Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: .04em
}

.pyw-tabs a.active {
  background: #2D2D73;
  color: #fff;
  border-color: #2D2D73
}

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

.pyw-card, .pyw-panel {
  border: 1px solid rgba(0, 113, 188, .14);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 22px 56px rgba(45, 45, 115, .08)
}

.pyw-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 24px;
  overflow: hidden;
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease
}

.pyw-card:before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 6px;
  background: linear-gradient(90deg, #0071BC, #18A9A1, #F2C319)
}

.pyw-card:hover {
  transform: translateY(-5px);
  border-color: rgba(24, 169, 161, .35);
  box-shadow: 0 28px 68px rgba(45, 45, 115, .12)
}

.pyw-card-icon {
  width: 58px;
  height: 58px;
  border-radius: 20px;
  background: #ECFBF8;
  display: grid;
  place-items: center;
  margin-bottom: 16px
}

.pyw-card-icon img {
  width: 34px;
  height: 34px
}

.pyw-card span {
  font: 900 10px/1 "Roboto", Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #0071BC
}

.pyw-card h3 {
  margin: 12px 0 10px;
  font: 900 24px/1.16 "Roboto", Arial, sans-serif;
  color: #2D2D73
}

.pyw-card p {
  margin: 0 0 18px;
  color: #667085;
  font: 400 14px/1.6 "Roboto", Arial, sans-serif
}

.pyw-card dl, .pyw-facts dl {
  display: grid;
  gap: 9px;
  margin: 0 0 20px
}

.pyw-card dl div, .pyw-facts dl div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  border-bottom: 1px solid rgba(0, 113, 188, .1);
  padding-bottom: 9px
}

.pyw-card dt, .pyw-facts dt {
  font: 900 10px/1.2 "Roboto", Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: #0071BC
}

.pyw-card dd, .pyw-facts dd {
  margin: 0;
  text-align: right;
  font: 800 13px/1.35 "Roboto", Arial, sans-serif;
  color: #2D2D73
}

.pyw-card-link, .pyw-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #0071BC, #18A9A1);
  color: #fff !important;
  text-decoration: none;
  font: 900 12px/1 "Roboto", Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: .05em;
  padding: 12px 17px;
  box-shadow: 0 14px 28px rgba(0, 113, 188, .18);
  cursor: pointer
}

.pyw-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 370px);
  gap: 24px;
  align-items: start
}

.pyw-detail, .pyw-facts, .pyw-submit {
  padding: 28px
}

.pyw-org {
  margin: 0 0 18px;
  color: #667085;
  font-weight: 700
}

.pyw-share {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 26px
}

.pyw-share a {
  display: inline-flex;
  border: 1px solid rgba(0, 113, 188, .14);
  border-radius: 999px;
  background: #fff;
  color: #2D2D73;
  text-decoration: none;
  font: 900 11px/1 "Roboto", Arial, sans-serif;
  padding: 9px 12px
}

.pyw-rich h2 {
  font: 900 24px/1.2 "Roboto", Arial, sans-serif;
  color: #0071BC;
  border-top: 1px solid rgba(0, 113, 188, .12);
  padding-top: 22px;
  margin-top: 28px
}

.pyw-rich h3 {
  font: 900 19px/1.3 "Roboto", Arial, sans-serif;
  color: #2D2D73;
  margin-top: 20px
}

.pyw-rich p, .pyw-rich li {
  font: 400 16px/1.72 "Roboto", Arial, sans-serif;
  color: #334155
}

.pyw-side {
  position: sticky;
  top: 108px
}

.pyw-facts h2 {
  margin: 0 0 18px;
  font: 900 24px/1.15 "Roboto", Arial, sans-serif;
  color: #2D2D73
}

.pyw-facts h3 {
  margin: 20px 0 10px;
  font: 900 13px/1 "Roboto", Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: #0071BC
}

.pyw-downloads {
  display: grid;
  gap: 9px
}

.pyw-downloads a {
  display: flex;
  align-items: center;
  gap: 9px;
  border-radius: 16px;
  background: #ECFBF8;
  color: #2D2D73;
  text-decoration: none;
  font: 900 13px/1.25 "Roboto", Arial, sans-serif;
  padding: 12px
}

.pyw-note {
  margin: 18px 0 0;
  border-left: 4px solid #18A9A1;
  border-radius: 14px;
  background: #F7FBF8;
  padding: 13px;
  color: #334155;
  font: 500 14px/1.55 "Roboto", Arial, sans-serif
}

.pyw-submit {
  margin-top: 26px
}

.pyw-submit-head {
  max-width: 820px;
  margin-bottom: 22px
}

.pyw-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px
}

.pyw-form .full {
  grid-column: 1/-1
}

.pyw-form label {
  display: block;
  margin-bottom: 7px;
  font: 900 12px/1 "Roboto", Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: #2D2D73
}

.pyw-form input, .pyw-form select, .pyw-form textarea {
  width: 100%;
  border: 1px solid rgba(0, 113, 188, .18);
  border-radius: 16px;
  background: #fff;
  color: #2D2D73;
  padding: 13px 14px;
  font: 500 15px/1.35 "Roboto", Arial, sans-serif
}

.pyw-form input:focus, .pyw-form select:focus, .pyw-form textarea:focus {
  outline: 3px solid rgba(24, 169, 161, .14);
  border-color: #18A9A1
}

.pyw-form button {
  grid-column: 1/-1;
  justify-self: start
}

.pyw-trap {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important
}

.pyw-alert {
  border-radius: 16px;
  padding: 13px 15px;
  margin: 0 0 18px;
  font: 800 14px/1.45 "Roboto", Arial, sans-serif
}

.pyw-alert.success {
  background: #dcfce7;
  color: #166534
}

.pyw-alert.error {
  background: #fee2e2;
  color: #991b1b
}

.pyw-empty {
  display: grid;
  justify-items: center;
  gap: 10px;
  text-align: center;
  border: 1px dashed rgba(0, 113, 188, .28);
  border-radius: 28px;
  background: #fff;
  padding: 52px 20px
}

.pyw-empty img {
  width: 46px;
  height: 46px
}

.pyw-empty h2 {
  margin: 0;
  color: #2D2D73
}

.pyw-empty p {
  margin: 0;
  color: #667085
}

@media(max-width:980px) {
  .pyw-hero-grid, .pyw-detail-layout {
    grid-template-columns: 1fr
  }

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

  .pyw-side {
    position: static
  }
}

@media(max-width:680px) {
  .pyw-hero {
    padding: 64px 0
  }

  .pyw-grid, .pyw-form {
    grid-template-columns: 1fr
  }

  .pyw-detail, .pyw-facts, .pyw-submit {
    padding: 22px
  }

  .pyw-card dl div, .pyw-facts dl div {
    display: block
  }

  .pyw-card dd, .pyw-facts dd {
    text-align: left;
    margin-top: 4px
  }
}

/* PY Contact */
.pyc-page {
  background: #F7FBF8;
  color: #2D2D73;
  font-family: "Roboto", Arial, sans-serif
}

.pyc-hero {
  position: relative;
  overflow: hidden;
  padding: 88px 0 98px;
  color: #fff;
  background: linear-gradient(135deg, #2D2D73, #0071BC 62%, #18A9A1)
}

.pyc-hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, .08) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .08) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: .34
}

.pyc-hero:after {
  content: "";
  position: absolute;
  right: -190px;
  bottom: -260px;
  width: 660px;
  height: 660px;
  border: 34px solid rgba(255, 255, 255, .14);
  border-radius: 50%
}

.pyc-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(290px, 390px);
  gap: 38px;
  align-items: center
}

.pyc-hero .py-breadcrumb a, .pyc-hero .py-breadcrumb span {
  color: rgba(255, 255, 255, .84)
}

.pyc-kicker, .pyc-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 34px;
  padding: 8px 13px;
  border-radius: 999px;
  background: #ECFBF8;
  color: #0071BC;
  font: 900 11px/1 "Roboto", Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: .08em
}

.pyc-kicker {
  margin-top: 24px;
  background: rgba(255, 255, 255, .14);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .22);
  backdrop-filter: blur(10px)
}

.pyc-kicker img, .pyc-label img, .pyc-channel img, .pyc-office-icon img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(35%) sepia(96%) saturate(1283%) hue-rotate(176deg) brightness(89%) contrast(96%)
}

.pyc-kicker img {
  filter: brightness(0) invert(1)
}

.pyc-hero h1 {
  max-width: 920px;
  margin: 22px 0 18px;
  font-family: "Bristone PY", var(--font-heading);
  font-size: clamp(50px, 7.4vw, 100px);
  line-height: .94;
  text-transform: uppercase;
  color: #fff
}

.pyc-hero p {
  max-width: 780px;
  margin: 0;
  font: 500 18px/1.68 "Roboto", Arial, sans-serif;
  color: rgba(255, 255, 255, .9)
}

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

.pyc-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #0071BC, #18A9A1);
  color: #fff !important;
  text-decoration: none;
  font: 900 12px/1 "Roboto", Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: .05em;
  padding: 13px 18px;
  box-shadow: 0 14px 30px rgba(0, 113, 188, .22);
  cursor: pointer
}

.pyc-button.secondary {
  background: #fff;
  color: #2D2D73 !important;
  box-shadow: 0 16px 34px rgba(0, 0, 0, .14)
}

.pyc-hero-card {
  display: grid;
  gap: 12px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 30px;
  background: rgba(255, 255, 255, .12);
  box-shadow: 0 30px 70px rgba(0, 0, 0, .18);
  backdrop-filter: blur(12px)
}

.pyc-hero-card img {
  width: 60px;
  height: 60px;
  filter: brightness(0) invert(1)
}

.pyc-hero-card strong {
  font: 900 26px/1.1 "Roboto", Arial, sans-serif;
  color: #fff
}

.pyc-hero-card span {
  font: 800 12px/1.5 "Roboto", Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: rgba(255, 255, 255, .82)
}

.pyc-section {
  padding: 68px 0 78px
}

.pyc-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 520px);
  gap: 28px;
  align-items: start
}

.pyc-info>h2, .pyc-form-card h2, .pyc-map-head h2 {
  margin: 16px 0 12px;
  font-family: "Bristone PY", var(--font-heading);
  font-size: clamp(38px, 5.3vw, 74px);
  line-height: .98;
  text-transform: uppercase;
  color: #2D2D73
}

.pyc-info>p, .pyc-form-card>p {
  max-width: 760px;
  margin: 0 0 24px;
  font: 400 16px/1.7 "Roboto", Arial, sans-serif;
  color: #667085
}

.pyc-channel-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 24px 0
}

.pyc-channel {
  display: grid;
  gap: 8px;
  min-height: 150px;
  padding: 18px;
  border: 1px solid rgba(0, 113, 188, .14);
  border-radius: 24px;
  background: #fff;
  text-decoration: none;
  box-shadow: 0 18px 46px rgba(45, 45, 115, .07)
}

.pyc-channel img {
  width: 30px;
  height: 30px
}

.pyc-channel span {
  font: 900 10px/1 "Roboto", Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #0071BC
}

.pyc-channel strong {
  font: 900 15px/1.35 "Roboto", Arial, sans-serif;
  color: #2D2D73;
  word-break: break-word
}

.pyc-offices {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px
}

.pyc-office {
  display: flex;
  gap: 14px;
  padding: 19px;
  border: 1px solid rgba(0, 113, 188, .14);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 46px rgba(45, 45, 115, .07)
}

.pyc-office-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 18px;
  background: #ECFBF8
}

.pyc-office-icon img {
  width: 30px;
  height: 30px
}

.pyc-office span {
  display: block;
  font: 900 10px/1 "Roboto", Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #0071BC
}

.pyc-office h3 {
  margin: 8px 0 7px;
  font: 900 24px/1.1 "Roboto", Arial, sans-serif;
  color: #2D2D73
}

.pyc-office p {
  margin: 0 0 10px;
  font: 400 14px/1.55 "Roboto", Arial, sans-serif;
  color: #667085
}

.pyc-office a {
  font: 900 11px/1 "Roboto", Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: #0071BC;
  text-decoration: none
}

.pyc-form-card {
  padding: 30px;
  border: 1px solid rgba(0, 113, 188, .14);
  border-radius: 30px;
  background: #fff;
  box-shadow: 0 26px 70px rgba(45, 45, 115, .1)
}

.pyc-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 15px
}

.pyc-form .full {
  grid-column: 1/-1
}

.pyc-form label {
  display: block;
  margin-bottom: 7px;
  font: 900 12px/1 "Roboto", Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: #2D2D73
}

.pyc-form label span {
  color: #0071BC
}

.pyc-form input, .pyc-form select, .pyc-form textarea {
  width: 100%;
  border: 1px solid rgba(0, 113, 188, .18);
  border-radius: 16px;
  background: #fff;
  color: #2D2D73;
  padding: 13px 14px;
  font: 500 15px/1.35 "Roboto", Arial, sans-serif
}

.pyc-form textarea {
  min-height: 148px;
  resize: vertical
}

.pyc-form input:focus, .pyc-form select:focus, .pyc-form textarea:focus {
  outline: 3px solid rgba(24, 169, 161, .14);
  border-color: #18A9A1
}

.pyc-form button {
  grid-column: 1/-1;
  justify-self: start
}

.pyc-trap {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important
}

.pyc-alert {
  grid-column: 1/-1;
  border-radius: 16px;
  padding: 13px 15px;
  font: 800 14px/1.45 "Roboto", Arial, sans-serif
}

.pyc-alert.success {
  background: #dcfce7;
  color: #166534
}

.pyc-alert.error {
  background: #fee2e2;
  color: #991b1b
}

.pyc-map-section {
  padding: 0 0 82px;
  background: #F7FBF8
}

.pyc-map-head {
  max-width: 850px;
  margin-bottom: 24px
}

.pyc-map-wrap {
  overflow: hidden;
  border: 1px solid rgba(0, 113, 188, .14);
  border-radius: 30px;
  background: #fff;
  box-shadow: 0 24px 64px rgba(45, 45, 115, .09)
}

.pyc-map-wrap iframe {
  display: block
}

.pyc-map-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  padding: 18px;
  background: #fff
}

.pyc-map-pills a {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  border-radius: 999px;
  background: #ECFBF8;
  color: #2D2D73;
  text-decoration: none;
  font: 900 11px/1 "Roboto", Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: .04em;
  padding: 9px 13px
}

@media(max-width:1080px) {
  .pyc-layout, .pyc-hero-grid {
    grid-template-columns: 1fr
  }

  .pyc-channel-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr))
  }
}

@media(max-width:760px) {
  .pyc-hero {
    padding: 62px 0
  }

  .pyc-channel-grid, .pyc-offices, .pyc-form {
    grid-template-columns: 1fr
  }

  .pyc-form-card {
    padding: 22px
  }

  .pyc-office {
    display: block
  }

  .pyc-office-icon {
    margin-bottom: 14px
  }
}