:root {
  --bg: #ffffff;
  --bg-soft: #f3f6fb;
  --card: rgba(30, 44, 66, 0.08);
  --white: #ffffff;
  --cream: #eef3fb;
  --gold: #8ea8cf;
  --ink: #1f2a38;
  --ink-soft: #667385;
  --blue: #3f6ea8;
  --blue-deep: #274d7e;
  --blue-soft: #dbe7f6;
  --ash: #edf1f6;
  --shadow: 0 24px 60px rgba(44, 63, 96, 0.12);
}

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

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top, rgba(171, 193, 224, 0.28), transparent 18%),
    linear-gradient(180deg, #ffffff 0%, var(--bg-soft) 38%, var(--white) 100%);
}

body.menu-open {
  overflow: hidden;
}

body.gallery-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

section {
  scroll-margin-top: 120px;
}

button {
  font: inherit;
}

.page-shell {
  width: min(calc(100% - 32px), 1180px);
  margin: 0 auto;
}

.page-shell--header {
  padding-top: 22px;
}

.page-shell--hero {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100%;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  transition: padding 220ms ease;
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 12px 18px auto;
  height: 72px;
  border-radius: 999px;
  background: rgba(255, 248, 239, 0);
  border: 1px solid rgba(255, 255, 255, 0);
  box-shadow: 0 18px 45px rgba(25, 18, 10, 0);
  backdrop-filter: blur(0);
  -webkit-backdrop-filter: blur(0);
  transition:
    background 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    backdrop-filter 220ms ease,
    -webkit-backdrop-filter 220ms ease;
  pointer-events: none;
}

.site-header.header-scrolled::before {
  background: rgba(252, 247, 239, 0.72);
  border-color: rgba(210, 192, 162, 0.45);
  box-shadow: 0 18px 45px rgba(25, 18, 10, 0.12);
  backdrop-filter: blur(20px) saturate(135%);
  -webkit-backdrop-filter: blur(20px) saturate(135%);
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
  position: relative;
  z-index: 1;
  transition: padding 220ms ease, color 220ms ease;
}

.nav-group {
  display: flex;
  align-items: center;
  gap: 18px;
  flex: 1;
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255, 246, 233, 0.92);
  transition: color 220ms ease;
}

.nav-group--right {
  justify-content: flex-end;
}

.nav-group a,
.nav-menu a {
  transition: opacity 180ms ease;
}

.nav-group a:hover,
.nav-group a:focus-visible,
.nav-menu a:hover,
.nav-menu a:focus-visible {
  opacity: 0.72;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--white);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.14em;
  transition: color 220ms ease, transform 220ms ease;
}

.brand__name {
  font-size: 0.88rem;
  white-space: nowrap;
}

.brand__logo {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  object-fit: cover;
  box-shadow: 0 8px 18px rgba(5, 27, 52, 0.18);
  transition: box-shadow 220ms ease, transform 220ms ease;
}

.site-header.header-scrolled .nav-bar {
  padding: 14px 20px;
}

.site-header.header-scrolled .nav-group {
  color: var(--ink-soft);
}

.site-header.header-scrolled .nav-group a:hover,
.site-header.header-scrolled .nav-group a:focus-visible {
  opacity: 1;
  color: var(--ink);
}

.site-header.header-scrolled .brand {
  color: var(--ink);
}

.site-header.header-scrolled .brand__logo {
  box-shadow: 0 10px 24px rgba(5, 27, 52, 0.24);
}

.nav-toggle {
  display: none;
  width: 50px;
  height: 50px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.82);
  cursor: pointer;
  position: relative;
  z-index: 3;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: #1b140f;
  border-radius: 999px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-menu {
  display: none;
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 100svh;
  padding: clamp(118px, 16vh, 136px) 0 clamp(48px, 8vh, 72px);
  overflow: hidden;
  isolation: isolate;
}

.hero__slides,
.hero__overlay {
  position: absolute;
  inset: 0;
}

.hero__slide {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 1s ease, transform 6s ease;
}

.hero__slide--active {
  opacity: 1;
  transform: scale(1);
}

.hero__overlay {
  background:
    linear-gradient(90deg, rgba(28, 20, 12, 0.5) 0%, rgba(28, 20, 12, 0.28) 38%, rgba(28, 20, 12, 0.34) 100%),
    linear-gradient(180deg, rgba(31, 20, 12, 0.16), rgba(31, 20, 12, 0.4));
  z-index: 0;
}

.hero__content {
  position: relative;
  z-index: 1;
}

.hero__content {
  width: min(100%, 860px);
  color: var(--white);
  text-align: center;
}

.hero h1 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3.8rem, 8vw, 6.2rem);
  line-height: 0.92;
  font-weight: 600;
  text-shadow: 0 12px 34px rgba(0, 0, 0, 0.18);
  text-wrap: balance;
}

.hero__text {
  max-width: 680px;
  margin: 22px auto 0;
  font-size: 1.04rem;
  line-height: 1.8;
  color: rgba(255, 248, 239, 0.9);
}

.hero__actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 188px;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 10px;
  border: 1px solid rgba(255, 237, 210, 0.35);
  font-weight: 700;
}

.button--primary {
  color: var(--white);
  background: linear-gradient(180deg, #507fbb 0%, #2f5f98 100%);
  box-shadow: 0 16px 30px rgba(47, 95, 152, 0.24);
}

.button--secondary {
  color: var(--white);
  background: rgba(220, 230, 244, 0.12);
}

.hero__dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}

.hero__dot {
  width: 12px;
  height: 12px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.32);
  cursor: pointer;
}

.hero__dot--active {
  background: var(--cream);
}

.mission {
  position: relative;
  padding: 110px 0 120px;
  background:
    radial-gradient(circle at 50% 0%, rgba(180, 201, 231, 0.18), transparent 28%),
    linear-gradient(180deg, #f8fbff 0%, #fbfdff 38%, #ffffff 100%);
}

.mission__intro {
  width: min(100%, 760px);
  margin: 0 auto;
  text-align: center;
}

.section-label {
  margin: 0 0 18px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #8392a6;
}

.section-label--blue {
  color: var(--blue);
}

.mission__intro h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.6rem, 5vw, 4rem);
  line-height: 1.05;
  font-weight: 600;
  color: var(--ink);
  text-wrap: balance;
}

.mission__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 190px;
  min-height: 52px;
  margin-top: 30px;
  padding: 0 24px;
  border-radius: 12px;
  border: 1px solid rgba(148, 166, 192, 0.32);
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  box-shadow: 0 10px 24px rgba(60, 82, 116, 0.08);
}

.mission__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 62px;
}

.mission__card {
  overflow: hidden;
  border-radius: 22px;
  background: #f4f7fb;
  border: 1px solid rgba(214, 224, 238, 0.82);
  box-shadow: 0 22px 42px rgba(56, 75, 104, 0.08);
  aspect-ratio: 0.82;
}

.mission__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.events {
  padding: 28px 0 120px;
  background:
    radial-gradient(circle at 50% 0%, rgba(193, 211, 236, 0.16), transparent 26%),
    linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
}

.events__intro {
  width: min(100%, 760px);
  margin: 0 auto;
  text-align: center;
}

.events__intro h3 {
  margin: 0;
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  line-height: 1.05;
  color: var(--ink);
  text-wrap: balance;
}

@media (min-width: 1024px) {
  .events__intro h3 {
    font-size: clamp(3.2rem, 5vw, 5rem);
  }
}

.events__rail {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  margin-top: 52px;
}

.events__arrow {
  width: 58px;
  height: 58px;
  border: 0;
  border-radius: 50%;
  background: var(--blue-deep);
  color: var(--white);
  font-size: 1.35rem;
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(39, 77, 126, 0.2);
}

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

.events__rail .events__grid {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 1fr);
  grid-template-columns: none;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 10px;
  scrollbar-width: none;
}

.events__rail .events__grid::-webkit-scrollbar {
  display: none;
}

.events__grid--calendar {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 44px;
}

.event-card {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 248, 253, 0.98)),
    linear-gradient(135deg, rgba(220, 230, 245, 0.44), transparent);
  border: 1px solid rgba(214, 224, 238, 0.8);
  box-shadow: 0 20px 38px rgba(67, 84, 109, 0.08);
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.event-card:hover,
.event-card:focus-within {
  transform: translateY(-4px);
  box-shadow: 0 28px 46px rgba(67, 84, 109, 0.12);
}

.event-card__image {
  position: relative;
  aspect-ratio: 1.22;
  overflow: hidden;
}

.event-card__image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 44%;
  height: 22%;
  background: rgba(255, 255, 255, 0.95);
  clip-path: polygon(0 0, 100% 0, 72% 50%, 100% 100%, 0 100%);
  z-index: 1;
}

.event-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.event-card__status {
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--blue-deep);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.event-card__body {
  padding: 18px 22px 24px;
}

.event-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 14px;
  font-size: 0.82rem;
  font-weight: 700;
  color: #8b7b68;
}

.event-card__meta span {
  position: relative;
  padding-left: 16px;
}

.event-card__meta span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
  transform: translateY(-50%);
}

.event-card h3 {
  margin: 0;
  font-size: 1.8rem;
  line-height: 1.2;
  color: var(--ink);
  text-wrap: balance;
}

.event-card p {
  margin: 14px 0 24px;
  line-height: 1.7;
  color: var(--ink-soft);
}

.event-card__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 126px;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--blue-deep);
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 700;
  box-shadow: 0 12px 24px rgba(39, 77, 126, 0.18);
}

.event-card--current-month {
  border-color: rgba(63, 110, 168, 0.42);
  outline: 2px solid rgba(63, 110, 168, 0.18);
  outline-offset: -2px;
}

.event-card--upcoming {
  box-shadow: 0 24px 44px rgba(47, 95, 152, 0.14);
}

.event-card--today,
.event-card--spotlight {
  transform: translateY(-6px);
  border-color: rgba(63, 110, 168, 0.58);
  box-shadow: 0 30px 54px rgba(47, 95, 152, 0.2);
  animation: event-pop 2.6s ease-in-out infinite;
}

@keyframes event-pop {
  0%,
  100% {
    transform: translateY(-6px) scale(1);
  }
  50% {
    transform: translateY(-10px) scale(1.015);
  }
}

.events-calendar__intro {
  width: min(100%, 760px);
  margin: 0 auto;
  text-align: center;
}

.events-calendar__intro h2 {
  margin: 0;
  font-size: clamp(2.4rem, 4.4vw, 3.8rem);
  line-height: 1.04;
  color: var(--ink);
}

.events-calendar__intro p {
  margin: 18px auto 0;
  color: var(--ink-soft);
  line-height: 1.8;
}

.events-calendar__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: 26px;
  margin-top: 40px;
  align-items: start;
}

.events-calendar__panel,
.events-calendar__agenda {
  padding: 26px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(243, 247, 252, 0.96));
  border: 1px solid rgba(214, 224, 238, 0.92);
  box-shadow: 0 22px 48px rgba(61, 82, 116, 0.1);
}

.events-calendar__toolbar {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  margin-bottom: 20px;
}

.events-calendar__nav {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: linear-gradient(180deg, #3f6ea8 0%, #274d7e 100%);
  color: var(--white);
  font-size: 1.15rem;
  cursor: pointer;
  box-shadow: 0 14px 28px rgba(39, 77, 126, 0.18);
}

.events-calendar__month {
  margin: 0;
  text-align: center;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--ink);
}

.events-calendar__weekdays,
.events-calendar__grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 10px;
}

.events-calendar__weekdays {
  margin-bottom: 10px;
}

.events-calendar__weekdays span {
  text-align: center;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue-deep);
}

.events-calendar__day {
  min-height: 108px;
  padding: 12px 10px;
  border-radius: 18px;
  background: rgba(234, 240, 249, 0.68);
  border: 1px solid rgba(216, 226, 240, 0.86);
}

.events-calendar__day--empty {
  background: transparent;
  border-color: transparent;
}

.events-calendar__day--event {
  background: linear-gradient(180deg, rgba(222, 233, 248, 0.95), rgba(210, 225, 245, 0.95));
  border-color: rgba(63, 110, 168, 0.32);
  box-shadow: inset 0 0 0 1px rgba(63, 110, 168, 0.1);
}

.events-calendar__day--today {
  outline: 2px solid rgba(63, 110, 168, 0.45);
  outline-offset: -2px;
}

.events-calendar__day-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 800;
}

.events-calendar__day-events {
  display: grid;
  gap: 6px;
  margin-top: 12px;
}

.events-calendar__chip,
.events-calendar__more {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--blue-deep);
  font-size: 0.7rem;
  font-weight: 700;
  line-height: 1.2;
}

.events-calendar__agenda-header span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(219, 231, 246, 0.95);
  color: var(--blue-deep);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.events-calendar__agenda-header h3 {
  margin: 18px 0 0;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  line-height: 1.08;
  color: var(--ink);
}

.events-calendar__agenda-list {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.events-calendar__agenda-item {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 14px;
  padding: 16px;
  border-radius: 20px;
  background: rgba(233, 240, 249, 0.72);
}

.events-calendar__agenda-date {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 12px;
  border-radius: 999px;
  background: linear-gradient(180deg, #3f6ea8 0%, #274d7e 100%);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 800;
}

.events-calendar__agenda-item strong {
  display: block;
  color: var(--ink);
}

.events-calendar__agenda-item p {
  margin: 6px 0 0;
  color: var(--ink-soft);
}

.events-calendar__agenda-item--empty {
  grid-template-columns: 1fr;
}

@media (max-width: 980px) {
  .events-calendar__layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .events-calendar__panel,
  .events-calendar__agenda {
    padding: 20px 16px;
    border-radius: 24px;
  }

  .events-calendar__weekdays,
  .events-calendar__grid {
    gap: 6px;
  }

  .events-calendar__day {
    min-height: 84px;
    padding: 10px 8px;
  }

  .events-calendar__chip,
  .events-calendar__more {
    font-size: 0.64rem;
    padding: 0 6px;
  }

  .events-calendar__agenda-item {
    grid-template-columns: 1fr;
  }
}

.giving {
  padding: 22px 0 124px;
  background:
    radial-gradient(circle at 18% 30%, rgba(83, 120, 170, 0.1), transparent 18%),
    linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
}

.giving__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 54px;
  align-items: center;
}

.giving__visual {
  position: relative;
  min-height: 640px;
}

.giving__shape {
  position: absolute;
  left: -22px;
  top: 52px;
  width: 160px;
  height: 240px;
  background: linear-gradient(180deg, #84a3cf 0%, #456b9d 100%);
  clip-path: polygon(0 12%, 72% 0, 100% 100%, 0 88%);
  border-radius: 24px;
}

.giving__photo {
  position: absolute;
  overflow: hidden;
  background: #f4f7fb;
  border: 1px solid rgba(214, 224, 238, 0.82);
  box-shadow: 0 24px 45px rgba(56, 75, 104, 0.12);
}

.giving__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
}

.giving__photo--tall {
  left: 26px;
  top: 76px;
  width: 390px;
  height: 480px;
  border-radius: 34px;
}

.giving__photo--small {
  right: 18px;
  top: 110px;
  width: 270px;
  height: 210px;
  border-radius: 30px;
}

.giving__photo--wide {
  right: 10px;
  bottom: 18px;
  width: 340px;
  height: 220px;
  border-radius: 34px;
}

.giving__content {
  max-width: 620px;
}

.giving__eyebrow {
  margin: 0 0 14px;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  color: var(--blue);
}

.giving__content h2 {
  margin: 0;
  font-size: clamp(2.9rem, 5vw, 4.9rem);
  line-height: 1.02;
  color: var(--ink);
  text-wrap: balance;
}

.giving__lead {
  margin: 22px 0 0;
  font-size: 1.04rem;
  line-height: 1.85;
  color: var(--ink-soft);
}

.giving__points {
  display: grid;
  gap: 22px;
  margin-top: 28px;
}

.giving-point {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}

.giving-point__icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: linear-gradient(180deg, #e6effb 0%, #c5d8f3 100%);
  color: var(--blue-deep);
  font-size: 1.5rem;
  font-weight: 900;
  box-shadow: 0 12px 24px rgba(82, 117, 170, 0.16);
}

.giving-point h3 {
  margin: 0;
  font-size: 1.9rem;
  line-height: 1.15;
  color: var(--ink);
}

.giving-point p {
  margin: 8px 0 0;
  line-height: 1.7;
  color: var(--ink-soft);
}

.giving__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 170px;
  min-height: 56px;
  margin-top: 34px;
  padding: 0 24px;
  border-radius: 999px;
  background: var(--blue-deep);
  color: var(--white);
  font-weight: 800;
  box-shadow: 0 16px 30px rgba(39, 77, 126, 0.18);
}

.leaders {
  padding: 18px 0 124px;
  background:
    radial-gradient(circle at 50% 0%, rgba(195, 211, 236, 0.2), transparent 26%),
    linear-gradient(180deg, #fbfdff 0%, #ffffff 100%);
}

.leaders__intro {
  width: min(100%, 760px);
  margin: 0 auto;
  text-align: center;
}

.leaders__intro h2 {
  margin: 0;
  font-size: clamp(2.5rem, 4.6vw, 4rem);
  line-height: 1.06;
  color: var(--ink);
  text-wrap: balance;
}

.leaders__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 52px;
  align-items: stretch;
}

.leader-card {
  display: flex;
  flex-direction: column;
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #f4f8fd 100%);
  border: 1px solid rgba(214, 224, 238, 0.86);
  box-shadow: 0 24px 44px rgba(61, 82, 116, 0.08);
}

.leader-card__portrait {
  position: relative;
  aspect-ratio: 0.9;
  overflow: hidden;
  background: linear-gradient(180deg, #eef3fa 0%, #dde7f4 100%);
}

.leader-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
}

.leader-card__body {
  flex: 1;
  padding: 24px 24px 28px;
  text-align: center;
}

.leader-card__body h3 {
  margin: 0;
  font-size: 1.8rem;
  color: var(--ink);
}

.leader-card__body p {
  margin: 10px 0 0;
  line-height: 1.7;
  color: var(--ink-soft);
}

.leaders__action {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.leaders__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 170px;
  min-height: 56px;
  padding: 0 24px;
  border-radius: 999px;
  background: linear-gradient(180deg, #507fbb 0%, #2f5f98 100%);
  color: var(--white);
  font-weight: 800;
  box-shadow: 0 16px 30px rgba(47, 95, 152, 0.2);
}

.sermons {
  padding: 10px 0 128px;
  background:
    radial-gradient(circle at 50% 0%, rgba(212, 223, 240, 0.2), transparent 26%),
    linear-gradient(180deg, #f9fbff 0%, #ffffff 100%);
}

.sermons__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 46px;
  align-items: center;
}

.sermons__media {
  min-width: 0;
}

.sermons__video-shell {
  position: relative;
  overflow: hidden;
  margin-top: 18px;
  border-radius: 32px;
  background: #dfe8f5;
  box-shadow: 0 24px 50px rgba(57, 78, 110, 0.14);
  aspect-ratio: 1.28;
}

.sermons__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: #dfe8f5;
}

.sermons__embed {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.sermons__sound-toggle {
  position: absolute;
  right: 18px;
  bottom: 18px;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  background: rgba(17, 24, 36, 0.72);
  color: var(--white);
  font-weight: 700;
  cursor: pointer;
  backdrop-filter: blur(12px);
}

.sermons__content {
  max-width: 500px;
}

.sermons__date {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  margin: 0 0 18px;
  border-radius: 999px;
  background: var(--blue-soft);
  color: var(--blue-deep);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sermons__content h2 {
  margin: 0;
  font-size: clamp(2rem, 3.9vw, 3.45rem);
  line-height: 1.06;
  color: var(--blue-deep);
  text-wrap: balance;
}

.sermons__text {
  margin: 20px 0 0;
  font-size: 0.98rem;
  line-height: 1.72;
  color: var(--ink-soft);
}

.sermons__links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.sermons__links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  padding: 0;
  border-radius: 16px;
  border: 1px solid rgba(205, 217, 237, 0.9);
  background: rgba(255, 255, 255, 0.92);
  color: var(--blue-deep);
  box-shadow: 0 10px 22px rgba(70, 93, 130, 0.08);
}

.sermons__links svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.sermons__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 174px;
  min-height: 52px;
  margin-top: 32px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 24px;
  border-radius: 999px;
  background: linear-gradient(180deg, #507fbb 0%, #2f5f98 100%);
  color: var(--white);
  font-size: 0.96rem;
  font-weight: 800;
  box-shadow: 0 16px 30px rgba(47, 95, 152, 0.2);
}

.weekly {
  padding: 4px 0 118px;
  background:
    radial-gradient(circle at 50% 0%, rgba(211, 223, 242, 0.18), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.weekly__intro {
  width: min(100%, 760px);
  margin: 0 auto;
  text-align: center;
}

.weekly__intro h2 {
  margin: 0;
  font-size: clamp(2.4rem, 4.4vw, 3.8rem);
  line-height: 1.05;
  color: var(--ink);
  text-wrap: balance;
}

.weekly__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 48px;
}

.weekly-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 24px 22px;
  border-radius: 26px;
  background: linear-gradient(180deg, #ffffff 0%, #f3f7fc 100%);
  border: 1px solid rgba(214, 224, 238, 0.86);
  box-shadow: 0 20px 38px rgba(61, 82, 116, 0.08);
}

.weekly-card__icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: linear-gradient(180deg, #e4edf9 0%, #cfddf1 100%);
  color: var(--blue-deep);
  font-size: 1.2rem;
  font-weight: 800;
}

.weekly-card__icon svg {
  width: 26px;
  height: 26px;
  display: block;
}

.weekly-card__content h3 {
  margin: 0;
  font-size: 1.5rem;
  color: var(--ink);
}

.weekly-card__content p {
  margin: 6px 0 0;
  color: var(--ink-soft);
  font-weight: 600;
}

.weekly-card__time {
  grid-column: 1 / -1;
  display: inline-flex;
  justify-self: start;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  background: var(--blue-soft);
  color: var(--blue-deep);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.prayer {
  padding: 4px 0 128px;
  background:
    radial-gradient(circle at 50% 0%, rgba(205, 219, 239, 0.18), transparent 28%),
    linear-gradient(180deg, #f9fbff 0%, #ffffff 100%);
}

.prayer__panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 44px;
  align-items: center;
  padding: 28px;
  border-radius: 36px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 248, 253, 0.98));
  border: 1px solid rgba(214, 224, 238, 0.88);
  box-shadow: 0 24px 50px rgba(61, 82, 116, 0.1);
}

.prayer__visual {
  position: relative;
  min-height: 460px;
}

.prayer__accent {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 64%;
  height: 78%;
  border-radius: 30px;
  background: linear-gradient(180deg, #5d83ba 0%, #2f5f98 100%);
}

.prayer__image {
  position: absolute;
  right: 0;
  top: 0;
  width: 88%;
  height: 88%;
  border-radius: 30px;
  object-fit: cover;
  box-shadow: 0 20px 38px rgba(53, 72, 103, 0.16);
  filter: grayscale(100%);
}

.prayer__content {
  max-width: 620px;
}

.prayer__content h2 {
  margin: 0;
  font-size: clamp(2.8rem, 5vw, 4.6rem);
  line-height: 1;
  color: var(--ink);
  text-wrap: balance;
}

.prayer__lead {
  margin: 18px 0 0;
  line-height: 1.8;
  color: var(--ink-soft);
}

.prayer__steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.prayer-step {
  padding: 22px 22px 24px;
  border-radius: 24px;
  background: rgba(244, 248, 253, 0.96);
  border: 1px solid rgba(214, 224, 238, 0.86);
}

.prayer-step--highlight {
  background: linear-gradient(180deg, #3c5f93 0%, #263d5e 100%);
  border-color: transparent;
}

.prayer-step__number {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--blue);
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.prayer-step p {
  margin: 0;
  line-height: 1.75;
  color: var(--ink-soft);
}

.prayer-step--highlight .prayer-step__number,
.prayer-step--highlight p {
  color: var(--white);
}

.prayer__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.prayer__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 184px;
  min-height: 56px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 800;
}

.prayer__cta--primary {
  background: linear-gradient(180deg, #507fbb 0%, #2f5f98 100%);
  color: var(--white);
  box-shadow: 0 16px 30px rgba(47, 95, 152, 0.18);
}

.prayer__cta--secondary {
  border: 1px solid rgba(196, 210, 231, 0.9);
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
}

.testimonials {
  padding: 8px 0 132px;
  background:
    radial-gradient(circle at 50% 0%, rgba(211, 223, 242, 0.22), transparent 28%),
    linear-gradient(180deg, #fbfdff 0%, #f4f8fd 100%);
}

.testimonials__intro {
  width: min(100%, 760px);
  margin: 0 auto;
  text-align: center;
}

.testimonials__intro h2 {
  margin: 0;
  font-size: clamp(2.5rem, 4.6vw, 4rem);
  line-height: 1.05;
  color: var(--ink);
  text-wrap: balance;
}

.testimonials__slider {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  margin-top: 52px;
}

.testimonials__viewport {
  overflow: hidden;
}

.testimonials__track {
  display: flex;
  gap: 22px;
  transition: transform 360ms ease;
  will-change: transform;
  touch-action: pan-y;
}

.testimonial-card {
  flex: 0 0 calc((100% - 44px) / 3);
  min-height: 320px;
  padding: 28px 24px 24px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(241, 246, 253, 0.98)),
    radial-gradient(circle at top, rgba(213, 225, 243, 0.38), transparent 55%);
  border: 1px solid rgba(214, 224, 238, 0.86);
  box-shadow: 0 24px 44px rgba(61, 82, 116, 0.08);
}

.testimonial-card p {
  margin: 0;
  font-size: 1.04rem;
  line-height: 1.9;
  color: var(--ink-soft);
}

.testimonial-card h3 {
  margin: 26px 0 6px;
  font-size: 1.45rem;
  color: var(--ink);
}

.testimonial-card span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--blue-soft);
  color: var(--blue-deep);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.testimonials__arrow {
  width: 58px;
  height: 58px;
  border: 0;
  border-radius: 50%;
  background: var(--blue-deep);
  color: var(--white);
  font-size: 1.35rem;
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(39, 77, 126, 0.18);
}

.testimonials__dots {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.testimonials__dot {
  width: 12px;
  height: 12px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(93, 122, 166, 0.28);
  cursor: pointer;
}

.testimonials__dot--active {
  background: var(--blue-deep);
}

.gallery {
  padding: 10px 0 132px;
  background:
    radial-gradient(circle at 15% 8%, rgba(210, 224, 243, 0.28), transparent 26%),
    radial-gradient(circle at 85% 0%, rgba(222, 232, 247, 0.28), transparent 24%),
    linear-gradient(180deg, #f4f8fd 0%, #ffffff 100%);
}

.gallery__intro {
  width: min(100%, 820px);
  margin: 0 auto;
  text-align: center;
}

.gallery__intro h2 {
  margin: 0;
  font-size: clamp(2.6rem, 5vw, 4.4rem);
  line-height: 1.02;
  color: var(--ink);
  text-wrap: balance;
}

.gallery__lead {
  width: min(100%, 700px);
  margin: 20px auto 0;
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--ink-soft);
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 22px;
  margin-top: 52px;
}

.gallery-card {
  position: relative;
  grid-column: span 4;
  min-height: 280px;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(240, 245, 252, 0.98));
  box-shadow: 0 24px 44px rgba(61, 82, 116, 0.12);
  cursor: pointer;
  text-align: left;
  isolation: isolate;
}

.gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9, 20, 37, 0.02) 0%, rgba(9, 20, 37, 0.68) 100%);
  z-index: 1;
}

.gallery-card--wide {
  grid-column: span 8;
}

.gallery-card--video {
  min-height: 280px;
}

.gallery-card__media {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 360ms ease;
}

.gallery-card:hover .gallery-card__media,
.gallery-card:focus-visible .gallery-card__media {
  transform: scale(1.05);
}

.gallery-card__badge,
.gallery-card__content,
.gallery-card__play {
  position: absolute;
  z-index: 2;
}

.gallery-card__badge {
  top: 18px;
  left: 18px;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--blue-deep);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gallery-card__play {
  top: 18px;
  right: 18px;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: var(--blue-deep);
  font-size: 1.1rem;
  box-shadow: 0 14px 24px rgba(47, 95, 152, 0.18);
}

.gallery-card__content {
  right: 22px;
  bottom: 22px;
  left: 22px;
  display: grid;
  gap: 6px;
  color: var(--white);
}

.gallery-card__content strong {
  font-size: 1.4rem;
  line-height: 1.05;
}

.gallery-card__content span {
  font-size: 0.92rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  opacity: 0.92;
}

.gallery-card:focus-visible {
  outline: 3px solid rgba(47, 95, 152, 0.35);
  outline-offset: 4px;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 28px;
}

.gallery-lightbox[hidden] {
  display: none;
}

.gallery-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 16, 29, 0.72);
  backdrop-filter: blur(8px);
}

.gallery-lightbox__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 1040px);
  max-height: calc(100vh - 56px);
  overflow: auto;
  border-radius: 30px;
  background: linear-gradient(180deg, #ffffff 0%, #f3f7fc 100%);
  border: 1px solid rgba(214, 224, 238, 0.92);
  box-shadow: 0 30px 60px rgba(15, 31, 52, 0.24);
}

.gallery-lightbox__close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: rgba(11, 20, 34, 0.8);
  color: var(--white);
  font-size: 1.8rem;
  cursor: pointer;
}

.gallery-lightbox__media {
  min-height: 320px;
  background: #d9e4f2;
}

.gallery-lightbox__media img,
.gallery-lightbox__media video {
  width: 100%;
  max-height: 72vh;
  display: block;
  object-fit: contain;
  background: #d9e4f2;
}

.gallery-lightbox__meta {
  padding: 22px 26px 28px;
}

.gallery-lightbox__meta h3 {
  margin: 0;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--ink);
}

.gallery-lightbox__meta p {
  margin: 12px 0 0;
  line-height: 1.8;
  color: var(--ink-soft);
}

.support-form {
  padding: 8px 0 132px;
  background:
    radial-gradient(circle at 12% 10%, rgba(214, 226, 245, 0.3), transparent 24%),
    radial-gradient(circle at 100% 0%, rgba(222, 232, 247, 0.4), transparent 22%),
    linear-gradient(180deg, #f9fbff 0%, #f1f6fd 100%);
}

.support-form__panel {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 34px;
  align-items: start;
}

.support-form__content {
  padding: 32px 0;
}

.support-form__content h2 {
  margin: 0;
  font-size: clamp(2.8rem, 5vw, 4.6rem);
  line-height: 0.98;
  color: var(--ink);
  text-wrap: balance;
}

.support-form__lead {
  margin: 20px 0 0;
  max-width: 560px;
  line-height: 1.85;
  color: var(--ink-soft);
  font-size: 1.06rem;
}

.support-form__points {
  display: grid;
  gap: 16px;
  margin-top: 34px;
}

.support-point {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  padding: 16px 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(220, 229, 243, 0.96);
  box-shadow: 0 20px 40px rgba(61, 82, 116, 0.06);
}

.support-point__icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: linear-gradient(180deg, #e4edf9 0%, #cfddf1 100%);
  color: var(--blue-deep);
}

.support-point__icon svg {
  width: 24px;
  height: 24px;
  display: block;
}

.support-point p {
  margin: 0;
  line-height: 1.7;
  color: var(--ink-soft);
  font-weight: 600;
}

.support-form__card {
  padding: 28px;
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 248, 253, 0.98));
  border: 1px solid rgba(214, 224, 238, 0.92);
  box-shadow: 0 26px 52px rgba(61, 82, 116, 0.1);
}

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

.field {
  display: grid;
  gap: 10px;
}

.field span {
  color: var(--blue-deep);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.field span em {
  font-style: normal;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
  text-transform: none;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid rgba(216, 226, 240, 1);
  border-radius: 18px;
  background: rgba(250, 252, 255, 0.98);
  color: var(--ink);
  padding: 0 16px;
  font: inherit;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.field input,
.field select {
  min-height: 58px;
}

.field textarea {
  min-height: 132px;
  padding-top: 16px;
  padding-bottom: 16px;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #8a97a8;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 0;
  border-color: rgba(71, 112, 167, 0.72);
  box-shadow: 0 0 0 4px rgba(63, 110, 168, 0.14);
}

.field--full {
  margin-top: 18px;
}

.support-form__consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 16px;
  color: var(--ink-soft);
  font-size: 0.96rem;
  line-height: 1.6;
}

.support-form__consent input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--blue-deep);
}

.support-form__submit {
  margin-top: 18px;
  min-height: 56px;
  padding: 0 28px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #3f6ea8 0%, #274d7e 100%);
  color: var(--white);
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 18px 34px rgba(39, 77, 126, 0.22);
}

.support-form__submit:hover,
.support-form__submit:focus-visible {
  transform: translateY(-1px);
}

.support-form__submit:disabled {
  cursor: wait;
  opacity: 0.8;
}

.support-form__status {
  margin: 14px 0 0;
  font-size: 0.96rem;
  line-height: 1.6;
  color: var(--ink-soft);
}

.support-form__status--loading {
  color: var(--blue-deep);
}

.support-form__status--success {
  color: #1d6b43;
}

.support-form__status--error {
  color: #8c2f39;
}

.page-hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 100svh;
  padding: clamp(132px, 18vh, 168px) 0 clamp(56px, 9vh, 96px);
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(18, 28, 43, 0.74) 0%, rgba(18, 28, 43, 0.48) 38%, rgba(18, 28, 43, 0.62) 100%),
    linear-gradient(180deg, rgba(16, 24, 37, 0.16), rgba(16, 24, 37, 0.48)),
    var(--page-hero-image, url("slide4.jpg")) center/cover;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 22%, rgba(110, 146, 197, 0.34), transparent 26%),
    radial-gradient(circle at 82% 8%, rgba(203, 221, 246, 0.2), transparent 22%);
  pointer-events: none;
}

.page-hero::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -70px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 245, 225, 0.14) 0%, rgba(255, 245, 225, 0) 72%);
  pointer-events: none;
}

.page-hero__content {
  position: relative;
  z-index: 1;
  width: min(100%, 820px);
  margin: 0 auto;
  text-align: center;
}

.page-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(228, 236, 248, 0.16);
  color: rgba(247, 250, 255, 0.92);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.page-hero h1 {
  margin: 20px 0 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3rem, 6.6vw, 5.15rem);
  line-height: 0.94;
  color: var(--white);
  text-shadow: 0 12px 34px rgba(0, 0, 0, 0.18);
  text-wrap: balance;
}

.page-hero p {
  margin: 22px 0 0;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.08rem;
  line-height: 1.8;
  color: rgba(244, 247, 252, 0.88);
}

.page-hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 30px;
}

.page-hero--about {
  --page-hero-image: url("slide2.jpg");
}

.page-section {
  padding: 0 0 124px;
}

.page-section--soft {
  background:
    radial-gradient(circle at 50% 0%, rgba(211, 223, 242, 0.18), transparent 28%),
    linear-gradient(180deg, #fbfdff 0%, #f4f8fd 100%);
}

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

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

.announcement-feature__layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.88fr) minmax(0, 1.12fr);
  gap: 28px;
  align-items: start;
}

.announcement-feature {
  padding-top: 52px;
}

.announcement-profile-card,
.announcement-board-card,
.announcement-notes__panel,
.announcement-note-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(243, 247, 252, 0.97));
  border: 1px solid rgba(214, 224, 238, 0.92);
  box-shadow: 0 22px 48px rgba(61, 82, 116, 0.1);
}

.announcement-profile-card {
  padding: 24px;
  border-radius: 32px;
}

.announcement-profile-card__portrait {
  overflow: hidden;
  width: 108px;
  height: 108px;
  border-radius: 50%;
  background: rgba(219, 231, 246, 0.7);
  border: 6px solid rgba(255, 255, 255, 0.96);
  box-shadow: 0 16px 30px rgba(61, 82, 116, 0.14);
}

.announcement-profile-card__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
}

.announcement-profile-card__body {
  margin-top: 18px;
}

.announcement-profile-card__tag,
.announcement-board-card__eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(219, 231, 246, 0.95);
  color: var(--blue-deep);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.announcement-profile-card__body h2 {
  margin: 18px 0 10px;
  font-size: clamp(1.9rem, 3.6vw, 2.8rem);
  line-height: 1.04;
  color: var(--ink);
}

.announcement-profile-card__body > p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.8;
}

.announcement-typing {
  margin-top: 20px;
  min-height: 58px;
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(232, 239, 249, 0.92);
  border: 1px solid rgba(211, 223, 242, 0.96);
}

.announcement-typing__text {
  display: inline-block;
  color: var(--ink);
  font-weight: 700;
  line-height: 1.7;
}

.announcement-typing__text::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 1.1em;
  margin-left: 4px;
  background: var(--blue-deep);
  vertical-align: -0.14em;
  animation: announcement-caret 0.9s steps(1) infinite;
}

@keyframes announcement-caret {
  50% {
    opacity: 0;
  }
}

.announcement-board-card {
  padding: 28px;
  border-radius: 34px;
}

.announcement-board-card__header h3 {
  margin: 18px 0 10px;
  font-size: clamp(2rem, 3.9vw, 3.2rem);
  line-height: 1.04;
  color: var(--ink);
  text-wrap: balance;
}

.announcement-board-card__header p {
  margin: 0;
  max-width: 660px;
  color: var(--ink-soft);
  line-height: 1.82;
}

.announcement-board-card__items {
  display: grid;
  gap: 16px;
  margin-top: 30px;
}

.announcement-item {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  padding: 18px;
  border-radius: 24px;
  background: rgba(233, 240, 249, 0.72);
}

.announcement-item__label {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 20px;
  background: linear-gradient(180deg, #3f6ea8 0%, #274d7e 100%);
  color: var(--white);
  font-weight: 800;
}

.announcement-item strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 1.06rem;
}

.announcement-item p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.75;
}

.announcement-item--empty,
.announcement-note-card--empty {
  background: rgba(233, 240, 249, 0.4);
  border: 1px dashed rgba(39, 77, 126, 0.22);
}

.announcement-notes__panel {
  padding: 30px;
  border-radius: 34px;
}

.announcement-notes__intro {
  width: min(100%, 760px);
}

.announcement-notes__intro h2 {
  margin: 0;
  font-size: clamp(2.3rem, 4.2vw, 3.6rem);
  line-height: 1.05;
  color: var(--ink);
}

.announcement-notes__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 34px;
}

.announcement-note-card {
  padding: 24px 22px;
  border-radius: 26px;
}

.announcement-note-card h3 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 1.3rem;
}

.announcement-note-card p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.8;
}

.content-card {
  padding: 28px 24px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(243, 247, 252, 0.98));
  border: 1px solid rgba(214, 224, 238, 0.9);
  box-shadow: 0 24px 44px rgba(61, 82, 116, 0.08);
}

.content-card h2,
.content-card h3 {
  margin: 0;
  color: var(--ink);
}

.content-card p,
.content-card li {
  color: var(--ink-soft);
  line-height: 1.8;
}

.content-card ul {
  margin: 18px 0 0;
  padding-left: 18px;
}

.split-feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.92fr);
  gap: 34px;
  align-items: center;
}

.split-feature__media {
  position: relative;
  min-height: 420px;
  border-radius: 34px;
  overflow: hidden;
  box-shadow: 0 28px 54px rgba(50, 72, 105, 0.14);
}

.split-feature__media img,
.split-feature__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-feature__body h2 {
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.02;
  color: var(--ink);
}

.split-feature__body p {
  margin: 18px 0 0;
  line-height: 1.85;
  color: var(--ink-soft);
}

.about-overview {
  padding-top: 82px;
}

.about-overview__split {
  align-items: stretch;
}

.about-overview__media::after {
  content: "";
  position: absolute;
  inset: auto 18px 18px auto;
  width: 150px;
  height: 150px;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(18, 54, 96, 0.18), rgba(18, 54, 96, 0.06));
  border: 1px solid rgba(235, 242, 252, 0.6);
  backdrop-filter: blur(4px);
}

.about-section-heading {
  width: min(100%, 860px);
  margin: 0 auto 34px;
  text-align: center;
}

.about-section-heading h2 {
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.04;
  color: var(--ink);
}

.about-section-heading p:last-child {
  margin: 18px auto 0;
  max-width: 720px;
  line-height: 1.85;
  color: var(--ink-soft);
}

.about-pillars-grid {
  margin-top: 0;
}

.about-pillar-card {
  position: relative;
  overflow: hidden;
}

.about-pillar-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, #3e74b8, #88afd9);
}

.about-card-tag {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--blue-deep);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about-pillar-card h3 {
  font-size: 1.75rem;
  line-height: 1.12;
}

.about-beliefs-panel {
  margin-top: 28px;
}

.about-beliefs-panel__intro {
  width: min(100%, 720px);
  margin-bottom: 20px;
}

.about-beliefs-panel__intro h3 {
  margin: 0;
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  line-height: 1.08;
  color: var(--ink);
}

.about-beliefs-grid .content-card {
  height: 100%;
}

.about-beliefs-grid ul {
  margin: 0;
}

.about-youth__split {
  align-items: stretch;
}

.about-youth-goals {
  margin-top: 28px;
}

.about-youth-goals .content-card {
  height: 100%;
}

.mini-list {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.mini-list__item {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 14px 16px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(215, 225, 239, 0.94);
}

.mini-list__icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: linear-gradient(180deg, #e4edf9 0%, #cfddf1 100%);
  color: var(--blue-deep);
  font-weight: 800;
}

.mini-list__icon svg {
  width: 22px;
  height: 22px;
  display: block;
}

.mini-list__item strong {
  display: block;
  color: var(--ink);
  font-size: 1rem;
}

.mini-list__item span {
  display: block;
  margin-top: 4px;
  color: var(--ink-soft);
}

.site-footer {
  color: rgba(245, 248, 255, 0.94);
  background:
    radial-gradient(circle at 18% 12%, rgba(82, 122, 184, 0.36), transparent 20%),
    linear-gradient(180deg, #17365d 0%, #1f4e80 100%);
}

.site-footer__top {
  padding: 58px 0 34px;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) repeat(3, minmax(0, 0.7fr));
  gap: 32px;
  align-items: start;
}

.site-footer__brand {
  max-width: 360px;
}

.site-footer__logo {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--white);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-footer__logo img {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 12px 28px rgba(7, 17, 33, 0.22);
}

.site-footer__brand p {
  margin: 18px 0 0;
  line-height: 1.9;
  color: rgba(229, 236, 247, 0.82);
}

.site-footer__contact {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.site-footer__contact a,
.site-footer__contact span {
  color: rgba(245, 248, 255, 0.88);
}

.site-footer__socials {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.site-footer__socials a {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.site-footer__socials svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.site-footer__nav h3 {
  margin: 0 0 18px;
  color: var(--white);
  font-size: 1.2rem;
}

.site-footer__nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.site-footer__nav a {
  color: rgba(233, 239, 248, 0.84);
}

.site-footer__cta {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.site-footer__cta-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto auto;
  gap: 18px;
  align-items: center;
  padding: 26px 0;
}

.site-footer__cta-copy h3 {
  margin: 0;
  color: var(--white);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
}

.site-footer__cta-copy p {
  margin: 8px 0 0;
  color: rgba(228, 235, 246, 0.82);
}

.site-footer__service {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-width: 240px;
  padding: 14px 16px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
}

.site-footer__service-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.14);
}

.site-footer__service strong {
  display: block;
  color: var(--white);
}

.site-footer__service span {
  display: block;
  margin-top: 3px;
  color: rgba(233, 239, 248, 0.78);
  font-size: 0.94rem;
}

.site-footer__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 28px;
  border-radius: 999px;
  background: #f8d777;
  color: #1d2d47;
  font-weight: 800;
  box-shadow: 0 18px 34px rgba(9, 23, 42, 0.18);
}

.site-footer__bottom {
  padding: 18px 0 34px;
}

.site-footer__bottom-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  color: rgba(230, 236, 247, 0.72);
  font-size: 0.92rem;
}

.about-story {
  padding: 148px 0 124px;
  background:
    radial-gradient(circle at top, rgba(170, 192, 224, 0.22), transparent 22%),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.about-story__hero {
  position: relative;
  min-height: 720px;
  padding: 44px;
  overflow: hidden;
  border-radius: 42px;
  background:
    linear-gradient(180deg, rgba(11, 20, 34, 0.18), rgba(11, 20, 34, 0.58)),
    linear-gradient(120deg, rgba(27, 53, 87, 0.78), rgba(78, 109, 148, 0.36)),
    url("slide1.jpg") center/cover;
  box-shadow: 0 34px 68px rgba(32, 53, 84, 0.2);
}

.about-story__hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 0 6%, transparent 6% 12%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 12% 18%, transparent 18% 24%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 24% 32%, transparent 32% 40%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 40% 48%, transparent 48% 56%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 56% 66%, transparent 66% 74%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 74% 82%, transparent 82% 90%);
  mix-blend-mode: screen;
  opacity: 0.42;
  pointer-events: none;
}

.about-story__nav {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.84rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about-story__nav span {
  white-space: nowrap;
}

.about-story__headline {
  position: relative;
  z-index: 1;
  max-width: 860px;
  margin: 70px auto 0;
  text-align: center;
  color: var(--white);
}

.about-story__headline h1 {
  margin: 0;
  font-size: clamp(4rem, 10vw, 7.6rem);
  line-height: 0.88;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.about-story__headline p {
  width: min(100%, 680px);
  margin: 22px auto 0;
  line-height: 1.85;
  color: rgba(243, 247, 254, 0.86);
}

.about-story__hero-image {
  position: absolute;
  left: 50%;
  bottom: 122px;
  width: min(52vw, 620px);
  transform: translateX(-50%);
  filter: drop-shadow(0 24px 48px rgba(8, 16, 28, 0.35));
}

.about-story__hero-image img {
  width: 100%;
  object-fit: cover;
}

.about-story__scroll {
  position: absolute;
  left: 50%;
  bottom: -42px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: #0d1520;
  color: var(--white);
  box-shadow: 0 20px 38px rgba(13, 21, 32, 0.22);
  transform: translateX(-50%);
}

.about-story__scroll::before {
  content: "";
  width: 22px;
  height: 22px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translate(-2px, -2px);
}

.about-story__intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr) auto;
  gap: 24px;
  align-items: end;
  margin-top: 112px;
}

.about-story__intro h2 {
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1;
  color: var(--ink);
}

.about-story__intro p {
  margin: 0;
  max-width: 520px;
  line-height: 1.85;
  color: var(--ink-soft);
}

.about-story__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 24px;
  border-radius: 999px;
  background: #11181f;
  color: var(--white);
  font-weight: 700;
}

.about-story__tabs {
  display: flex;
  justify-content: center;
  gap: 38px;
  margin-top: 34px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-story__tabs span {
  position: relative;
  color: var(--ink-soft);
}

.about-story__tabs span:first-child {
  color: var(--ink);
}

.about-story__tabs span:first-child::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -14px;
  height: 2px;
  border-radius: 999px;
  background: var(--ink);
}

.about-showcase {
  margin-top: 34px;
  padding: 34px;
  border-radius: 34px;
  background: linear-gradient(180deg, #f2f5fa 0%, #eef3f8 100%);
  box-shadow: inset 0 0 0 1px rgba(221, 229, 240, 0.86);
}

.about-showcase__frame {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: 28px;
  background:
    radial-gradient(circle at center, rgba(110, 137, 177, 0.12), transparent 40%),
    linear-gradient(180deg, #f8fbff 0%, #e9eef5 100%);
}

.about-showcase__watermark {
  position: absolute;
  left: 50%;
  top: 32px;
  transform: translateX(-50%);
  font-size: clamp(8rem, 18vw, 16rem);
  font-weight: 800;
  letter-spacing: -0.08em;
  color: rgba(30, 42, 56, 0.05);
}

.about-showcase__image {
  position: absolute;
  left: 50%;
  bottom: 36px;
  width: min(86%, 900px);
  transform: translateX(-50%);
}

.about-showcase__image img {
  width: 100%;
  border-radius: 26px;
  object-fit: cover;
  box-shadow: 0 20px 40px rgba(63, 84, 114, 0.14);
}

.about-showcase__stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.about-showcase__stat {
  padding-left: 18px;
  border-left: 1px solid rgba(105, 122, 148, 0.24);
}

.about-showcase__stat:first-child {
  border-left: 0;
  padding-left: 0;
}

.about-showcase__stat span {
  display: block;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.about-showcase__stat strong {
  display: block;
  margin-top: 8px;
  color: var(--ink);
  font-size: 1.9rem;
  line-height: 1;
}

.about-feature-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 26px;
  margin-top: 58px;
}

.about-feature-grid__lead {
  overflow: hidden;
  border-radius: 30px;
  min-height: 420px;
  box-shadow: 0 24px 48px rgba(52, 71, 100, 0.12);
}

.about-feature-grid__lead img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-feature-grid__stack {
  display: grid;
  gap: 18px;
}

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

.about-feature-grid__thumbs img {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 26px;
  object-fit: cover;
  box-shadow: 0 16px 32px rgba(52, 71, 100, 0.1);
}

.about-feature-grid__copy h3 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
  color: var(--ink);
}

.about-feature-grid__copy p {
  margin: 12px 0 0;
  line-height: 1.85;
  color: var(--ink-soft);
}

.about-values {
  margin-top: 82px;
}

.about-values__intro {
  text-align: center;
}

.about-values__intro h2 {
  margin: 0;
  font-size: clamp(2.3rem, 5vw, 3.8rem);
  line-height: 1.05;
  color: var(--ink);
}

.about-values__intro p {
  width: min(100%, 760px);
  margin: 18px auto 0;
  line-height: 1.85;
  color: var(--ink-soft);
}

.about-values__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.about-values__card {
  min-height: 240px;
  padding: 22px 20px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(245, 248, 252, 0.98), rgba(239, 244, 250, 0.98));
  box-shadow: inset 0 0 0 1px rgba(222, 229, 239, 0.9);
}

.about-values__card strong {
  display: block;
  color: var(--ink);
  font-size: 1.4rem;
  line-height: 1.15;
}

.about-values__card p,
.about-values__card li {
  color: var(--ink-soft);
  line-height: 1.8;
}

.about-values__card ul {
  margin: 16px 0 0;
  padding-left: 18px;
}

.about-location {
  margin-top: 84px;
  overflow: hidden;
  border-radius: 36px;
  background:
    linear-gradient(180deg, rgba(10, 18, 30, 0.7), rgba(10, 18, 30, 0.76)),
    url("slide4.jpg") center/cover;
  box-shadow: 0 28px 60px rgba(27, 39, 59, 0.16);
}

.about-location__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 24px;
  align-items: center;
  padding: 42px;
}

.about-location__content h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(2.3rem, 5vw, 3.6rem);
  line-height: 1.04;
}

.about-location__content p {
  margin: 16px 0 0;
  line-height: 1.85;
  color: rgba(235, 241, 250, 0.82);
}

.about-location__content .button {
  margin-top: 24px;
}

.about-location__map {
  min-height: 360px;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: 0 24px 44px rgba(7, 15, 26, 0.22);
}

.about-location__map iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  display: block;
  border: 0;
}

.location-hub__intro,
.location-testimonies__intro,
.location-faq__intro {
  width: min(100%, 760px);
  margin: 0 auto;
  text-align: center;
}

.location-hub__intro h2,
.location-testimonies__intro h2,
.location-faq__intro h2 {
  margin: 0;
  font-size: clamp(2.4rem, 4.4vw, 3.8rem);
  line-height: 1.04;
  color: var(--ink);
  text-wrap: balance;
}

.location-hub__intro p,
.location-testimonies__intro p,
.location-faq__intro p {
  margin: 18px auto 0;
  color: var(--ink-soft);
  line-height: 1.8;
}

.location-hub__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 26px;
  margin-top: 40px;
  align-items: start;
}

.location-hub__map-card,
.location-info-card,
.location-expect__panel,
.location-support__panel,
.location-testimony-card,
.location-faq__item {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(243, 247, 252, 0.96));
  box-shadow: 0 18px 42px rgba(44, 63, 96, 0.1);
}

.location-hub__map-card {
  overflow: hidden;
  border-radius: 30px;
  aspect-ratio: 16 / 11;
  min-height: 0;
}

.location-hub__map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 100%;
  display: block;
  border: 0;
}

.location-hub__details {
  display: grid;
  gap: 22px;
}

.location-info-card {
  padding: 26px 24px;
  border-radius: 28px;
}

.location-info-card__tag {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(219, 231, 246, 0.95);
  color: var(--blue-deep);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.location-info-card h3 {
  margin: 18px 0 12px;
  font-size: 1.55rem;
  color: var(--ink);
}

.location-info-card p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.8;
}

.location-info-card__list,
.location-schedule {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.location-info-card__list span,
.location-schedule__item {
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(234, 240, 249, 0.82);
  color: var(--ink);
}

.location-schedule__item strong {
  display: block;
  margin-bottom: 6px;
}

.location-schedule__item span {
  color: var(--ink-soft);
}

.location-expect__panel {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  gap: 30px;
  padding: 30px;
  border-radius: 34px;
  align-items: center;
}

.location-expect__content h2 {
  margin: 0;
  font-size: clamp(2rem, 3.2vw, 3.15rem);
  line-height: 1.08;
  color: var(--ink);
  text-wrap: balance;
}

.location-expect__content > p {
  margin: 18px 0 0;
  color: var(--ink-soft);
  line-height: 1.8;
}

.location-expect__points {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.location-expect__point {
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(235, 241, 249, 0.78);
}

.location-expect__point strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
}

.location-expect__point p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.7;
}

.location-expect__media {
  overflow: hidden;
  aspect-ratio: 4 / 3;
  min-height: 0;
  border-radius: 28px;
}

.location-expect__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.location-testimonies__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.location-testimony-card {
  padding: 24px 22px;
  border-radius: 24px;
  border: 1px solid rgba(214, 224, 238, 0.92);
}

.location-testimony-card p {
  margin: 0;
  color: var(--ink);
  line-height: 1.75;
}

.location-testimony-card h3 {
  margin: 18px 0 0;
  font-size: 1rem;
  color: var(--blue-deep);
}

.location-faq__list {
  width: min(100%, 900px);
  margin: 38px auto 0;
  display: grid;
  gap: 16px;
}

.location-faq__item {
  padding: 0;
  border-radius: 22px;
  overflow: hidden;
}

.location-faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 22px;
  font-weight: 700;
  color: var(--ink);
}

.location-faq__item summary::-webkit-details-marker {
  display: none;
}

.location-faq__item p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--ink-soft);
  line-height: 1.8;
}

@media (max-width: 980px) {
  .location-hub__layout,
  .location-expect__panel {
    grid-template-columns: 1fr;
  }

  .location-hub__map-card {
    aspect-ratio: 16 / 10;
  }

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

@media (max-width: 640px) {
  .location-hub__map-card {
    aspect-ratio: 1 / 1;
    border-radius: 24px;
  }

  .location-info-card,
  .location-expect__panel,
  .location-testimony-card {
    padding: 20px 16px;
  }

  .location-expect__media {
    aspect-ratio: 1 / 1;
    border-radius: 22px;
  }

  .location-testimonies__grid {
    grid-template-columns: 1fr;
  }

  .location-faq__item summary {
    padding: 18px 16px;
  }

  .location-faq__item p {
    padding: 0 16px 18px;
  }
}

@media (max-width: 980px) {
  .announcement-feature__layout,
  .announcement-notes__grid {
    grid-template-columns: 1fr;
  }

  .nav-group {
    gap: 14px;
    font-size: 0.8rem;
  }

  .brand__name {
    font-size: 0.8rem;
  }

  .events__rail {
    grid-template-columns: 1fr;
  }

  .events__arrow {
    display: none;
  }

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

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

  .giving__layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .giving__visual {
    min-height: 560px;
  }

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

  .sermons__layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .sermons__content {
    max-width: 100%;
  }

  .weekly__grid {
    grid-template-columns: 1fr;
  }

  .prayer__panel {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .prayer__visual {
    min-height: 420px;
  }

  .prayer__steps {
    grid-template-columns: 1fr;
  }

  .testimonial-card {
    flex-basis: calc((100% - 22px) / 2);
  }

  .support-form__panel {
    grid-template-columns: 1fr;
  }

  .split-feature,
  .site-footer__grid,
  .site-footer__cta-row,
  .page-grid--three {
    grid-template-columns: 1fr;
  }

  .page-grid {
    grid-template-columns: 1fr;
  }

  .about-story__intro,
  .about-showcase__stats,
  .about-feature-grid,
  .about-location__inner,
  .about-values__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .site-header::before,
  .site-header.header-scrolled::before {
    inset: 14px 10px auto;
    height: 76px;
    background: rgba(255, 248, 239, 0);
    border-color: transparent;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .page-shell--header {
    width: min(calc(100% - 20px), 1180px);
    padding-top: 14px;
  }

  .nav-bar {
    position: relative;
    padding: 12px 14px;
    border-radius: 20px;
    background: rgba(247, 250, 254, 0.78);
    border: 1px solid rgba(204, 218, 238, 0.64);
    box-shadow: 0 12px 30px rgba(44, 63, 96, 0.08);
    backdrop-filter: blur(16px);
  }

  .nav-toggle {
    display: block;
    background: rgba(255, 255, 255, 0.95);
  }

  .nav-group {
    display: none;
  }

  .brand {
    color: var(--ink);
  }

  .nav-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 14px;
    border-radius: 22px;
    background: rgba(248, 251, 255, 0.98);
    border: 1px solid rgba(205, 219, 238, 0.64);
    box-shadow: 0 24px 50px rgba(54, 73, 102, 0.12);
    backdrop-filter: blur(18px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
    z-index: 2;
  }

  .nav-menu a {
    color: var(--ink);
    width: 100%;
    padding: 14px 16px;
    border-radius: 14px;
    background: rgba(228, 236, 248, 0.64);
  }

  .nav-menu.nav-menu--open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
}

@media (max-width: 640px) {
  .announcement-profile-card,
  .announcement-board-card,
  .announcement-notes__panel,
  .announcement-note-card {
    padding: 20px 16px;
  }

  .announcement-item {
    grid-template-columns: 1fr;
  }

  .announcement-item__label {
    width: 50px;
    height: 50px;
    border-radius: 16px;
  }

  .page-shell {
    width: min(calc(100% - 18px), 1180px);
  }

  .brand__logo {
    width: 34px;
    height: 34px;
  }

  .hero {
    min-height: 100svh;
    padding: 106px 0 34px;
  }

  .hero__content {
    text-align: center;
  }

  .hero__text {
    margin-left: auto;
    margin-right: auto;
  }

  .hero__actions,
  .hero__dots {
    justify-content: center;
  }

  .hero h1 {
    font-size: clamp(3rem, 14vw, 4.5rem);
  }

  .button {
    width: 100%;
  }

  .mission {
    padding: 84px 0 92px;
  }

  .mission__intro h2 {
    font-size: clamp(2rem, 9vw, 3rem);
  }

  .mission__grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 38px;
  }

  .mission__card {
    aspect-ratio: 1.05;
  }

  .events {
    padding: 10px 0 92px;
  }

  .events__grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .event-card h3 {
    font-size: 1.5rem;
  }

  .giving {
    padding: 8px 0 92px;
  }

  .giving__visual {
    min-height: 420px;
  }

  .giving__shape {
    left: 0;
    top: 26px;
    width: 100px;
    height: 150px;
  }

  .giving__photo--tall {
    left: 10px;
    top: 48px;
    width: 58%;
    height: 300px;
  }

  .giving__photo--small {
    right: 0;
    top: 70px;
    width: 42%;
    height: 140px;
  }

  .giving__photo--wide {
    right: 0;
    bottom: 0;
    width: 58%;
    height: 150px;
  }

  .giving__content h2 {
    font-size: clamp(2.2rem, 10vw, 3.4rem);
  }

  .giving-point {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 14px;
  }

  .giving-point__icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    font-size: 1.2rem;
  }

  .giving-point h3 {
    font-size: 1.45rem;
  }

  .leaders {
    padding: 8px 0 96px;
  }

  .leaders__grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .leader-card__portrait {
    aspect-ratio: 1;
  }

  .leader-card__image {
    object-position: center 12%;
  }

  .leader-card__body h3 {
    font-size: 1.5rem;
  }

  .sermons {
    padding: 6px 0 96px;
  }

  .sermons__video-shell {
    border-radius: 24px;
  }

  .sermons__sound-toggle {
    right: 12px;
    bottom: 12px;
    min-height: 42px;
    padding: 0 14px;
    font-size: 0.9rem;
  }

  .sermons__content h2 {
    font-size: clamp(2.1rem, 10vw, 3.2rem);
  }

  .sermons__links a {
    width: 50px;
    height: 50px;
  }

  .weekly {
    padding: 6px 0 92px;
  }

  .weekly-card {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .weekly__intro h2 {
    font-size: clamp(2rem, 10vw, 2.8rem);
  }

  .weekly-card__icon {
    width: 48px;
    height: 48px;
  }

  .weekly-card__content h3 {
    font-size: 1.35rem;
  }

  .prayer {
    padding: 6px 0 96px;
  }

  .prayer__panel {
    padding: 18px;
    border-radius: 28px;
  }

  .prayer__visual {
    min-height: 320px;
  }

  .prayer__accent {
    width: 62%;
    height: 72%;
    border-radius: 24px;
  }

  .prayer__image {
    width: 92%;
    height: 86%;
    border-radius: 24px;
  }

  .prayer__content h2 {
    font-size: clamp(2.2rem, 11vw, 3.5rem);
  }

  .prayer__cta {
    width: 100%;
  }

  .testimonials {
    padding: 6px 0 96px;
  }

  .testimonials__slider {
    grid-template-columns: 1fr;
  }

  .testimonials__arrow {
    display: none;
  }

  .testimonial-card {
    flex-basis: 100%;
    min-height: auto;
  }

  .gallery {
    padding: 8px 0 104px;
  }

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

  .gallery-card,
  .gallery-card--wide {
    grid-column: span 1;
  }

  .gallery-card {
    min-height: 260px;
  }

  .support-form {
    padding: 6px 0 96px;
  }

  .support-form__card {
    padding: 22px;
    border-radius: 28px;
  }

  .support-form__grid {
    grid-template-columns: 1fr;
  }

  .page-hero {
    min-height: 100svh;
    padding: 128px 0 60px;
  }

  .split-feature__media {
    min-height: 320px;
  }

  .about-story {
    padding-top: 132px;
  }

  .about-story__hero {
    min-height: 620px;
    padding: 28px 22px;
    border-radius: 30px;
  }

  .about-story__hero-image {
    width: min(82vw, 500px);
    bottom: 108px;
  }

  .about-story__scroll {
    width: 76px;
    height: 76px;
    bottom: -36px;
  }

  .about-showcase,
  .about-location__inner {
    padding: 24px;
  }

  .about-showcase__frame {
    min-height: 420px;
  }

  .site-footer__top {
    padding-top: 44px;
  }

  .site-footer__cta-row {
    justify-items: start;
  }

  .site-footer__service {
    min-width: 0;
    width: 100%;
  }
}

@media (max-width: 640px) {
  .gallery__intro h2 {
    font-size: clamp(2.2rem, 10vw, 3.2rem);
  }

  .gallery__lead {
    font-size: 0.98rem;
  }

  .gallery__grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 38px;
  }

  .gallery-card,
  .gallery-card--wide {
    grid-column: auto;
    min-height: 240px;
    border-radius: 24px;
  }

  .gallery-card__badge {
    top: 14px;
    left: 14px;
  }

  .gallery-card__play {
    top: 14px;
    right: 14px;
    width: 46px;
    height: 46px;
  }

  .gallery-card__content {
    right: 16px;
    bottom: 16px;
    left: 16px;
  }

  .gallery-card__content strong {
    font-size: 1.18rem;
  }

  .gallery-lightbox {
    padding: 14px;
  }

  .gallery-lightbox__dialog {
    border-radius: 24px;
  }

  .gallery-lightbox__meta {
    padding: 18px 18px 22px;
  }

  .support-form__content {
    padding: 8px 0 0;
  }

  .support-form__content h2 {
    font-size: clamp(2.3rem, 11vw, 3.5rem);
  }

  .support-form__lead {
    font-size: 0.98rem;
  }

  .support-point {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 14px;
    padding: 14px;
    border-radius: 20px;
  }

  .support-point__icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
  }

  .field input,
  .field select {
    min-height: 54px;
  }

  .support-form__submit {
    width: 100%;
  }

  .page-hero {
    min-height: 100svh;
    padding: 118px 0 48px;
  }

  .page-hero__content {
    width: min(100%, 700px);
  }

  .page-hero h1 {
    font-size: clamp(2.8rem, 13vw, 4rem);
  }

  .page-hero p {
    font-size: 1rem;
  }

  .content-card {
    padding: 22px 18px;
    border-radius: 22px;
  }

  .about-story__nav {
    font-size: 0.72rem;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .about-story__headline {
    margin-top: 46px;
  }

  .about-story__headline h1 {
    font-size: clamp(3rem, 15vw, 4.8rem);
  }

  .about-story__intro {
    margin-top: 88px;
  }

  .about-story__tabs {
    gap: 18px;
    font-size: 0.82rem;
    flex-wrap: wrap;
  }

  .about-showcase__frame {
    min-height: 320px;
  }

  .about-showcase__watermark {
    top: 70px;
    font-size: clamp(5rem, 24vw, 8rem);
  }

  .about-showcase__image {
    width: 92%;
    bottom: 24px;
  }

  .about-feature-grid__lead {
    min-height: 300px;
  }

  .about-feature-grid__thumbs {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .about-location {
    border-radius: 28px;
  }

  .about-location__inner {
    padding: 20px;
  }

  .about-location__map,
  .about-location__map iframe {
    min-height: 280px;
  }

  .site-footer__logo {
    align-items: flex-start;
  }

  .site-footer__logo img {
    width: 54px;
    height: 54px;
  }

  .site-footer__cta-copy h3 {
    font-size: 1.9rem;
  }

  .site-footer__button {
    width: 100%;
  }

  .site-footer__bottom-row {
    flex-direction: column;
  }
}

/* YouTube Section Styles */
.youtube-section {
  text-align: center;
  padding: 20px 0;
}

.youtube-section h2 {
  margin: 0 0 12px;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.2;
  color: var(--ink);
}

.youtube-section > p {
  margin: 0 0 32px;
  font-size: 1.1rem;
  color: var(--ink-soft);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.youtube-tabs {
  display: flex;
  gap: 12px;
  margin-bottom: 32px;
  justify-content: center;
  flex-wrap: wrap;
}

.youtube-tab-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border: 2px solid var(--gold);
  background: transparent;
  color: var(--ink);
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 220ms ease;
}

.youtube-tab-button:hover {
  background: var(--gold);
  color: var(--white);
}

.youtube-tab-button.active,
.youtube-tab-button--active {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
}

.youtube-content {
  margin-top: 32px;
}

.youtube-content-block {
  margin-top: 44px;
  scroll-margin-top: 130px;
  animation: fadeIn 220ms ease;
}

.youtube-content-block:first-child {
  margin-top: 0;
}

.youtube-panel {
  padding: 28px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 248, 253, 0.96));
  box-shadow: 0 18px 42px rgba(44, 63, 96, 0.1);
}

.youtube-block-heading {
  margin: 0 auto 20px;
  max-width: 680px;
  text-align: center;
}

.youtube-block-heading span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(219, 231, 246, 0.9);
  color: var(--blue-deep);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.youtube-block-heading h3 {
  margin: 14px 0 0;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  line-height: 1.15;
  color: var(--ink);
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.youtube-subscribe-btn {
  padding: 16px 40px;
  background: var(--blue);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 220ms ease;
  display: inline-block;
}

.youtube-subscribe-btn:hover {
  background: var(--blue-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(63, 110, 168, 0.3);
}

.youtube-description {
  margin: 16px 0 0;
  color: var(--ink-soft);
  font-size: 1rem;
  text-align: center;
}

.youtube-video-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 24px;
}

.youtube-live-feed,
.youtube-shorts-feed,
.youtube-posts-section {
  max-width: 900px;
  margin: 0 auto;
}

.youtube-video-card {
  padding: 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 36px rgba(44, 63, 96, 0.1);
  text-align: left;
  border: 1px solid rgba(207, 218, 235, 0.8);
}

.youtube-video-frame,
.youtube-live-embed,
/* YouTube Embed Containers */
.youtube-playlist-embed,
.youtube-shorts-container {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 24px auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(44, 63, 96, 0.12);
  aspect-ratio: 16 / 9;
}

.youtube-video-frame {
  margin: 0;
  max-width: none;
  border-radius: 20px;
}

.youtube-video-meta {
  margin-top: 16px;
}

.youtube-video-meta h3 {
  margin: 0 0 10px;
  font-size: 1.16rem;
  color: var(--ink);
}

.youtube-video-meta p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.7;
}

.youtube-video-frame iframe,
.youtube-live-embed iframe,
.youtube-playlist-embed iframe,
.youtube-shorts-container iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: none;
}

.youtube-live-embed {
  margin-bottom: 24px;
}

.youtube-live-notice {
  background: var(--blue-soft);
  padding: 32px 24px;
  border-radius: 12px;
  margin: 24px auto;
  max-width: 600px;
}

.youtube-live-notice p {
  margin: 12px 0;
  color: var(--ink);
  font-size: 1.1rem;
}

.youtube-live-notice strong {
  color: var(--blue-deep);
}

.youtube-posts-section {
  padding: 24px;
  text-align: center;
}

/* Mobile adjustments */
@media (max-width: 640px) {
  .youtube-panel {
    padding: 20px 16px;
    border-radius: 22px;
  }

  .youtube-video-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .youtube-video-card {
    padding: 14px;
    border-radius: 20px;
  }

  .youtube-video-frame,
  .youtube-live-embed,
  .youtube-playlist-embed,
  .youtube-shorts-container {
    margin: 16px auto;
  }

  .youtube-video-frame iframe,
  .youtube-live-embed iframe,
  .youtube-playlist-embed iframe,
  .youtube-shorts-container iframe {
    height: 100%;
  }

  .youtube-live-notice {
    padding: 20px 16px;
    margin: 16px auto;
  }

  .youtube-subscribe-btn {
    padding: 12px 28px;
    font-size: 1rem;
  }
}
