:root {
  --blue-950: #172d59;
  --blue-900: #1d376b;
  --blue-800: #1f5fa8;
  --blue-700: #2f78be;
  --gold-500: #c89b4a;
  --gold-300: #e5d1ab;
  --stone-100: #f5f4f1;
  --stone-200: #ebe9e3;
  --stone-300: #ddd9d0;
  --ink-900: #24304a;
  --ink-700: #58627a;
  --white: #ffffff;
  --shadow-soft: 0 18px 45px rgba(23, 45, 89, 0.08);
  --shadow-card: 0 12px 28px rgba(23, 45, 89, 0.12);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --content-width: 1160px;
  --home-content-width: 860px;
  --header-edge-space: clamp(20px, 4vw, 80px);
  --header-top-space: clamp(20px, 2vw, 36px);
  --header-bottom-space: clamp(8px, 0.9vw, 16px);
  --section-copy-size: 0.96rem;
  --section-copy-line: 1.55;
  --page-title-size: clamp(2.55rem, 4.3vw, 3.9rem);
  --section-title-size: clamp(2.7rem, 4.8vw, 4.1rem);
  --subsection-title-size: clamp(1.55rem, 2.3vw, 2.15rem);
  --card-title-size: 1.32rem;
  --section-space: clamp(4.25rem, 7vw, 6rem);
  --section-space-tight: clamp(3.25rem, 5.5vw, 4.5rem);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  color: var(--ink-900);
  background:
    radial-gradient(circle at top left, rgba(47, 120, 190, 0.08), transparent 30%),
    linear-gradient(180deg, #fcfcfb 0%, #f5f4f1 100%);
  line-height: 1.65;
}

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
}

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

.site-shell {
  width: min(calc(100% - 2rem), var(--content-width));
  margin: 0 auto;
}

.home-content-shell {
  width: min(calc(100% - 2rem), var(--home-content-width));
  margin: 0 auto;
}

.page-content-shell {
  width: min(calc(100% - 2rem), var(--home-content-width));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(29, 55, 107, 0.08);
  backdrop-filter: blur(14px);
}

.site-header .site-shell {
  width: calc(100% - (var(--header-edge-space) * 2));
  max-width: none;
}

body.home-page .site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: transparent;
  border-bottom: 0;
  backdrop-filter: none;
}

body.get-involved-page .site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: transparent;
  border-bottom: 0;
  backdrop-filter: none;
}

body.about-page {
  background: #f8f8f6;
}

body.content-page {
  background: #f8f8f6;
}

body.content-page .page-wrap {
  background: var(--white);
}

body.programs-page .page-wrap {
  background: var(--white);
}

body.news-page .page-wrap {
  background: var(--white);
}

.header-bar {
  position: relative;
  display: flex;
  align-items: flex-end;
  gap: 1.5rem;
  min-height: 82px;
  padding-top: var(--header-top-space);
  padding-bottom: var(--header-bottom-space);
}

.header-bar::after {
  content: "";
  position: absolute;
  left: calc(-1 * var(--header-edge-space));
  right: calc(-1 * var(--header-edge-space));
  bottom: 0;
  height: 1px;
  background: rgba(29, 55, 107, 0.16);
}

.brand {
  flex: 0 0 auto;
  text-decoration: none;
}

.brand img {
  width: min(210px);
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  align-self: flex-end;
  justify-content: center;
  gap: 0.25rem;
  flex: 1 1 auto;
  margin-bottom: calc(-1 * var(--header-bottom-space));
}

.site-nav__item {
  position: relative;
  display: flex;
  align-items: center;
}

.site-nav__submenu {
  position: absolute;
  top: calc(100% + 0.45rem);
  left: 50%;
  z-index: 12;
  display: grid;
  min-width: 240px;
  padding: 0.7rem;
  border: 1px solid rgba(29, 55, 107, 0.08);
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 0.35rem);
  transition: opacity 180ms ease, transform 180ms ease;
}

.site-nav__submenu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 100%;
  height: 0.7rem;
}

.site-nav__submenu a {
  padding: 0.55rem 0.8rem;
  border-radius: 12px;
  color: var(--ink-700);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}

.site-nav__item:hover .site-nav__submenu,
.site-nav__item:focus-within .site-nav__submenu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.site-nav a,
.header-cta,
.subnav a,
.button,
.button-secondary,
.news-link,
.text-link {
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.site-nav a {
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  text-decoration: none;
  color: var(--ink-700);
  font-size: 0.94rem;
  font-weight: 600;
  white-space: nowrap;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  color: #005ead;
  font-weight: 700;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 2.9rem;
  border-radius: 999px;
  text-decoration: none;
  color: var(--white);
  background: var(--blue-950);
  font-size: 0.9rem;
  font-weight: 700;
  box-shadow: var(--shadow-card);
}

.site-nav__item--lang {
  margin-left: 0.3rem;
}

.lang-toggle {
  position: relative;
}

.lang-toggle__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-width: 2.55rem;
  min-height: 2.55rem;
  padding: 0 0.75rem;
  border: 1px solid rgba(29, 55, 107, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--blue-950);
  cursor: pointer;
}

.lang-toggle__icon {
  width: 1rem;
  height: 1rem;
  display: inline-flex;
  position: relative;
  border: 1.8px solid currentColor;
  border-radius: 50%;
}

.lang-toggle__icon::before,
.lang-toggle__icon::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
}

.lang-toggle__icon::before {
  left: 50%;
  width: 0;
  border-left: 1.4px solid currentColor;
  transform: translateX(-50%);
}

.lang-toggle__icon::after {
  top: 50%;
  height: 0;
  border-top: 1.4px solid currentColor;
  transform: translateY(-50%);
}

.lang-toggle__caret {
  width: 0.45rem;
  height: 0.45rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
}

.lang-toggle__menu {
  left: auto;
  right: 0;
  min-width: 150px;
  transform: translate(0, 0.35rem);
}

.lang-toggle:hover .lang-toggle__menu,
.lang-toggle:focus-within .lang-toggle__menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(0, 0);
}

.lang-toggle__menu a {
  justify-content: flex-start;
}

.lang-toggle__menu a.is-active {
  color: var(--blue-950);
  background: rgba(31, 95, 168, 0.08);
}

.header-cta--mobile {
  display: none;
}

.header-cta:hover,
.header-cta:focus-visible,
.button:hover,
.button:focus-visible,
.button-secondary:hover,
.button-secondary:focus-visible {
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  min-width: 2.9rem;
  min-height: 2.9rem;
  padding: 0.5rem;
  border: 1px solid rgba(29, 55, 107, 0.14);
  border-radius: 999px;
  background: var(--white);
  color: var(--blue-950);
}

.nav-toggle__label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.nav-toggle__bars {
  position: relative;
  width: 18px;
  height: 14px;
}

.nav-toggle__bars::before,
.nav-toggle__bars::after,
.nav-toggle__bars span {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.nav-toggle__bars::before {
  top: 0;
}

.nav-toggle__bars span {
  top: 6px;
}

.nav-toggle__bars::after {
  bottom: 0;
}

h1,
h2,
h3,
h4 {
  margin: 0 0 1rem;
  font-family: "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.12;
  color: var(--blue-950);
}

h1 {
  font-size: clamp(2.9rem, 6vw, 4.8rem);
}

h2 {
  font-size: var(--section-title-size);
}

h3 {
  font-size: var(--card-title-size);
}

p {
  font-family: Arial, sans-serif;
  font-size: var(--section-copy-size);
  font-weight: 400;
  line-height: var(--section-copy-line);
  color: var(--ink-700);
}

li,
dd,
dt {
  color: var(--ink-700);
}

main li,
main dd,
main dt,
.site-footer p {
  font-size: var(--section-copy-size);
  line-height: var(--section-copy-line);
}

.eyebrow {
  display: inline-block;
  margin-bottom: 0.7rem;
  color: var(--blue-800);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-intro,
.page-lead,
.page-hero p {
  font-size: var(--section-copy-size);
  font-weight: 400;
}

.button,
.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 2.9rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
}

.button {
  color: var(--white);
  background: #005ead;
  box-shadow: var(--shadow-card);
}

.button-secondary {
  color: var(--white);
  background: var(--blue-950);
  border: 1px solid var(--blue-950);
  box-shadow: var(--shadow-card);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.6rem;
}

.home-hero,
.page-hero,
.feature-card,
.program-card,
.news-card,
.placeholder-card,
.institution-card,
.impact-card,
.prayer-card,
.directory-card,
.faq-item,
.info-card,
.timeline-card,
.support-card {
  background: var(--white);
  border: 1px solid rgba(29, 55, 107, 0.08);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.institution-pills li,
.term-list li {
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  background: rgba(29, 55, 107, 0.06);
  color: var(--blue-950);
  font-size: 0.94rem;
  font-weight: 600;
}

.home-section {
  padding: var(--section-space) 0;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.section-head h2,
.content-section h2,
.section-band h2 {
  font-size: var(--section-title-size);
  margin-bottom: 0.75rem;
}

.section-head p {
  max-width: 34rem;
  font-size: var(--section-copy-size);
  line-height: var(--section-copy-line);
}

.partner-band {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(23, 45, 89, 0.95), rgba(23, 45, 89, 0.95)),
    url("/assets/approved/institutions-banner.png") center/cover;
}

.partner-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(23, 45, 89, 0.45);
}

.partner-band .site-shell {
  position: relative;
  z-index: 1;
}

.partner-band h2,
.partner-band p,
.partner-band .eyebrow {
  color: var(--white);
}

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

.logo-card {
  display: grid;
  place-items: center;
  min-height: 180px;
  padding: 1.1rem;
  background: rgba(255, 255, 255, 0.97);
  border-radius: 12px;
  box-shadow: var(--shadow-card);
}

.logo-card img {
  max-height: 100px;
  width: auto;
  object-fit: contain;
}

.partner-logo--gets {
  max-height: 143.5px;
}

.program-grid,
.news-grid,
.card-grid,
.impact-grid,
.prayer-grid,
.directory-grid,
.timeline-grid {
  display: grid;
  gap: 1.2rem;
}

.program-grid,
.news-grid,
.timeline-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card-grid--two,
.directory-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.impact-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.program-card,
.news-card,
.placeholder-card,
.impact-card,
.prayer-card,
.directory-card,
.timeline-card,
.support-card {
  overflow: hidden;
}

.program-card img,
.news-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.home-about {
  position: relative;
  overflow: hidden;
  width: 100%;
  margin-top: 0;
  padding-top: 82px;
  background: #f9f9f7;
}

.home-about__section-border {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.home-about__section-background {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(249, 249, 247, 0.76) 0%, rgba(249, 249, 247, 0.58) 22%, rgba(249, 249, 247, 0.18) 54%, rgba(249, 249, 247, 0.72) 100%),
    url("/assets/approved/head-banner.png") center top / cover no-repeat;
}

.home-about__intro {
  position: relative;
  z-index: 1;
  padding: clamp(4.75rem, 7vw, 7rem) 0 0;
  text-align: center;
}

.home-about__intro h1 {
  margin-bottom: 0.85rem;
  font-size: clamp(2.05rem, 4vw, 3.35rem);
}

.home-about__intro p {
  max-width: 36rem;
  margin: 0 auto;
  color: var(--ink-700);
}

.home-about__banner {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 0 1rem 4.4rem;
  display: grid;
  place-items: start center;
  text-align: center;
}

.home-about__banner-copy {
  max-width: 44rem;
}

.home-about__actions {
  margin-top: 1.15rem;
}

.home-about__actions .button {
  box-shadow: none;
}

.home-section--partners {
  background: url("/assets/approved/Institutions.png") center/cover no-repeat;
}

.home-section--programs {
  background: #ffffff;
}

.home-section--news {
  background: #e8ebef;
}

.home-section--involved {
  background: linear-gradient(180deg, #136ab3, #1164aa);
  padding-bottom: 0;
}

.home-section--programs .section-head,
.home-section--involved .section-head {
  justify-content: center;
  text-align: center;
}

.home-section--news .section-head {
  justify-content: flex-start;
  margin-bottom: 2.1rem;
  text-align: left;
}

.home-section--partners .section-head {
  justify-content: flex-start;
  text-align: left;
}

.home-section--partners .section-head > div,
.home-section--programs .section-head > div,
.home-section--news .section-head > div,
.home-section--involved .section-head > div {
  width: min(100%, var(--home-content-width));
  margin: 0 auto;
}

.home-section--news .section-head > div {
  margin-left: 0;
}

.home-section--partners .section-head p,
.home-section--programs .section-head p,
.home-section--news .section-head p,
.home-section--involved .section-head p {
  max-width: 100%;
  margin: 0 auto;
}

.home-section--involved .section-head p {
  max-width: 36rem;
}

.home-section--involved .section-head p + p {
  margin-top: 0.9rem;
}

.home-section--partners .section-head h2 {
  color: var(--white);
}

.home-section--programs .section-head h1 {
  margin-bottom: 0;
  font-size: clamp(2.05rem, 4vw, 3.35rem);
}

.home-section--partners .logo-grid,
.home-section--programs .program-grid,
.home-section--involved .button-row,
.home-section--news .news-carousel {
  width: min(100%, var(--home-content-width));
  margin-left: auto;
  margin-right: auto;
}

.home-section--partners .logo-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
}

.home-section--programs .program-card {
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.home-section--programs .program-card img {
  width: 100%;
  height: 280px;
  aspect-ratio: auto;
  object-fit: cover;
  border-radius: 0;
  box-shadow: var(--shadow-soft);
  background: var(--white);
}

.home-section--programs .program-card .card-copy {
  background: var(--white);
  border-radius: 0;
  padding-left: 0;
  padding-right: 0;
}

.news-carousel {
  position: relative;
}

.news-carousel__viewport {
  overflow: hidden;
}

.home-section--news .news-grid {
  display: grid;
  grid-template-columns: none;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 2rem) / 3);
  gap: 1rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  align-items: start;
}

.home-section--news .news-grid::-webkit-scrollbar {
  display: none;
}

.news-carousel__arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 4.25rem;
  height: 4.25rem;
  margin-top: -2.125rem;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.news-carousel__arrow img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.news-carousel__arrow--prev {
  left: -7.8rem;
}

.news-carousel__arrow--next {
  right: -7.8rem;
}

.news-carousel__arrow:hover img,
.news-carousel__arrow:focus-visible img {
  opacity: 0.85;
}

.partner-image-carousel {
  position: relative;
  width: min(calc(100% - 2rem), 920px);
  margin: 0 auto;
}

.partner-image-carousel .news-carousel__arrow {
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.partner-image-carousel .news-carousel__arrow img {
  padding: 0.9rem;
}

.partner-image-carousel__viewport {
  overflow: hidden;
}

.partner-image-track {
  display: grid;
  grid-template-columns: none;
  grid-auto-flow: column;
  grid-auto-columns: 100%;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.partner-image-track::-webkit-scrollbar {
  display: none;
}

.partner-image-slide {
  position: relative;
  min-width: 0;
}

.partner-image-slide img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.partner-slide-art {
  width: 100%;
}

.partner-slide-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  padding: clamp(1.6rem, 3vw, 2.6rem) clamp(1.4rem, 4vw, 3rem) clamp(1.4rem, 3.4vw, 2.4rem);
  pointer-events: none;
}

.partner-slide-logo {
  display: block;
  max-width: min(62.4%, 546px);
  max-height: 195px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.partner-slide-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  pointer-events: auto;
}

.partner-slide-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 17rem;
  min-height: 3.55rem;
  padding: 0.65rem 1.75rem;
  border-radius: 999px;
  color: var(--white);
  font-family: "Times New Roman", serif;
  font-size: 0.98rem;
  text-decoration: none;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.partner-slide-button--about {
  background: #223a72;
}

.partner-slide-button--site {
  background: #0f67b4;
}

.partner-slide-button:hover,
.partner-slide-button:focus-visible {
  transform: translateY(-1px);
}

.card-copy {
  padding: 1.35rem;
}

.home-section--news .news-card {
  min-height: 395px;
  padding-top: 1.15rem;
  border: 0;
  border-radius: 18px;
  box-shadow: 18px 20px 24px rgba(0, 0, 0, 0.24);
}

.home-section--news .news-card img {
  width: 100%;
  height: 108px;
  aspect-ratio: auto;
  object-fit: cover;
}

.home-section--news .news-card .card-copy {
  padding: 2.1rem 0.85rem 1.4rem;
}

.home-section--news .news-card h3 {
  margin-bottom: 1.15rem;
  color: #005ead;
  font-size: clamp(1.6rem, 2.4vw, 2.05rem);
  line-height: 1;
}

.home-section--news .news-card h3 a {
  color: inherit;
  text-decoration: none;
}

.news-summary {
  color: var(--blue-950);
  font-family: Arial, sans-serif;
  font-size: var(--section-copy-size);
  line-height: var(--section-copy-line);
  margin-bottom: 1rem;
}

.card-copy p:last-child,
.feature-copy p:last-child,
.placeholder-card p:last-child,
.support-card p:last-child {
  margin-bottom: 0;
}

.card-meta,
.news-date {
  display: block;
  margin-bottom: 0.6rem;
  color: var(--blue-800);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.news-date--spaced {
  margin-top: 1.4rem;
}

.news-link,
.text-link {
  color: var(--blue-800);
  font-weight: 700;
  text-decoration: none;
}

.news-link:hover,
.news-link:focus-visible,
.text-link:hover,
.text-link:focus-visible {
  color: var(--blue-950);
}

.involved-band {
  background: linear-gradient(180deg, #126ab1, #1d5b9b);
}

.involved-panel {
  display: block;
  padding: 0;
  text-align: center;
}

.involved-panel h2,
.involved-panel p,
.involved-panel .eyebrow {
  color: var(--white);
}

.involved-panel img {
  display: block;
  width: 100vw;
  max-width: none;
  margin-top: clamp(3rem, 5vw, 4rem);
  margin-bottom: 0;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.site-footer {
  background: #eceef2;
  border-top: 1px solid rgba(29, 55, 107, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
  gap: 2.4rem;
  align-items: start;
  padding: 2.5rem 0 2.8rem;
}

.footer-brand img {
  width: min(170px, 100%);
  margin-top: 0.35rem;
  margin-bottom: 4rem;
}

.footer-brand p,
.site-footer h3,
.site-footer a,
.site-footer strong {
  color: var(--blue-950);
}

.site-footer a {
  text-decoration: none;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--blue-800);
}

.site-footer .footer-title {
  margin-bottom: 1rem;
  font-size: 2.3rem;
  line-height: 1.05;
}

.contact-list {
  display: grid;
  gap: 1.1rem;
}

.footer-faq-link {
  margin: 1.2rem 0 0;
}

.footer-faq-link a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.8rem;
  padding: 0.7rem 1.55rem;
  border: 1px solid rgba(29, 55, 107, 0.18);
  background: transparent;
  color: var(--blue-950);
  font-size: 0.98rem;
  font-weight: 600;
}

.footer-nav-links {
  margin: 1.8rem 0 0;
  padding-left: 1.15rem;
  border-left: 1px solid rgba(29, 55, 107, 0.35);
  line-height: 1.9;
}

.footer-nav-links a {
  font-size: 0.98rem;
  font-weight: 500;
}

.footer-form-panel {
  padding: 0.4rem 0 0;
}

.footer-form {
  margin-top: 1rem;
}

.footer-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 1.2rem;
}

.footer-field {
  display: grid;
  gap: 0.35rem;
}

.footer-field--full {
  grid-column: 1 / -1;
}

.footer-field__label {
  color: var(--blue-950);
  font-size: 1.1rem;
  font-weight: 700;
}

.footer-field__label span {
  color: #cf2e2e;
}

.footer-field__label--empty {
  visibility: hidden;
}

.footer-field input,
.footer-field textarea {
  width: 100%;
  border: 1px solid rgba(29, 55, 107, 0.22);
  background: var(--white);
  color: var(--ink-900);
  font: inherit;
  padding: 0.78rem 0.85rem;
}

.footer-field textarea {
  min-height: 140px;
  resize: vertical;
}

.footer-field input.is-invalid,
.footer-field textarea.is-invalid {
  border-color: #cf2e2e;
  box-shadow: 0 0 0 3px rgba(207, 46, 46, 0.12);
}

.footer-field__hint {
  color: var(--ink-700);
  font-size: 0.95rem;
}

.footer-form-status {
  display: none;
  margin: 1rem 0 0;
  font-size: 0.95rem;
  font-weight: 600;
}

.footer-form-status.is-visible {
  display: block;
}

.footer-form-status.is-success {
  color: #1b6b34;
}

.footer-form-status.is-error {
  color: #b42318;
}

.footer-turnstile {
  margin-top: 1.2rem;
}

.footer-submit {
  margin-top: 1.6rem;
  border: 1px solid rgba(29, 55, 107, 0.18);
  background: transparent;
  color: var(--blue-950);
  cursor: pointer;
  font-family: "Times New Roman", serif;
  font-size: 1.7rem;
  padding: 0.7rem 1.55rem;
}

.footer-submit:disabled {
  opacity: 0.7;
  cursor: wait;
}

.contact-row {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 0.85rem;
  align-items: start;
}

.contact-icon {
  width: 32px;
  height: 32px;
  color: #126ab1;
}

.contact-row p {
  margin: 0;
  font-size: var(--section-copy-size);
  line-height: var(--section-copy-line);
}

.office-copy {
  font-size: var(--section-copy-size);
  line-height: var(--section-copy-line);
}

.page-wrap {
  padding: 2rem 0 3.5rem;
}

body.about-page .page-wrap {
  padding-top: 1.15rem;
  padding-bottom: 0;
}

body.content-page .page-wrap {
  padding-top: 1.15rem;
  padding-bottom: 0;
}

.page-hero {
  padding: clamp(2rem, 4vw, 3rem);
}

body.about-page .page-hero {
  width: min(calc(100% - 2rem), var(--home-content-width));
  margin: 0 auto;
  padding: 0.75rem 0 var(--section-space-tight);
  background: transparent;
  border: 0;
  box-shadow: none;
  border-radius: 0;
  text-align: center;
}

body.content-page .page-hero {
  width: min(calc(100% - 2rem), var(--home-content-width));
  margin: 0 auto;
  padding: 0.75rem 0 var(--section-space-tight);
  background: transparent;
  border: 0;
  box-shadow: none;
  border-radius: 0;
  text-align: center;
}

body.partner-directory-page .page-hero,
body.programs-overview-page .page-hero {
  padding-bottom: 0.35rem;
}

body.about-page .page-hero h1 {
  font-size: var(--page-title-size);
}

body.content-page .page-hero h1 {
  font-size: var(--page-title-size);
}

body.about-page .page-hero .eyebrow,
body.content-page .page-hero .eyebrow {
  display: block;
  margin-bottom: 0.45rem;
}

body.about-page .page-hero .breadcrumbs {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 1.4rem;
}

body.content-page .page-hero .breadcrumbs {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 1.4rem;
}

body.about-page .page-lead,
body.content-page .page-lead {
  max-width: 34rem;
  margin: 0.25rem auto 0;
}

body.content-page .page-hero .resources-status,
body.about-page .page-hero .resources-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.2rem;
  padding: 0.45rem 1.15rem;
  margin-top: 1.5rem;
  font-family: "Times New Roman", serif;
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.18;
  color: var(--blue-950);
  background: rgba(255, 255, 255, 0.86);
  border: 1.5px solid rgba(29, 55, 107, 0.24);
  border-radius: 0;
  box-shadow: 0 10px 24px rgba(29, 55, 107, 0.08);
}

body.about-page .subnav {
  justify-content: center;
  margin-top: 1.2rem;
}

body.content-page .subnav {
  justify-content: center;
  margin-top: 1.2rem;
}

.breadcrumbs {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
  color: var(--ink-700);
  font-size: 0.92rem;
}

.breadcrumbs a {
  text-decoration: none;
  color: var(--blue-800);
}

.subnav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.6rem;
}

.subnav a {
  padding: 0.6rem 0.9rem;
  border: 1px solid rgba(29, 55, 107, 0.12);
  border-radius: 999px;
  text-decoration: none;
  color: var(--blue-900);
  background: var(--stone-100);
  font-size: 0.92rem;
  font-weight: 700;
}

.subnav a:hover,
.subnav a:focus-visible {
  background: rgba(31, 95, 168, 0.08);
}

.page-banner {
  margin-top: 1.5rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.page-banner img {
  width: 100%;
  height: clamp(240px, 34vw, 360px);
  object-fit: cover;
}

.page-banner--full {
  width: 100vw;
  margin-top: 0;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  border-radius: 0;
  box-shadow: none;
}

.page-banner--full img {
  height: clamp(150px, 14vw, 230px);
}

body.content-page .page-banner {
  width: 100vw;
  margin-top: 0;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  border-radius: 0;
  box-shadow: none;
}

body.content-page .page-banner img {
  height: clamp(150px, 14vw, 240px);
}

.content-section {
  padding: var(--section-space-tight) 0 0;
}

.content-section + .content-section {
  padding-top: var(--section-space-tight);
}

body.content-page .content-section {
  width: min(calc(100% - 2rem), var(--home-content-width));
  margin: 0 auto;
  padding-top: var(--section-space-tight);
}

body.partner-directory-page .page-hero + .content-section,
body.programs-overview-page .page-hero + .content-section {
  padding-top: 0.85rem;
}

body.partner-directory-page .page-wrap {
  padding-bottom: var(--section-space-tight);
}

body.content-page .content-section + .content-section {
  padding-top: var(--section-space-tight);
}

body.content-page .content-section > h2,
body.content-page .content-section > .eyebrow,
body.content-page .content-section > p {
  max-width: 100%;
}

body.content-page .content-section.les-accreditation-section {
  padding-top: 0;
}

body.news-page #events {
  padding-bottom: var(--section-space);
}

.feature {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  align-items: center;
}

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

.feature-media {
  display: grid;
  place-items: center;
}

.feature-card {
  padding: 1.7rem;
}

.feature-media img,
.feature-media .media-panel {
  width: 100%;
  height: 100%;
  max-width: 420px;
  min-height: 280px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.shared-courses-grid {
  align-items: start;
}

.shared-courses-header {
  grid-column: 1 / -1;
  padding-bottom: 0;
}

.shared-courses-copy {
  padding-top: 0;
}

.research-initiatives-grid {
  grid-template-columns: minmax(0, 1fr);
  justify-items: center;
  align-items: start;
  text-align: center;
}

#research-initiatives .section-band__grid {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.research-initiatives-header {
  grid-column: 1 / -1;
  text-align: center;
}

.research-initiatives-grid > div {
  max-width: 56rem;
}

.media-panel {
  display: grid;
  place-items: center;
  padding: 1.5rem;
  text-align: center;
  background: linear-gradient(180deg, rgba(31, 95, 168, 0.14), rgba(29, 55, 107, 0.07));
  border: 1px solid rgba(29, 55, 107, 0.08);
}

.media-panel strong {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--blue-950);
  font-family: "Times New Roman", serif;
  font-size: var(--subsection-title-size);
}

.split-copy {
  columns: 2;
  column-gap: 2rem;
}

.split-copy p:first-child {
  margin-top: 0;
}

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

.shift-grid .info-card {
  padding: 1.15rem;
}

.shift-grid strong,
.support-card strong,
.impact-card strong,
.prayer-card strong,
.directory-card strong,
.timeline-card strong {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--blue-950);
}

.section-band {
  margin-top: var(--section-space-tight);
  padding: 2.1rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, #1765a7, #173761);
  box-shadow: var(--shadow-soft);
}

body.content-page .section-band {
  width: 100vw;
  margin-top: 0;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: var(--section-space-tight) 0;
  border-radius: 0;
  box-shadow: none;
}

.section-band h2,
.section-band h3,
.section-band p,
.section-band li,
.section-band .eyebrow {
  color: var(--white);
}

.section-band__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  align-items: center;
}

.section-band__grid ul {
  margin: 0;
  padding-left: 1.1rem;
}

body.content-page .section-band__grid {
  width: min(calc(100% - 2rem), var(--home-content-width));
  margin: 0 auto;
}

body.content-page .section-band h2 {
  text-align: center;
}

body.content-page .feature-card,
body.content-page .institution-card,
body.content-page .placeholder-card,
body.content-page .support-card,
body.content-page .directory-card,
body.content-page .faq-item,
body.content-page .info-card,
body.content-page .news-card,
body.content-page .program-card,
body.content-page .impact-card,
body.content-page .prayer-card {
  border-radius: 18px;
}

body.content-page .faq-list {
  gap: 1rem;
}

body.content-page .directory-grid,
body.content-page .card-grid--two {
  gap: 1rem;
}

#faq .directory-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

body.contact-page #faq {
  padding-bottom: var(--section-space);
}

body.content-page .feature-card,
body.content-page .feature-media img,
body.content-page .feature-media .media-panel {
  background: var(--white);
  border-radius: 0;
  box-shadow: none;
}

body.content-page .info-card {
  background: var(--white);
  border-radius: 0;
  box-shadow: none;
}

body.programs-page .feature-card,
body.programs-page .info-card {
  border: 0;
}

body.news-page .news-card,
body.news-page .placeholder-card,
body.news-page .support-card,
body.news-page .page-banner,
body.news-page .card-copy {
  background: var(--white);
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

body.news-page .news-card img,
body.news-page .page-banner img {
  border-radius: 0;
  box-shadow: none;
}

.about-intro {
  width: min(calc(100% - 2rem), var(--home-content-width));
  margin: 0 auto;
  padding: 1rem 0 0;
  text-align: center;
}

.about-intro p {
  max-width: 32rem;
  margin: 0 auto;
}

.about-mission {
  width: min(calc(100% - 2rem), var(--home-content-width));
  margin: 0 auto;
  padding: var(--section-space-tight) 0;
}

.about-mission__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  align-items: center;
}

.about-side-copy {
  max-width: none;
}

.about-side-copy h1,
.about-side-copy h2,
.about-band--history h2 {
  margin-bottom: 0.65rem;
  font-size: var(--section-title-size);
  text-align: left;
}

.about-side-copy p {
}

.split-media-card,
.about-image-card {
  width: min(100%, 320px);
  justify-self: center;
  align-self: center;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 14px 30px rgba(23, 45, 89, 0.18);
  background: var(--white);
}

.split-media-card img,
.about-image-card img {
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
}

.about-band {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.about-band--history {
  background: #e7eaee;
  padding: var(--section-space-tight) 0;
}

.about-band--governance .page-content-shell {
  width: min(calc(100% - 2rem), var(--home-content-width));
}

.about-band--governance h2 {
  text-align: center;
}

.about-history-shell {
  width: min(calc(100% - 2rem), 820px);
  text-align: left;
}

.about-history-shell > h2,
.about-history-layout > h2 {
  display: block;
  width: 100%;
  margin: 0 0 0.65rem;
  text-align: left !important;
  justify-self: start;
}

.about-history-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.35rem;
  margin-top: 1.35rem;
}

.about-history-column {
  display: grid;
  gap: 0.75rem;
  align-content: start;
}

.about-history-column p,
.about-history-shift p {
  margin-top: 0;
  margin-bottom: 0;
  font-size: var(--section-copy-size);
  line-height: var(--section-copy-line);
}

.about-shift-list {
  display: grid;
  gap: 0.18rem;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.about-shift-list strong {
  color: var(--blue-950);
  font-size: 0.75rem;
  font-weight: 600;
}

.about-shift-list span {
  display: block;
  color: var(--ink-700);
  font-size: 0.75rem;
}

.about-history-shift {
  margin: 0.75rem 0;
}

.about-shift-graphic {
  margin: 0;
}

.about-shift-graphic img {
  display: block;
  width: 100%;
  height: auto;
}

.about-band--governance {
  background: #0f67b4;
  padding: var(--section-space-tight) 0;
}

.about-band--governance h2,
.about-band--governance p,
.about-band--governance li,
.about-band--governance .eyebrow,
.about-band--governance h3 {
  color: var(--white);
}

.about-band--governance .eyebrow {
  display: block;
  text-align: center;
}

.about-governance-intro {
  max-width: 34rem;
  margin: 0.8rem auto 0;
  text-align: center;
}

.about-governance-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  margin-top: 1.8rem;
  align-items: center;
}

.about-leadership-card {
  width: 100%;
  max-width: 220px;
  min-height: 150px;
  margin: 0 auto;
  display: grid;
  place-items: end start;
  padding: 1rem;
  border-radius: 18px;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.22);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(0, 0, 0, 0.28)),
    linear-gradient(145deg, #8b8b8b, #4f6a35 58%, #26351b);
}

.about-leadership-card span {
  color: var(--white);
  font-family: "Times New Roman", serif;
  font-size: 1.35rem;
  letter-spacing: 0.06em;
}

.about-leadership-image {
  width: 100%;
  display: block;
  border-radius: 18px;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.22);
}

.about-functions {
}

.about-functions ul {
  margin: 0.9rem 0 0;
  padding-left: 1.1rem;
}

.about-functions li {
  margin-bottom: 0.25rem;
}

.about-bottom-art {
  width: 100vw;
  margin-top: 0;
  margin-bottom: 0;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.about-bottom-art img {
  display: block;
  width: 100%;
  height: auto;
}

.program-card h3,
.news-card h3,
.placeholder-card h2,
.institution-card h2,
.support-card strong,
.directory-card strong,
.impact-card strong,
.prayer-card strong,
.timeline-card strong,
.faq-item summary {
  font-size: var(--subsection-title-size);
  line-height: 1.18;
}

.institution-card {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 1.3rem;
  padding: 1.5rem;
}

.institution-logo {
  display: grid;
  place-items: center;
  padding: 1.1rem;
  border-radius: var(--radius-md);
  background: var(--stone-100);
}

.institution-logo img {
  max-width: 100%;
  max-height: 100px;
  object-fit: contain;
}

.institution-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.institution-meta div {
  padding: 1rem;
  border-radius: var(--radius-md);
  background: var(--stone-100);
}

.institution-meta ul {
  margin: 0;
  padding-left: 1.1rem;
}

.placeholder-card,
.support-card {
  padding: 1.5rem;
}

.placeholder-card {
  min-height: 100%;
  background: linear-gradient(180deg, var(--white), var(--stone-100));
}

.placeholder-label {
  display: inline-block;
  margin-bottom: 0.85rem;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  color: var(--blue-800);
  background: rgba(31, 95, 168, 0.08);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.term-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin: 1.2rem 0 0;
  padding: 0;
  list-style: none;
}

.timeline-card {
  padding: 1.3rem;
}

.faq-list {
  display: grid;
  gap: 0.9rem;
}

.faq-item {
  padding: 0 0 1rem;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  border-bottom: 1px solid rgba(29, 55, 107, 0.14);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  color: var(--blue-950);
  font-weight: 700;
  font-size: 1.1rem;
  list-style: none;
  gap: 1rem;
  padding: 0.15rem 0 0;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  flex: 0 0 auto;
  color: var(--blue-900);
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1;
}

.faq-item[open] summary {
  margin-bottom: 0.8rem;
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item > :not(summary) {
  margin-left: 0;
  margin-right: 0;
}

.faq-item ul {
  margin: 0.8rem 0 0;
  padding-left: 1.2rem;
}

.faq-contact-page .brand img {
  width: min(210px);
  height: auto;
}

.faq-contact-page .footer-brand img {
  width: min(170px, 100%);
  height: auto;
}

.directory-card {
  padding: 1.35rem;
}

.directory-card p {
  margin: 0.4rem 0;
}

.directory-card.institution-card > div {
  min-width: 0;
}

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

.directory-card.institution-card .institution-logo {
  background: var(--white);
}

.les-page-mark {
  display: flex;
  justify-content: center;
  margin-bottom: 1.1rem;
  width: 100%;
}

.les-page-mark img {
  width: min(165px, 34.5vw);
  height: auto;
}

.cwts-page-mark img {
  width: min(400px, 100%);
}

.its-page-mark img {
  width: min(300px, 100%);
}

.isce-page-mark img {
  width: min(400px, 100%);
}

body.content-page .page-hero .les-page-mark {
  justify-content: center;
}

body.content-page .page-hero .les-page-mark + .page-lead,
body.content-page .page-hero .les-page-mark + .page-lead + .page-lead,
body.content-page .page-hero .les-page-mark + .page-lead + .page-lead + .page-lead {
  max-width: 100%;
  margin-left: 0;
  margin-right: 0;
}

body.get-involved-page .page-wrap {
  background: #fbfbf8;
}

body.get-involved-page .page-wrap .site-shell {
  width: min(calc(100% - 2rem), var(--home-content-width));
}

body.get-involved-page .get-involved-hero,
body.get-involved-page .get-involved-banner {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

body.get-involved-page .get-involved-hero {
  min-height: 28rem;
  background:
    linear-gradient(180deg, rgba(251, 251, 248, 0.7), rgba(251, 251, 248, 0.62)),
    url("/graphic-design/CTLC%20Website/Pic/GetInvolved/Positive%20impact%20hero-back.png") center/cover no-repeat;
}

body.get-involved-page .get-involved-hero__inner {
  display: grid;
  align-content: start;
  min-height: 28rem;
  padding-top: clamp(7rem, 10vw, 8.25rem);
  padding-bottom: var(--section-space-tight);
}

body.get-involved-page .get-involved-hero .breadcrumbs {
  color: rgba(29, 55, 107, 0.78);
  margin-bottom: 1.4rem;
}

body.get-involved-page .get-involved-hero__copy {
  width: min(100%, 34rem);
  margin: 2rem auto 0;
  text-align: center;
}

body.get-involved-page .get-involved-hero__copy h1 {
  margin-bottom: 0.75rem;
  font-size: clamp(2.2rem, 4vw, 3.35rem);
}

body.get-involved-page .get-involved-hero__copy p {
  margin: 0 auto;
  font-size: 0.9rem;
  line-height: 1.5;
}

body.get-involved-page .get-involved-impact-list {
  padding: var(--section-space-tight) 0;
}

body.get-involved-page .get-involved-impact-list__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
  max-width: 60rem;
  margin: 0 auto;
  align-items: start;
}

body.get-involved-page .get-involved-impact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

body.get-involved-page .get-involved-impact-card img {
  display: block;
  margin: 0;
  height: 279px;
  object-fit: contain;
}

body.get-involved-page .get-involved-impact-card:nth-child(4) {
  grid-column: 1 / 2;
  justify-self: end;
}

body.get-involved-page .get-involved-impact-card:nth-child(5) {
  grid-column: 2 / 3;
  justify-self: center;
}

body.get-involved-page .get-involved-impact-list__grid strong {
  display: block;
  width: 100%;
  margin-top: 1.5rem;
  margin-bottom: 0.4rem;
  color: var(--blue-950);
  font-size: 0.98rem;
  line-height: 1.35;
  text-align: left;
}

body.get-involved-page .get-involved-impact-list__grid p {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.5;
  text-align: left;
}

body.get-involved-page .get-involved-banner {
  display: grid;
  place-items: center;
  text-align: center;
}

body.get-involved-page .get-involved-banner__copy {
  width: min(100%, 36rem);
  margin: 0 auto;
  padding: 2.5rem 0;
}

body.get-involved-page .get-involved-banner__copy h2 {
  margin-bottom: 0.75rem;
}

body.get-involved-page .get-involved-banner__copy p {
  margin: 0.45rem 0 0;
}

body.get-involved-page .get-involved-banner--join {
  min-height: 24rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.18)),
    url("/graphic-design/CTLC%20Website/Pic/GetInvolved/Join%20this%20movement.png") center/cover no-repeat;
}

body.get-involved-page .get-involved-banner--join .get-involved-banner__copy,
body.get-involved-page .get-involved-banner--event .get-involved-banner__copy {
  color: var(--white);
}

body.get-involved-page .get-involved-banner--join .get-involved-banner__copy h2,
body.get-involved-page .get-involved-banner--join .get-involved-banner__copy p,
body.get-involved-page .get-involved-banner--event .get-involved-banner__copy h2,
body.get-involved-page .get-involved-banner--event .get-involved-banner__copy p {
  color: var(--white);
}

body.get-involved-page .get-involved-prayer,
body.get-involved-page .get-involved-support {
  padding: var(--section-space-tight) 0;
}

body.get-involved-page .get-involved-prayer__grid,
body.get-involved-page .get-involved-support__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 2.5rem;
  align-items: center;
}

body.get-involved-page .get-involved-prayer__copy article + article {
  margin-top: 1rem;
}

body.get-involved-page .get-involved-prayer__copy strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--blue-950);
}

body.get-involved-page .get-involved-prayer__copy p,
body.get-involved-page .get-involved-support__copy p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.55;
}

body.get-involved-page .get-involved-support__copy p + p {
  margin-top: 0.9rem;
}

body.get-involved-page .get-involved-prayer__image,
body.get-involved-page .get-involved-support__image {
  margin: 0;
  display: grid;
  place-items: center;
}

body.get-involved-page .get-involved-prayer__image img,
body.get-involved-page .get-involved-support__image img {
  width: min(100%, 340px);
  border-radius: 14px;
  box-shadow: var(--shadow-soft);
}

body.get-involved-page .get-involved-support__image img {
  border-radius: 0;
}

body.get-involved-page .get-involved-banner--intouch {
  min-height: 20rem;
  background:
    linear-gradient(180deg, rgba(251, 251, 248, 0.34), rgba(251, 251, 248, 0.46)),
    url("/graphic-design/CTLC%20Website/Pic/GetInvolved/StayInformed%20background.png") center/cover no-repeat;
}

body.get-involved-page .get-involved-banner--event {
  min-height: 22rem;
  background:
    linear-gradient(180deg, rgba(11, 57, 95, 0.52), rgba(11, 57, 95, 0.66)),
    url("/graphic-design/CTLC%20Website/Pic/GetInvolved/Event%20participation.png") center/cover no-repeat;
}

body.get-involved-page .get-involved-banner__copy--event {
  width: min(100%, 22rem);
}

body.get-involved-page .get-involved-banner--intouch .get-involved-banner__copy {
  padding-top: 3.25rem;
  padding-bottom: 3.25rem;
}

.les-hero-copy {
  padding-left: 0.85rem;
  padding-right: 0.85rem;
  margin-right: 60px;
}

.les-hero-copy--followup {
  margin-top: 0.75rem !important;
}

.les-degree-section {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  width: 100vw;
}

.les-degree-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.6rem;
  padding-left: max(2rem, calc((100vw - var(--home-content-width)) / 2));
  padding-right: max(2rem, calc((100vw - var(--home-content-width)) / 2));
}

.les-degree-row--top {
  align-items: center;
  padding-top: 2.6rem;
  padding-bottom: 1.5rem;
  background: var(--white);
}

.les-degree-row--bottom {
  position: relative;
  padding-top: 0;
  padding-bottom: 2.7rem;
  background: transparent;
  isolation: isolate;
}

.les-degree-row--bottom::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  bottom: 0;
  left: 0;
  background: #eef0f3;
  z-index: 0;
}

.les-degree-copy {
  padding: 0.25rem 0 0 0.2rem;
}

.les-degree-copy h2,
.les-contact-copy h2 {
  margin-bottom: 1rem;
  font-size: 2.3rem;
}

.les-degree-list,
.les-contact-details {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--ink-700);
}

.les-degree-gallery__item {
  position: relative;
  z-index: 1;
  margin: 0;
  overflow: hidden;
  background: var(--white);
}

.les-degree-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.les-degree-gallery__image--choral {
  object-fit: cover !important;
  object-position: 42% center;
}

.les-degree-gallery__image--fitted {
  object-fit: cover !important;
  object-position: center center;
}

.les-degree-gallery__item--top {
  justify-self: start;
  width: min(100%, 360px);
  aspect-ratio: 1.08 / 0.76;
}

.les-degree-gallery__item--bottom-left,
.les-degree-gallery__item--bottom-right {
  width: min(100%, 360px);
  aspect-ratio: 0.9 / 1;
}

.les-accreditation-band {
  display: grid;
  place-items: center;
  gap: 1.5rem;
  padding: 2.4rem max(2rem, calc((100vw - var(--home-content-width)) / 2)) 2.6rem;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  width: 100vw;
  background: linear-gradient(180deg, #1168b2, #0c5b9f);
}

.les-accreditation-band h2 {
  margin: 0;
  color: var(--white);
  font-size: 2.25rem;
}

.les-accreditation-logos {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  width: min(100%, 980px);
}

.les-accreditation-logos--les {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.les-accreditation-logos--single {
  grid-template-columns: minmax(0, 240px);
  justify-content: center;
}

.les-accreditation-logos--double {
  grid-template-columns: repeat(2, minmax(0, 240px));
  justify-content: center;
}

.its-accreditation-logos {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: min(50%, 100%);
}

.les-accreditation-logo-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 88px;
  padding: 1rem;
  background: transparent;
  box-shadow: none;
  gap: 0.65rem;
}

.les-accreditation-logo-card span {
  color: #e6f1fb;
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.les-accreditation-logo-card img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 64px;
  object-fit: contain;
}

.les-accreditation-logo-label {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.35;
  font-weight: 500;
  text-align: center;
  color: #e6f1fb;
}

.les-contact-section {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  align-items: center;
}

.les-contact-copy {
  padding-top: 0.3rem;
}

.les-contact-details li {
  margin-bottom: 0.35rem;
}

.les-contact-actions {
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
  margin-top: 3.5rem;
}

.les-action-button {
  min-width: 19rem;
}

.les-action-button--primary {
  color: var(--white);
  background: #005ead;
  border-color: #005ead;
}

.les-contact-image {
  margin: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.les-contact-image img {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.les-campus-bottom {
  padding-top: 2.6rem;
}

.les-bottom-banner {
  margin-top: 0;
  margin-bottom: 0;
}

.les-bottom-banner img,
body.content-page .les-bottom-banner img {
  height: auto;
  max-height: none;
  aspect-ratio: 5760 / 1902;
  display: block;
}

@media (max-width: 1080px) {
  body.get-involved-page .get-involved-impact-list__grid,
  body.get-involved-page .get-involved-prayer__grid,
  body.get-involved-page .get-involved-support__grid {
    grid-template-columns: 1fr;
  }

  body.get-involved-page .get-involved-impact-card:nth-child(4),
  body.get-involved-page .get-involved-impact-card:nth-child(5) {
    grid-column: auto;
    justify-self: stretch;
  }

  body.get-involved-page .get-involved-hero {
    min-height: 28rem;
  }

  body.get-involved-page .get-involved-hero__inner {
    min-height: 28rem;
    padding-top: 7.75rem;
  }

  .les-contact-section {
    grid-template-columns: 1fr;
  }

  .les-degree-row {
    grid-template-columns: 1fr;
  }

  .les-hero-copy {
    margin-right: 0;
  }

  .les-accreditation-logos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .les-degree-row {
    gap: 1rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .les-degree-gallery__item--top,
  .les-degree-gallery__item--bottom-left,
  .les-degree-gallery__item--bottom-right {
    width: 100%;
  }

  .les-contact-actions .button,
  .les-contact-actions .button-secondary {
    width: 100%;
  }

  .les-accreditation-logos {
    grid-template-columns: 1fr;
  }
}

.social-note {
  margin-top: 1rem;
  padding: 1rem 1.2rem;
  border-radius: var(--radius-md);
  background: var(--stone-100);
  border: 1px dashed rgba(29, 55, 107, 0.2);
}

@media (max-width: 1080px) {
  body.get-involved-page .get-involved-impact-list__grid,
  body.get-involved-page .get-involved-prayer__grid,
  body.get-involved-page .get-involved-support__grid {
    grid-template-columns: 1fr;
  }

  body.get-involved-page .get-involved-impact-card:nth-child(4),
  body.get-involved-page .get-involved-impact-card:nth-child(5) {
    grid-column: auto;
    justify-self: stretch;
  }

  body.get-involved-page .get-involved-hero {
    min-height: 28rem;
  }

  body.get-involved-page .get-involved-hero__inner {
    min-height: 28rem;
    padding-top: 7.75rem;
  }

  .logo-grid,
  .impact-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .institution-card,
  .section-band__grid,
  .feature,
  .feature--reverse,
  .footer-grid,
  .involved-panel {
    grid-template-columns: 1fr;
  }

  .shared-courses-header {
    grid-column: auto;
  }

  .research-initiatives-header {
    grid-column: auto;
  }

  .about-mission__grid,
  .about-governance-grid {
    grid-template-columns: 1fr;
  }

  .about-history-layout {
    grid-template-columns: 1fr;
  }

    .footer-brand img {
    margin-bottom: 1rem;
  }

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

  .footer-field--full {
    grid-column: auto;
  }
}

@media (max-width: 1180px) {
  .header-bar {
    align-items: center;
  }

  .site-nav,
  .header-cta {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .site-nav.is-open {
    position: absolute;
    align-self: auto;
    margin-bottom: 0;
    inset: calc(100% + 0.75rem) 1rem auto 1rem;
    display: grid;
    gap: 0.45rem;
    padding: 1rem;
    border-radius: 24px;
    background: var(--white);
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(29, 55, 107, 0.08);
  }

  .site-nav.is-open .site-nav__item {
    display: grid;
    width: 100%;
  }

  .site-nav.is-open .site-nav__submenu {
    position: static;
    left: auto;
    min-width: 0;
    margin-top: 0.2rem;
    padding: 0.35rem 0 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .site-nav.is-open .site-nav__submenu::before {
    display: none;
  }

  .site-nav.is-open .site-nav__submenu a {
    justify-content: center;
    padding-top: 0.45rem;
    padding-bottom: 0.45rem;
    font-size: 0.88rem;
  }

  .site-nav.is-open a,
  .site-nav.is-open .header-cta--mobile {
    display: flex;
    justify-content: center;
  }

  .site-nav.is-open .site-nav__item--lang {
    width: 100%;
    margin-left: 0;
  }

  .site-nav.is-open .lang-toggle__button {
    width: 100%;
    min-height: 2.8rem;
  }

  .site-nav.is-open .lang-toggle__menu a {
    justify-content: center;
  }

  .header-cta--mobile {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.8rem;
    margin-top: 0.25rem;
    border-radius: 999px;
    text-decoration: none;
    color: var(--white);
    background: var(--blue-950);
    font-weight: 700;
  }

  .program-grid,
  .news-grid,
  .card-grid--two,
  .prayer-grid,
  .timeline-grid,
  .about-history-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-section--news .news-grid {
    grid-auto-columns: calc((100% - 1rem) / 2);
  }

  .news-carousel__arrow--prev {
    left: -1.2rem;
  }

  .news-carousel__arrow--next {
    right: -1.2rem;
  }

  .split-copy {
    columns: 1;
  }
}

@media (max-width: 680px) {
  body {
    font-size: 0.98rem;
  }

  .home-hero {
    padding-top: 2.5rem;
  }

  .logo-grid,
  .program-grid,
  .news-grid,
  .card-grid--two,
  .impact-grid,
  .prayer-grid,
  .directory-grid,
  .timeline-grid,
  .shift-grid,
  .institution-meta,
  .about-history-layout {
    grid-template-columns: 1fr;
  }

  .home-section--news .news-grid {
    grid-auto-columns: 100%;
  }

  .news-carousel {
    padding: 0 1.9rem;
  }

  .partner-image-carousel {
    padding: 0 1.9rem;
  }

  .partner-slide-overlay {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .partner-slide-logo {
    max-width: min(56%, 260px);
    max-height: 92px;
  }

  .partner-slide-actions {
    gap: 0.75rem;
  }

  .partner-slide-button {
    min-width: 12.5rem;
    min-height: 3.15rem;
    font-size: 0.9rem;
  }

  .news-carousel__arrow--prev {
    left: 0;
  }

  .news-carousel__arrow--next {
    right: 0;
  }

  .partner-image-carousel .news-carousel__arrow--prev {
    left: 0;
  }

  .partner-image-carousel .news-carousel__arrow--next {
    right: 0;
  }

  .home-hero__quote {
    padding-left: 0.9rem;
  }

  .header-bar {
    min-height: 74px;
  }

  .brand img {
    width: min(210px);
  }

  .lang-toggle__button {
    min-width: 2.25rem;
    min-height: 2.25rem;
    padding: 0 0.65rem;
  }

  .page-hero,
  .home-hero__panel,
  .section-band,
  .feature-card,
  .institution-card,
  .placeholder-card,
  .support-card,
  .directory-card {
    border-radius: 22px;
  }
}
