: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;
  --section-copy-size: 0.9rem;
  --section-copy-line: 1.5;
  --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;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Aptos, "Segoe UI", 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%;
}

.skip-link {
  position: absolute;
  top: -3rem;
  left: 1rem;
  z-index: 1000;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  color: var(--white);
  background: var(--blue-950);
}

.skip-link:focus {
  top: 1rem;
}

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

body.home-page .site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.82);
}

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

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

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

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

.header-bar {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  min-height: 82px;
}

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

.brand img {
  width: min(220px, 36vw);
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  flex: 1 1 auto;
}

.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: var(--blue-900);
  background: rgba(31, 95, 168, 0.08);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.7rem;
  padding: 0.55rem 1.15rem;
  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);
}

.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: Georgia, "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,
li,
dd,
dt {
  color: var(--ink-700);
}

main p,
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: 1rem;
}

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

.button {
  color: var(--white);
  background: linear-gradient(180deg, var(--blue-800), var(--blue-900));
  box-shadow: var(--shadow-card);
}

.button-secondary {
  color: var(--blue-900);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(29, 55, 107, 0.14);
}

.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: 4.25rem 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: 0.98rem;
}

.partner-band {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(23, 45, 89, 0.95), rgba(23, 45, 89, 0.95)),
    url("./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: 152px;
  padding: 1.1rem;
  background: rgba(255, 255, 255, 0.97);
  border-radius: 12px;
  box-shadow: var(--shadow-card);
}

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

.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(5, 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 {
  width: 100%;
  margin-top: 0;
  padding-top: 82px;
  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("./approved/head-banner.png") center top / cover no-repeat;
}

.home-about__intro {
  padding: 3.55rem 0 1.15rem;
  text-align: center;
}

.home-about__intro h1 {
  margin-bottom: 0.85rem;
  font-size: clamp(2.35rem, 4.4vw, 3.5rem);
}

.home-about__intro p {
  max-width: 36rem;
  margin: 0 auto;
  color: var(--ink-700);
  font-size: 0.96rem;
  line-height: 1.55;
}

.home-about__conviction {
  margin-top: 0.55rem;
  margin-bottom: 0;
}

.home-about__banner {
  width: 100%;
  min-height: 210px;
  padding: 0.55rem 1rem 2.2rem;
  display: grid;
  place-items: center;
  text-align: center;
}

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

.home-about__quote {
  margin: 0 auto;
  color: #3f4652;
  font-size: clamp(1.02rem, 2vw, 1.4rem);
  line-height: 1.35;
}

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

.home-about__actions .button {
  min-height: 2.3rem;
  padding: 0.45rem 1rem;
  font-size: 0.82rem;
  box-shadow: none;
}

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

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

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

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

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

.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--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--partners .section-head h2 {
  color: var(--white);
}

.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: auto;
  aspect-ratio: auto;
  object-fit: contain;
  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: 2rem;
  height: 2rem;
  margin-top: -1rem;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.news-carousel__arrow span {
  display: block;
  color: rgba(255, 255, 255, 0.98);
  font-size: 2.6rem;
  font-weight: 400;
  line-height: 1;
  text-shadow: 0 1px 4px rgba(23, 45, 89, 0.16);
}

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

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

.news-carousel__arrow:hover span,
.news-carousel__arrow:focus-visible span {
  color: var(--white);
}

.card-copy {
  padding: 1.35rem;
}

.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-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 0 0.5rem;
  text-align: center;
}

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

.involved-panel img {
  width: 100vw;
  max-width: none;
  margin-top: 1.8rem;
  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(0, 1.05fr) minmax(0, 0.9fr) minmax(0, 0.7fr);
  gap: 1.5rem;
  align-items: start;
  padding: 2.2rem 0 2.5rem;
}

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

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

.footer-title {
  margin-bottom: 1rem;
  font-size: var(--section-title-size);
}

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

.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.55rem 0 1.65rem;
  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.55rem 0 1.65rem;
  background: transparent;
  border: 0;
  box-shadow: none;
  border-radius: 0;
  text-align: center;
}

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 .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 {
  max-width: 31rem;
  margin: 0.25rem auto 0;
}

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

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: 2rem 0 0;
}

.content-section + .content-section {
  padding-top: 2.3rem;
}

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

body.content-page .content-section + .content-section {
  padding-top: 2.35rem;
}

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

.feature {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 1.4rem;
  align-items: stretch;
}

.feature--reverse {
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
}

.feature-card {
  padding: 1.7rem;
}

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

.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: Georgia, "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: 2.3rem;
  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: 3rem 0 3.2rem;
  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: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 1.5rem;
  align-items: start;
}

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

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__label {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--blue-950);
  font-family: Georgia, "Times New Roman", serif;
  font-size: var(--subsection-title-size);
  font-weight: 600;
}

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

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

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

.about-side-copy {
  max-width: 18rem;
}

.about-side-copy h2 {
  margin-bottom: 0.65rem;
  font-size: var(--subsection-title-size);
}

.about-side-copy p {
}

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

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

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

.about-band--history {
  background: #e7eaee;
  padding: 3rem 0 3.4rem;
}

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

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

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

.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: 0.75rem;
  line-height: 1.38;
}

.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 {
  display: grid;
  gap: 0.3rem;
}

.about-band--governance {
  background: #0f67b4;
  padding: 3rem 0 3.2rem;
}

.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: minmax(240px, 0.65fr) minmax(0, 1fr);
  gap: 2rem;
  margin-top: 1.8rem;
  align-items: start;
}

.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: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  letter-spacing: 0.06em;
}

.about-functions {
}

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

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

.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: 1rem 1.2rem;
}

.faq-item summary {
  cursor: pointer;
  color: var(--blue-950);
  font-weight: 700;
  list-style: none;
}

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

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

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

.directory-card {
  padding: 1.35rem;
}

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

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

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

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

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

@media (max-width: 920px) {
  .site-nav,
  .header-cta {
    display: none;
  }

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

  .site-nav.is-open {
    position: absolute;
    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 a,
  .site-nav.is-open .header-cta--mobile {
    display: flex;
    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;
  }

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

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

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

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

  .brand img {
    width: min(190px, 56vw);
  }

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