/* ========== Program strategy pages ========== */

.page-program {
  --pr-width: min(1200px, 94vw);
  --pr-pad: clamp(16px, 3vw, 28px);
  --pr-ink: #1a1d23;
  --pr-cream: #f5f3ed;
  background: #fff;
  color: var(--pr-ink);
}

.pr-shell {
  width: var(--pr-width);
  max-width: 100%;
  margin: 0 auto;
  padding-left: var(--pr-pad);
  padding-right: var(--pr-pad);
  box-sizing: border-box;
}

/* Keep site chrome white on program pages */
.page-program .site-header,
.page-program .site-header .header-bar {
  background: #fff;
}

.page-program .site-header {
  transition: transform 0.28s ease, opacity 0.22s ease;
}

.page-program.pr-scrolled .site-header {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}

/* Meta: breadcrumb + language (white, separate from dark hero) */
.pr-meta {
  background: #fff;
  padding: clamp(1rem, 2vw, 1.35rem) 0 1.15rem;
}

.pr-meta .pl-crumb {
  width: auto;
  margin: 0 0 0.75rem;
  padding: 0;
  background: transparent;
}

.pr-meta .pl-crumb ol {
  width: auto;
  margin: 0;
  padding: 0;
  color: #8a9098;
}

.pr-meta .pl-crumb a {
  color: #1a1d23;
  font-weight: 600;
}

.pr-meta .pl-crumb a:hover {
  color: var(--blue, #00558c);
}

.pr-meta .pl-crumb li:not(:last-child)::after {
  color: #c5c9cf;
}

.pr-meta .pl-crumb [aria-current="page"] {
  color: #8a9098;
}

.pr-lang {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  color: #5a616c;
}

.pr-lang a {
  color: #1a1d23;
  font-weight: 400;
  text-decoration: none;
}

.pr-lang a.is-active,
.pr-lang a[aria-current="true"] {
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.pr-lang-sep {
  margin: 0 0.35rem;
  opacity: 0.55;
}

/* Hero banner: dark module with title, goal, image */
.pr-hero {
  background: #2a2f36;
  color: #fff;
  padding: clamp(2rem, 4vw, 3rem) 0 clamp(2.5rem, 5vw, 3.5rem);
}

.pr-hero-top {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 1.5rem 2.5rem;
  align-items: start;
  margin-bottom: clamp(1.5rem, 3vw, 2.25rem);
}

.pr-hero-title {
  margin: 0;
  font-family: var(--font-sans);
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1.1;
  color: #fff;
}

.pr-hero-goal-label {
  margin: 0 0 0.55rem;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
}

.pr-hero-goal {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 1.08rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.92);
}

.pr-hero-media {
  margin: 0;
}

.pr-hero-media img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  border-radius: 4px;
}

/* Sections sticky nav — compact top bar while scrolling */
.pr-sections-anchor {
  position: relative;
}

.pr-sections {
  position: relative;
  z-index: 40;
  background: #fff;
  border-top: 1px solid #e8e6e0;
  border-bottom: 1px solid #e8e6e0;
}

.page-program.pr-scrolled .pr-sections {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 120;
  box-shadow: 0 1px 0 rgba(26, 29, 35, 0.06);
}

.pr-sections-inner {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.pr-sections details {
  position: static;
  width: auto;
  flex: 1;
  min-width: 0;
}

.pr-sections summary {
  list-style: none;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 56px;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  color: var(--pr-ink);
  user-select: none;
}

.pr-sections summary::-webkit-details-marker {
  display: none;
}

.pr-sections summary::after {
  content: "";
  width: 0.45em;
  height: 0.45em;
  margin-top: -0.15em;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.18s ease;
}

.pr-sections details[open] summary::after {
  margin-top: 0.15em;
  transform: rotate(-135deg);
}

.pr-sections-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 50;
  margin: 0;
  padding: 0;
  list-style: none;
  background: #f7f6f2;
  border-bottom: 1px solid #e4e2dc;
  box-shadow: 0 18px 40px rgba(26, 29, 35, 0.08);
  max-height: min(70vh, calc(100dvh - 4.5rem));
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

.pr-sections-menu li {
  border-bottom: 1px solid #e4e2dc;
}

.pr-sections-menu li:last-child {
  border-bottom: 0;
}

.pr-sections-menu a {
  display: grid;
  grid-template-columns: 2.4rem 1fr;
  gap: 0.85rem;
  align-items: baseline;
  width: var(--pr-width);
  max-width: 100%;
  margin: 0 auto;
  padding: 1.05rem var(--pr-pad);
  box-sizing: border-box;
  color: #2a2f36;
  text-decoration: none;
  transition: background 0.15s ease;
}

.pr-sections-menu a:hover,
.pr-sections-menu a.is-active {
  background: rgba(255, 255, 255, 0.55);
}

.pr-sec-num {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #8a9098;
}

.pr-sec-label {
  font-family: var(--font-serif);
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  font-weight: 400;
  line-height: 1.35;
  color: #2a2f36;
}

.pr-sections-menu a:hover .pr-sec-label,
.pr-sections-menu a.is-active .pr-sec-label {
  font-weight: 700;
}

/* At a glance */
.pr-glance {
  background: #fff;
  padding: clamp(2.75rem, 5vw, 4rem) 0;
  border-bottom: 1px solid #e4e6ea;
}

.pr-glance-grid {
  display: grid;
  grid-template-columns: minmax(10rem, 0.7fr) minmax(0, 1.6fr);
  gap: 2rem clamp(2.5rem, 5vw, 4.5rem);
  align-items: start;
}

.pr-glance-title {
  margin: 0;
  font-family: var(--font-sans);
  font-size: var(--title-section);
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.pr-glance ul {
  margin: 0;
  padding-left: 1.2rem;
}

.pr-glance li {
  margin: 0 0 1.15rem;
  font-family: var(--font-serif);
  font-size: 1.08rem;
  line-height: 1.65;
  color: #2a2f36;
}

.pr-glance li:last-child {
  margin-bottom: 0;
}

.pr-glance strong {
  font-weight: 700;
}

/* Strategy */
.pr-strategy {
  background: #fff;
  padding: clamp(2.75rem, 5vw, 4rem) 0;
  border-bottom: 1px solid #e4e6ea;
}

.pr-serif-title {
  margin: 0 0 1.5rem;
  font-family: var(--font-serif);
  font-size: clamp(1.85rem, 3vw, 2.4rem);
  font-weight: 400;
  line-height: 1.25;
}

.pr-strategy-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.35fr;
  gap: 1.75rem 2.5rem;
  align-items: start;
}

.pr-strategy-lead {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.45;
  color: var(--pr-ink);
}

.pr-strategy-item {
  margin: 0 0 1.5rem;
}

.pr-strategy-item:last-child {
  margin-bottom: 0;
}

.pr-strategy-grid > div > img {
  width: 100%;
  display: block;
  border-radius: 4px;
  margin: 0.5rem 0 1.5rem;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.pr-strategy-item h3 {
  margin: 0 0 0.45rem;
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 800;
}

.pr-strategy-item p {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  line-height: 1.65;
  color: #2a2f36;
}

.pr-feature-card {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 1rem 1.25rem;
  align-items: center;
  margin-top: 1.75rem;
  padding: 1rem;
  border: 1px solid #e4e6ea;
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
}

.pr-feature-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

.pr-feature-card h3 {
  margin: 0 0 0.4rem;
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 800;
}

.pr-feature-card p {
  margin: 0 0 0.45rem;
  font-family: var(--font-serif);
  font-size: 0.98rem;
  line-height: 1.45;
  color: #2a2f36;
}

.pr-feature-card span {
  font-family: var(--font-sans);
  font-weight: 600;
  color: var(--blue, #00558c);
  text-underline-offset: 3px;
  text-decoration: underline;
}

.pr-quote {
  margin: 2.25rem 0 0;
  padding: 1.75rem 0 0;
  border-top: 1px solid #e4e6ea;
}

.pr-quote blockquote {
  margin: 0 0 0.85rem;
  font-family: var(--font-sans);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.4;
  text-transform: uppercase;
  color: var(--pr-ink);
}

.pr-quote cite {
  display: block;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-style: normal;
  font-weight: 600;
  color: #4a515c;
}

.pr-quote cite span {
  display: block;
  margin-top: 0.15rem;
  font-weight: 400;
  color: #6a7078;
}

/* Grants */
.pr-grants {
  background: #fff;
  padding: clamp(2.75rem, 5vw, 4rem) 0;
}

.pr-section-title {
  margin: 0 0 1.75rem;
  font-family: var(--font-sans);
  font-size: var(--title-section);
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.pr-grants-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem 2rem;
  margin-bottom: 1.75rem;
}

.pr-grant h3 {
  margin: 0 0 0.4rem;
  font-family: var(--font-sans);
  font-size: 1.15rem;
  font-weight: 700;
}

.pr-grant a {
  font-family: var(--font-sans);
  font-weight: 600;
  color: var(--pr-ink);
  text-underline-offset: 3px;
}

.pr-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.7rem 1.5rem;
  border-radius: 8px;
  background: #2a2f36;
  color: #fff;
  font-family: var(--font-sans);
  font-weight: 700;
  text-decoration: none;
}

.pr-btn:hover {
  background: #111;
}

/* Dark newsletter */
.pr-subscribe {
  background: #2a2f36;
  padding: clamp(2.5rem, 5vw, 3.5rem) 0;
}

.pr-subscribe-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 1.5rem 2.25rem;
  align-items: center;
}

.pr-subscribe h2 {
  margin: 0 0 0.65rem;
  font-family: var(--font-sans);
  font-size: clamp(1.45rem, 2.4vw, 1.8rem);
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #fff;
}

.pr-subscribe p {
  margin: 0;
  max-width: 40ch;
  font-family: var(--font-sans);
  font-size: 1.02rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.9);
}

.pr-subscribe-form {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
}

.pr-subscribe-form input {
  flex: 1 1 180px;
  min-height: 52px;
  border: 0;
  border-radius: 8px 0 0 8px;
  padding: 0.7rem 1rem;
  font-family: var(--font-sans);
  font-size: 1rem;
}

.pr-subscribe-form button {
  min-height: 52px;
  border: 0;
  border-radius: 0 8px 8px 0;
  padding: 0.7rem 1.35rem;
  background: var(--yellow, #f5c400);
  color: #1a1d23;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
}

.pr-subscribe-legal {
  margin: 0.75rem 0 0 !important;
  max-width: none !important;
  font-size: 0.78rem !important;
  line-height: 1.5 !important;
  color: rgba(255, 255, 255, 0.65) !important;
}

.pr-subscribe-legal a {
  color: inherit;
}

/* Areas of focus */
.pr-focus {
  background: var(--pr-cream);
  padding: clamp(2.75rem, 5vw, 4rem) 0;
}

.pr-focus-lead {
  margin: -0.5rem 0 1.75rem;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: #2a2f36;
}

.pr-focus-item {
  border-top: 1px solid #d8dce2;
}

.pr-focus-item:last-child {
  border-bottom: 1px solid #d8dce2;
}

.pr-focus-btn {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(12rem, 0.85fr) auto 1.35fr;
  gap: 1rem 1.5rem;
  align-items: start;
  padding: 1.25rem 0;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
  color: inherit;
}

.pr-focus-btn h3 {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1.1rem;
  font-weight: 800;
}

.pr-focus-btn .pr-focus-icon {
  width: 1.05rem;
  height: 1.05rem;
  margin-top: 0.25rem;
  position: relative;
}

.pr-focus-icon::before,
.pr-focus-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background: currentColor;
  transform: translate(-50%, -50%);
}

.pr-focus-icon::before {
  width: 100%;
  height: 2px;
}

.pr-focus-icon::after {
  width: 2px;
  height: 100%;
  transition: opacity 0.2s ease;
}

.pr-focus-item.is-open .pr-focus-icon::after {
  opacity: 0;
}

.pr-focus-teaser {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 1.02rem;
  line-height: 1.6;
  color: #2a2f36;
}

.pr-focus-panel {
  display: none;
  padding: 0 0 1.35rem;
  max-width: 72ch;
  margin-left: auto;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  line-height: 1.7;
  color: #2a2f36;
}

.pr-focus-item.is-open .pr-focus-panel {
  display: block;
}

.pr-focus-panel p {
  margin: 0 0 0.85rem;
}

/* Why focus */
.pr-why {
  background: #fff;
  padding: clamp(2.75rem, 5vw, 4rem) 0;
}

.pr-why-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.35fr;
  gap: 1.75rem 2.5rem;
  align-items: start;
}

.pr-why-lead {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.45;
}

.pr-why-copy p {
  margin: 0 0 1rem;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  line-height: 1.7;
  color: #2a2f36;
}

.pr-why-copy img {
  width: min(100%, 320px);
  float: right;
  margin: 0 0 1rem 1.25rem;
  border-radius: 10px;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

/* Leadership carousel */
.pr-leaders {
  background: #fff;
  padding: 0 0 clamp(2.75rem, 5vw, 4rem);
}

.pr-leaders-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.pr-leaders-head .pr-serif-title {
  margin: 0;
}

.pr-leaders-nav {
  display: flex;
  gap: 0.35rem;
  flex-shrink: 0;
  padding-top: 0.2rem;
}

.pr-leaders-btn {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: #b0b5bb;
  cursor: pointer;
}

.pr-leaders-btn:hover:not(:disabled) {
  color: var(--pr-ink);
}

.pr-leaders-btn:disabled {
  opacity: 0.35;
  cursor: default;
}

.pr-leaders-btn svg {
  width: 28px;
  height: 28px;
}

.pr-leaders-viewport {
  overflow: hidden;
}

.pr-leaders-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.pr-leader {
  flex: 0 0 calc((100% - 3rem) / 3);
  min-width: 0;
}

.pr-leader img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: top center;
  border-radius: 10px;
  margin-bottom: 0.85rem;
  background: #dce8f2;
  display: block;
}

.pr-leader h3 {
  margin: 0 0 0.25rem;
  font-family: var(--font-sans);
  font-size: 1.1rem;
  font-weight: 800;
}

.pr-leader .pr-role {
  margin: 0 0 0.65rem;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.98rem;
  color: #6a7078;
}

.pr-leader p {
  margin: 0 0 0.75rem;
  font-family: var(--font-serif);
  font-size: 0.98rem;
  line-height: 1.55;
  color: #2a2f36;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.pr-leader a {
  font-family: var(--font-sans);
  font-weight: 600;
  color: var(--pr-ink);
  text-underline-offset: 3px;
}

/* Partners */
.pr-partners {
  background: var(--pr-cream);
  padding: clamp(2.75rem, 5vw, 4rem) 0;
}

.pr-partners-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem 1.75rem;
}

.pr-partner h3 {
  margin: 0 0 0.55rem;
  font-family: var(--font-sans);
  font-size: 1.15rem;
  font-weight: 800;
}

.pr-partner p {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 1.02rem;
  line-height: 1.6;
  color: #2a2f36;
}

/* Ideas */
.pr-ideas {
  background: #fff;
  padding: clamp(2.75rem, 5vw, 4rem) 0;
}

.pr-ideas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem 1.25rem;
}

.pr-idea {
  text-decoration: none;
  color: inherit;
}

.pr-idea img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 0.75rem;
  display: block;
}

.pr-idea .pr-eyebrow {
  display: block;
  margin-bottom: 0.35rem;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  color: #6a7078;
}

.pr-idea h3 {
  margin: 0 0 0.45rem;
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.pr-idea p {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 0.98rem;
  line-height: 1.55;
  color: #2a2f36;
}

/* Resources */
.pr-resources {
  background: #fff;
  padding: 0 0 clamp(2.75rem, 5vw, 4rem);
  border-top: 1px solid #e4e6ea;
}

.pr-resource {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem 2rem;
  align-items: start;
  padding: 1.5rem 0;
  border-bottom: 1px solid #e4e6ea;
}

.pr-resource h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font-sans);
  font-size: 1.15rem;
  font-weight: 800;
}

.pr-resource p {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 1.02rem;
  line-height: 1.6;
  color: #2a2f36;
}

.pr-resource a {
  font-family: var(--font-sans);
  font-weight: 600;
  white-space: nowrap;
  color: var(--pr-ink);
  text-underline-offset: 3px;
}

/* Other programs */
.pr-other {
  background: #fff;
  padding: 0 0 clamp(3rem, 6vw, 4.5rem);
}

.pr-other-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.35rem;
}

.pr-other a {
  text-decoration: none;
  color: inherit;
}

.pr-other img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 0.65rem;
  display: block;
}

.pr-other h3 {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.pr-top {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: #9aa0a8;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, color 0.15s ease, visibility 0.2s ease;
}

.pr-top span {
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 8px solid currentColor;
}

.pr-top:hover {
  color: #1a1d23;
}

.page-program.pr-scrolled .pr-top {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

@media (max-width: 1100px) {
  .pr-ideas-grid,
  .pr-other-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 960px) {
  .pr-leader {
    flex-basis: calc((100% - 1.5rem) / 2);
  }

  .pr-hero-top,
  .pr-glance-grid,
  .pr-strategy-grid,
  .pr-subscribe-inner,
  .pr-why-grid,
  .pr-focus-btn,
  .pr-grants-grid,
  .pr-partners-grid,
  .pr-resource {
    grid-template-columns: 1fr;
  }

  .pr-focus-btn .pr-focus-icon {
    order: -1;
  }

  .pr-why-copy img {
    float: none;
    width: 100%;
    max-width: 280px;
    margin: 0 0 1rem;
  }

  .pr-subscribe-form input {
    border-radius: 8px;
  }

  .pr-subscribe-form button {
    border-radius: 8px;
    width: 100%;
  }
}

@media (max-width: 640px) {
  .pr-ideas-grid,
  .pr-other-grid,
  .pr-partners-grid {
    grid-template-columns: 1fr;
  }

  .pr-leaders-head {
    flex-direction: column;
  }

  .pr-leader {
    flex-basis: 85%;
  }

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

@media (max-width: 480px) {
  .page-program {
    --pr-pad: 14px;
  }

  .pr-leader {
    flex-basis: 100%;
  }
}
