/* =====================================================================
   Kingdom Stars Assembly — brand override for the Heartox template
   Loaded AFTER heartox.css so these win. Rebrands the template's green
   palette to KSA navy (#10256B) while keeping the gold secondary.
   ===================================================================== */
:root {
  /* Brand navy (from the KSA logo) replaces the template's greens */
  --heartox-primary: #10256B;
  --heartox-primary-rgb: 16, 37, 107;
  --heartox-base: #0B1A44;
  --heartox-base-rgb: 11, 26, 68;
  --heartox-text-dark: #0B1A44;
  --heartox-text-dark-rgb: 11, 26, 68;
  --heartox-text-gray: #6E7BA6;
  --heartox-text-gray-rgb: 110, 123, 166;

  /* Gold secondary kept — pairs with navy for the "Kingdom Stars" feel */
  --heartox-secondary: #E2AA01;
  --heartox-secondary-rgb: 226, 170, 1;

  /* KSA aliases used by our own components */
  --ksa-navy: #10256B;
  --ksa-navy-deep: #0B1A44;
  --ksa-gold: #E2AA01;

  /* Typography — Anton (bold condensed display) + Archivo (body), inspired by modern church sites */
  --heartox-font: "Archivo", system-ui, -apple-system, sans-serif;
  --heartox-heading-font: "Archivo", system-ui, sans-serif;
  --heartox-special-font: "Caveat", cursive;
  --ksa-display: "Anton", "Archivo Black", Impact, sans-serif;
}

/* Big statement titles use the Anton display face — ALL CAPS (CCI/GLT style) */
.ksa-hero__title,
.ksa-banner__title,
.sec-title__title,
.ksa-feature__title,
.ksa-event__title {
  font-family: var(--ksa-display);
  font-weight: 400;
  letter-spacing: .01em;
  line-height: 1.04;
  text-transform: uppercase;
}
.sec-title__title { line-height: 1.08; }
.ksa-event__title { letter-spacing: .005em; }

/* A few literal greens in the template that aren't tied to the vars */
.topbar-one,
.main-header__inner__right,
.cta-one,
.cta-one-footer {
  background-color: var(--ksa-navy);
}

/* ---- Header / logo ---- */
/* Solid navy header so the white logo reads over the hero AND when sticky */
.main-header--one { background-color: var(--ksa-navy); }
/* Neutralise the template's two-tone white panels on the right of the header */
.main-header--one .main-header__inner,
.main-header--one .main-header__bottom,
.main-header--one .main-header__right,
.main-header--one .main-header__inner__right { background: transparent !important; }
.main-header__inner__right { display: none !important; }
/* Kill every decorative template shape/graphic in the header (keep only the logo) */
.main-header .shape,
.main-header .shape-one,
.main-header [class*="shape"],
.main-header svg,
.main-header__bottom::before,
.main-header__bottom::after,
.main-header__inner::before,
.main-header__inner::after { display: none !important; }
.main-header__logo::before,
.main-header__logo::after { display: none !important; }
.main-header--one.sticky-header--cloned,
.stricky-header.stricked-menu,
.sticky-header--cloned { background-color: var(--ksa-navy) !important; box-shadow: 0 6px 24px -12px rgba(0,0,0,.5); }
/* Horizontal logo (~4:1) */
.main-header__logo img { width: auto; height: 42px; }
@media (max-width: 991px){ .main-header__logo img { height: 34px; } }
/* Nav link colours on the navy header */
.main-menu .main-menu__list > li > a { color: rgba(255,255,255,.86); }
/* Hover / active: bright gold (template default turns them dark navy) */
.main-menu .main-menu__list > li:hover > a,
.main-menu .main-menu__list > li.current > a { color: var(--ksa-gold) !important; text-shadow: none; }
/* Dropdown rows: bright gold background with dark text on hover */
.main-menu .main-menu__list li ul li:hover > a,
.main-menu .main-menu__list li ul li.current > a {
  background-color: var(--ksa-gold) !important;
  color: var(--ksa-navy-deep) !important;
}
/* Mobile nav uses the same gold accent on active/expanded items */
.mobile-nav__content .main-menu__list > li > a:hover,
.mobile-nav__content .main-menu__list > li.current > a { color: var(--ksa-gold); }

/* ---- Hero (single static slide, no carousel dependency) ---- */
.ksa-hero {
  position: relative;
  min-height: clamp(820px, 106vh, 1320px);
  display: flex;
  align-items: center;
  color: #fff;
  isolation: isolate;
  overflow: hidden;
  background: var(--ksa-navy-deep);
}
.ksa-hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 32%;
  z-index: -2;
}
.ksa-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(11,26,68,.72) 0%, rgba(11,26,68,.52) 42%, rgba(11,26,68,.82) 100%),
    radial-gradient(ellipse at center, rgba(11,26,68,.18) 0%, rgba(11,26,68,.55) 100%);
}
/* Centered hero content (CCI-style) */
.ksa-hero .ksa-hero__title,
.ksa-hero .ksa-hero__text { margin-left: auto; margin-right: auto; }
.ksa-hero__btns { justify-content: center; }
.ksa-hero__times { border-left: 2px solid rgba(255,255,255,.25); }
@media (prefers-reduced-motion: reduce) {
  .ksa-hero__video { display: none; }
  .ksa-hero { background: var(--ksa-navy-deep) url(/images/hero-worship.jpg) center 18%/cover; }
}
.ksa-hero__sub {
  font-family: var(--heartox-special-font);
  color: var(--ksa-gold);
  font-size: 30px;
  line-height: 1;
  margin-bottom: 14px;
}
.ksa-hero__title {
  color: #fff;
  font-size: clamp(2rem, 4.4vw, 3.7rem);
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: 22px;
  max-width: 30ch;   /* wider so the headline flows to ~3 lines, not 4 */
  text-wrap: balance;
}
.ksa-hero__text {
  color: rgba(255,255,255,.85);
  font-size: 1.075rem;
  max-width: 56ch;
  margin-bottom: 34px;
}
.ksa-hero__btns { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }
.ksa-hero__times {
  margin-left: 6px; padding-left: 22px; border-left: 2px solid rgba(255,255,255,.25);
  font-size: .95rem; color: rgba(255,255,255,.9);
}
.ksa-hero__times b { color: var(--ksa-gold); display:block; font-family: var(--heartox-heading-font); }
@media (max-width: 575px){
  .ksa-hero__btns { flex-direction: column; gap: 14px; }
  .ksa-hero__btns .heartox-btn { width: 100%; max-width: 330px; }
  .ksa-hero__times { border-left: 0; padding-left: 0; margin-left: 0; margin-top: 6px; text-align: center; }
}
/* Hero title line breaks are desktop-only; on mobile the title wraps naturally */
@media (max-width: 767px){ .hero-br { display: none; } }

/* ---- Generic section tagline star accent ---- */
.sec-title__tagline { color: var(--ksa-navy); font-weight: 700; }

/* ---- Info / feature cards on home ---- */
.ksa-quick { margin-top: -70px; position: relative; z-index: 3; }
.ksa-quick__card {
  background: #fff; border-radius: 16px; padding: 32px 28px; height: 100%;
  box-shadow: 0 24px 60px -30px rgba(11,26,68,.45);
  border-top: 4px solid var(--ksa-gold); transition: transform .3s ease;
}
.ksa-quick__card:hover { transform: translateY(-6px); }
.ksa-quick__icon { font-size: 40px; color: var(--ksa-navy); margin-bottom: 16px; display:block; }
.ksa-quick__card h4 { font-family: var(--heartox-heading-font); font-size: 1.25rem; color: var(--ksa-navy-deep); margin-bottom: 8px; }
.ksa-quick__card p { color: var(--heartox-text); margin-bottom: 16px; }
.ksa-quick__card a { color: var(--ksa-navy); font-weight: 700; }

/* ---- Ministries grid ---- */
.ksa-min__card {
  display:block; background:#fff; border:1px solid #ECECF3; border-radius:14px;
  padding:26px 22px; height:100%; text-align:center; transition:.3s ease;
}
.ksa-min__card:hover { border-color: var(--ksa-navy); box-shadow: 0 20px 44px -26px rgba(11,26,68,.4); transform: translateY(-4px); }
.ksa-min__card i { font-size: 38px; color: var(--ksa-navy); }
.ksa-min__card h5 { font-family: var(--heartox-heading-font); margin:14px 0 4px; color: var(--ksa-navy-deep); font-size:1.05rem; }
.ksa-min__card p { color: var(--heartox-text); font-size:.9rem; margin:0; }

/* ---- Give / Jesus House band ---- */
.ksa-give { background: var(--ksa-navy-deep); color:#fff; }
.ksa-give .sec-title__title, .ksa-give h2, .ksa-give h3 { color:#fff; }
.ksa-give p { color: rgba(255,255,255,.82); }

/* ---- Buttons: force reliable fills (template fills via ::before/::after) ---- */
.heartox-btn--secondary,
.heartox-btn--secondary:hover { color: var(--ksa-navy-deep) !important; }
.heartox-btn--secondary::before,
.heartox-btn--secondary::after { background-color: var(--ksa-gold) !important; }

.heartox-btn--primary,
.heartox-btn--base { color: #fff !important; }
.heartox-btn--primary::before,
.heartox-btn--primary::after,
.heartox-btn--base::before,
.heartox-btn--base::after { background-color: var(--ksa-navy) !important; }

/* Light/ghost button for use on navy backgrounds */
.heartox-btn--light { color: var(--ksa-navy-deep) !important; }
.heartox-btn--light::before,
.heartox-btn--light::after { background-color: #fff !important; }

/* ---- 2026 theme: ivory card that overlaps up into the hero, on a white band ---- */
.ksa-theme-band {
  position: relative;
  background: transparent;
  padding: 0 0 clamp(36px, 5vw, 64px);
}
.ksa-theme-card {
  position: relative; z-index: 3; overflow: hidden;
  background: #F5F0E4;
  border: 1px solid rgba(11,26,68,.06);
  border-radius: 28px;
  padding: clamp(34px, 5vw, 60px);
  box-shadow: 0 44px 100px -34px rgba(11,26,68,.5);
  display: flex; align-items: center; min-height: 220px;
  margin-top: clamp(-170px, -9vw, -90px);
}
.ksa-theme-card__body { position: relative; z-index: 2; max-width: 640px; }
.ksa-theme-card__eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: "Archivo", sans-serif; font-weight: 800; font-size: .78rem;
  letter-spacing: .2em; text-transform: uppercase; color: #B8891A; margin-bottom: 14px;
}
.ksa-theme-card__title {
  font-family: var(--ksa-display); text-transform: uppercase;
  font-size: clamp(2.4rem, 5.5vw, 4.2rem); line-height: 1; letter-spacing: .01em;
  color: var(--ksa-navy-deep); margin: 0 0 16px;
}
.ksa-theme-card__text {
  color: #4b5563; font-size: 1.05rem; line-height: 1.7; max-width: 52ch; margin: 0 0 24px;
}
.ksa-theme-card__ref {
  font-family: "Archivo", sans-serif; font-weight: 800; font-size: .82rem; letter-spacing: .08em;
  text-transform: uppercase; color: #fff; background: var(--ksa-navy);
  padding: 11px 22px; border-radius: 100px; display: inline-flex; align-items: center; gap: 9px;
  box-shadow: 0 10px 24px -10px rgba(11,26,68,.5);
}
.ksa-theme-card__year {
  position: absolute; right: clamp(-12px, 1vw, 44px); top: 50%; transform: translateY(-50%);
  font-family: var(--ksa-display); font-size: clamp(8rem, 22vw, 17rem); line-height: .8;
  color: var(--ksa-navy); opacity: .07; z-index: 1; pointer-events: none; letter-spacing: -.02em;
}
@media (max-width: 767px){
  .ksa-theme-card__year { font-size: 9rem; right: -12px; opacity: .06; }
  .ksa-theme-card__text { font-size: 1rem; }
}

/* ---- Event cards (homepage + events page) ---- */
.ksa-event {
  background: #fff; border: 1px solid #ECECF3; border-radius: 16px; overflow: hidden;
  height: 100%; display: flex; flex-direction: column; box-shadow: 0 18px 44px -30px rgba(11,26,68,.4);
  transition: transform .3s ease, box-shadow .3s ease;
}
.ksa-event:hover { transform: translateY(-5px); box-shadow: 0 26px 54px -28px rgba(11,26,68,.5); }
.ksa-event__media { position: relative; aspect-ratio: 16/10; background: var(--ksa-navy-deep); overflow: hidden; }
.ksa-event__media img { width: 100%; height: 100%; object-fit: cover; }
.ksa-event__date {
  position: absolute; top: 14px; left: 14px; background: var(--ksa-gold); color: var(--ksa-navy-deep);
  border-radius: 10px; padding: 6px 12px; text-align: center; font-family: var(--heartox-heading-font,"Nunito"),sans-serif;
  line-height: 1; box-shadow: 0 6px 16px -6px rgba(0,0,0,.4);
}
.ksa-event__date .d { font-size: 1.4rem; font-weight: 800; display: block; }
.ksa-event__date .m { font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.ksa-event__body { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.ksa-event__title { font-family: var(--heartox-heading-font,"Nunito"),sans-serif; font-size: 1.25rem; color: var(--ksa-navy-deep); margin: 0 0 12px; }
.ksa-event__meta { display: flex; flex-wrap: wrap; gap: 6px 18px; margin-bottom: 12px; }
.ksa-event__meta span { font-size: .86rem; color: var(--heartox-text); display: inline-flex; align-items: center; gap: 7px; }
.ksa-event__meta i { color: var(--ksa-navy); }
.ksa-event__text { color: var(--heartox-text); font-size: .92rem; margin-bottom: 18px; flex: 1; }
.ksa-event__cta { margin-top: auto; }

/* ---- CCI-style image feature cards ---- */
.ksa-feature {
  position: relative; display: block; border-radius: 18px; overflow: hidden;
  min-height: 460px; background-size: cover; background-position: center;
  isolation: isolate; color: #fff;
}
.ksa-feature::before {
  content: ""; position: absolute; inset: 0; z-index: 1; transition: background .35s ease;
  background: linear-gradient(180deg, rgba(11,26,68,.05) 0%, rgba(11,26,68,.15) 45%, rgba(11,26,68,.88) 100%);
}
.ksa-feature::after {
  content: ""; position: absolute; inset: 0; z-index: 0; background-size: cover; background-position: center;
  background-image: inherit; transition: transform .6s ease;
}
.ksa-feature:hover::after { transform: scale(1.06); }
.ksa-feature:hover::before { background: linear-gradient(180deg, rgba(16,37,107,.15) 0%, rgba(11,26,68,.35) 45%, rgba(11,26,68,.92) 100%); }
.ksa-feature__inner { position: absolute; z-index: 2; left: 0; right: 0; bottom: 0; padding: 28px 26px; }
.ksa-feature__eyebrow {
  display: inline-block; font-family: "Archivo", sans-serif; font-weight: 700; font-size: .72rem;
  letter-spacing: .14em; text-transform: uppercase; color: var(--ksa-gold); margin-bottom: 8px;
}
.ksa-feature__title { font-size: 2rem; color: #fff; margin: 0 0 12px; line-height: 1; }
.ksa-feature__cta {
  display: inline-flex; align-items: center; gap: 9px; font-family: "Archivo", sans-serif;
  font-weight: 700; font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: #fff;
}
.ksa-feature__cta i { transition: transform .3s ease; }
.ksa-feature:hover .ksa-feature__cta i { transform: translateX(5px); }
.ksa-feature:hover { text-decoration: none; }

/* Eyebrow pill (CCI-style) */
.ksa-eyebrow-pill {
  display: inline-flex; align-items: center; gap: 9px; background: var(--surface-2, #F1EFE9);
  border: 1px solid var(--line, #e6e2d7); border-radius: 100px; padding: 7px 16px;
  font-family: "Archivo", sans-serif; font-weight: 700; font-size: .72rem; letter-spacing: .12em;
  text-transform: uppercase; color: var(--ksa-navy); margin-bottom: 20px;
}
.ksa-eyebrow-pill i { color: var(--ksa-gold); }

/* ---- Latest sermon cards ---- */
.ksa-sermon { background:#fff; border:1px solid #ECECF3; border-radius:16px; overflow:hidden; box-shadow:0 18px 44px -30px rgba(11,26,68,.4); height:100%; transition:transform .3s ease, box-shadow .3s ease; }
.ksa-sermon:hover { transform:translateY(-5px); box-shadow:0 26px 54px -28px rgba(11,26,68,.5); }
.ksa-sermon__media { position:relative; aspect-ratio:16/9; background:#0B1A44; cursor:pointer; overflow:hidden; }
.ksa-sermon__media img { width:100%; height:100%; object-fit:cover; transition:transform .5s ease; }
.ksa-sermon:hover .ksa-sermon__media img { transform:scale(1.05); }
.ksa-sermon__play { position:absolute; inset:0; display:grid; place-items:center; }
.ksa-sermon__play i { width:64px; height:64px; border-radius:50%; background:rgba(226,170,1,.95); color:var(--ksa-navy-deep); display:grid; place-items:center; font-size:22px; padding-left:4px; box-shadow:0 8px 24px -6px rgba(0,0,0,.5); transition:transform .3s ease; }
.ksa-sermon__media:hover .ksa-sermon__play i { transform:scale(1.12); }
.ksa-sermon__media iframe { position:absolute; inset:0; width:100%; height:100%; border:0; }
.ksa-sermon__body { padding:18px 20px 22px; }
.ksa-sermon__body h4 { font-family:var(--heartox-heading-font,"Archivo"),sans-serif; font-size:1.05rem; color:var(--ksa-navy-deep); margin:0 0 6px; line-height:1.3; display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden; }
.ksa-sermon__body p { color:var(--heartox-text); font-size:.85rem; margin:0; }

/* ---- Site announcement bar ---- */
.ksa-announce { background: var(--ksa-gold); color: var(--ksa-navy-deep); font-family: "Archivo", sans-serif; font-weight: 600; font-size: .92rem; }
.ksa-announce__in { max-width: 1200px; margin: 0 auto; padding: 9px 24px; display: flex; align-items: center; gap: 14px; justify-content: center; text-align: center; position: relative; }
.ksa-announce__in a { color: var(--ksa-navy-deep); font-weight: 800; text-decoration: underline; }
.ksa-announce__x { position: absolute; right: 12px; top: 50%; transform: translateY(-50%); background: none; border: 0; font-size: 1.4rem; line-height: 1; color: var(--ksa-navy-deep); cursor: pointer; opacity: .7; }
.ksa-announce__x:hover { opacity: 1; }

/* ---- Boast band (full-bleed statement section, image background) ---- */
.ksa-boast {
  position: relative;
  isolation: isolate;
  min-height: 620px;
  display: flex;
  align-items: center;
  color: #fff;
  background: var(--ksa-navy-deep) url(/images/boast-worship.jpg) center/cover no-repeat;
}
.ksa-boast::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(8,16,38,.94) 0%, rgba(8,16,38,.78) 40%, rgba(8,16,38,.32) 100%);
}
.ksa-boast__inner { max-width: 640px; padding: 64px 0; }
.ksa-boast__eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: "Archivo", sans-serif; font-weight: 800; font-size: .78rem;
  letter-spacing: .22em; text-transform: uppercase; color: var(--ksa-gold);
  margin-bottom: 16px;
}
.ksa-boast__title {
  color: #fff;
  font-family: var(--ksa-display);
  text-transform: uppercase;
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  line-height: 1.02;
  letter-spacing: .5px;
  margin: 0 0 20px;
}
.ksa-boast__text {
  font-size: 1.08rem;
  line-height: 1.7;
  color: rgba(255,255,255,.85);
  max-width: 54ch;
  margin: 0 0 30px;
}
.ksa-boast__btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--ksa-gold); color: var(--ksa-navy-deep);
  font-family: "Archivo", sans-serif; font-weight: 800;
  text-transform: uppercase; letter-spacing: .06em; font-size: .84rem;
  padding: 15px 32px; border-radius: 999px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.ksa-boast__btn:hover { transform: translateY(-2px); box-shadow: 0 16px 34px -14px rgba(226,170,1,.65); color: var(--ksa-navy-deep); }
@media (max-width: 767px) {
  .ksa-boast { min-height: 520px; background-position: 32% center; }
  .ksa-boast::before { background: linear-gradient(180deg, rgba(8,16,38,.72) 0%, rgba(8,16,38,.9) 100%); }
}

/* ---- Lead Pastor band (CCI-style: B&W portrait + centred bio on black) ---- */
.ksa-pastor { background: #0a0a0a; color: #fff; }
.ksa-pastor__frame { position: relative; border-radius: 6px; overflow: hidden; background: transparent; }
.ksa-pastor__img {
  width: 100%; height: 640px; object-fit: cover; object-position: center top;
  filter: grayscale(100%) contrast(1.06); display: block;
}
.ksa-pastor__body { text-align: center; max-width: 560px; margin: 0 auto; padding: 30px 16px; }
.ksa-pastor__eyebrow { display: inline-flex; align-items: center; gap: 8px; color: var(--ksa-gold); font-size: 1.5rem; margin-bottom: 14px; }
.ksa-pastor__title {
  font-family: "Archivo", sans-serif; font-weight: 800; text-transform: uppercase; letter-spacing: .16em;
  font-size: clamp(1.5rem, 3vw, 2rem); margin: 0 0 22px; color: #fff;
}
.ksa-pastor__text { color: rgba(255,255,255,.72); font-size: 1.02rem; line-height: 1.9; margin: 0 0 30px; }
.ksa-pastor__btn {
  display: inline-flex; align-items: center; gap: 10px;
  border: 2px solid rgba(255,255,255,.55); color: #fff;
  font-family: "Archivo", sans-serif; font-weight: 800; text-transform: uppercase; letter-spacing: .1em;
  font-size: .8rem; padding: 14px 34px; border-radius: 999px; transition: all .2s ease;
}
.ksa-pastor__btn:hover { background: var(--ksa-gold); border-color: var(--ksa-gold); color: var(--ksa-navy-deep); }
@media (max-width: 991px) { .ksa-pastor__img { height: 460px; } .ksa-pastor__body { padding-top: 8px; } }

/* ---- Google reviews (auto-sliding marquee) ---- */
.ksa-reviews { overflow: hidden; }
.ksa-reviews__head { text-align: center; max-width: 720px; margin: 0 auto; }
.ksa-reviews__badge {
  margin-top: 16px; display: inline-flex; align-items: center; gap: 8px;
  color: var(--ksa-navy-deep); font-weight: 600; flex-wrap: wrap; justify-content: center;
}
.ksa-reviews__badge strong { font-size: 1.15rem; }
.ksa-reviews__stars, .ksa-review__stars { color: #F5A623; letter-spacing: 2px; }
.ksa-reviews__count { color: #6b7280; }
.ksa-reviews__viewport {
  margin-top: 40px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.ksa-reviews__track {
  display: flex; gap: 24px; width: max-content;
  animation: ksa-marquee 64s linear infinite;
}
.ksa-reviews__viewport:hover .ksa-reviews__track { animation-play-state: paused; }
@keyframes ksa-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.ksa-review {
  flex: 0 0 auto; width: 380px; background: #fff; border: 1px solid #eee; border-radius: 18px;
  padding: 28px; box-shadow: 0 20px 44px -30px rgba(11,26,68,.35);
  display: flex; flex-direction: column; gap: 14px;
}
.ksa-review__text { color: #374151; line-height: 1.7; font-size: .98rem; margin: 0; }
.ksa-review__by { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.ksa-review__avatar {
  width: 42px; height: 42px; border-radius: 50%; background: var(--ksa-navy); color: #fff;
  display: grid; place-items: center; font-weight: 800; font-family: "Archivo", sans-serif; flex: 0 0 auto;
}
.ksa-review__name { font-weight: 700; color: var(--ksa-navy-deep); display: flex; flex-direction: column; line-height: 1.2; }
.ksa-review__name small { font-weight: 600; color: #9ca3af; font-size: .75rem; margin-top: 3px; }
.ksa-review__name small .fa-google { color: #4285F4; margin-right: 4px; }
@media (prefers-reduced-motion: reduce){ .ksa-reviews__track { animation: none; } }
@media (max-width: 520px){ .ksa-review { width: 300px; } }

/* ---- 2026 Confession (reverent navy declaration) ---- */
.ksa-confession {
  position: relative; overflow: hidden; color: #fff; text-align: center;
  background: var(--ksa-navy-deep) url(/images/confession-bg.jpg) center 20%/cover no-repeat;
  padding: clamp(56px, 8vw, 104px) 0;
}
.ksa-confession::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, rgba(8,16,38,.9) 0%, rgba(8,16,38,.8) 45%, rgba(8,16,38,.92) 100%);
}
.ksa-confession .container { position: relative; z-index: 1; }
.ksa-confession__eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: "Archivo", sans-serif; font-weight: 800; font-size: .78rem;
  letter-spacing: .2em; text-transform: uppercase; color: var(--ksa-gold); margin-bottom: 14px;
}
.ksa-confession__title {
  font-family: var(--ksa-display); text-transform: uppercase; color: #fff;
  font-size: clamp(2rem, 4.5vw, 3.4rem); line-height: 1; margin: 0 0 18px;
}
.ksa-confession__star { color: var(--ksa-gold); font-size: 1.15rem; letter-spacing: 14px; margin-bottom: 30px; }
.ksa-confession__body { max-width: 820px; margin: 0 auto; }
.ksa-confession__body p {
  color: rgba(255,255,255,.9); font-size: clamp(1.05rem, 1.5vw, 1.26rem);
  line-height: 1.85; margin: 0 0 15px;
}
.ksa-confession__body p:first-child { color: var(--ksa-gold); font-weight: 600; }
.ksa-confession__body p:last-child { margin-bottom: 0; font-weight: 700; color: #fff; }

/* ---- Jesus House give band with full-section background video ---- */
.ksa-give--video { position: relative; isolation: isolate; min-height: clamp(680px, 56vw, 900px); display: flex; align-items: flex-end; color: #fff; overflow: hidden; background: var(--ksa-navy-deep); }
.ksa-give__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.ksa-give__overlay {
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(8,16,38,0) 0%, rgba(8,16,38,.05) 42%, rgba(8,16,38,.55) 72%, rgba(8,16,38,.92) 100%);
}
.ksa-give__content { max-width: 680px; margin-right: auto; }
@media (max-width: 767px){ .ksa-give--video { min-height: 480px; } }

/* Utility */
.text-gold { color: var(--ksa-gold) !important; }
.bg-navy { background: var(--ksa-navy) !important; }
