/* ===== GLOBAL BASELINES ===== */
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

@font-face {
  font-family: "Franca DEMO";
  src: url("../fonts/Franca DEMO Book.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Franca DEMO";
  src: url("../fonts/Franca DEMO Book.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* @font-face {
  font-family: "Franca DEMO";
  src: url("../fonts/Rene Bieder - Franca DEMO Book.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
} */

@font-face {
  font-family: "Franca DEMO";
  src: url("../fonts/Rene Bieder - Franca DEMO Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Hatshows Signature";
  src: url("../fonts/Hatshows Signature.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body.login-modal-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
}

:root {
  --color-teal: #1b6e7e;
  /* banner bg */
  --color-cream: #e8ba80;
  /* gold alias */
  --color-gold: #e8ba80;
  /* gray */
  --color-gray: #f8f8f8;
  /* white */
  --color-white: #ffffff;
  /* black */
  --color-black: #000000;
  /* black light */
  --color-black-light: #2a2a2a;
  /* background */
  --color-background: #1e2322;
  /* footer font */
  --color-footer-font: #1D2221;
  /* input color */
  --color-input: #F6F6F6;
  /* input placeholder color */
  --color-input-placeholder: #C9C9C9;
  /* font family */
  --font-family-primary: "Montserrat", sans-serif;
  --font-primary: "Montserrat", sans-serif;
  /* font family secondary */
  --font-family-secondary: "Franca DEMO", sans-serif;
  /* font family tertiary */
  --font-family-tertiary: "Hatshows Signature", sans-serif;
  /* font size */
  --font-size-primary: 16px;
}

.mobile-only {
  display: none!important;
}

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: transparent;
  z-index: 1000;
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
  padding: 30px 0;
}

.site-header--scrolled {
  position: fixed;
  background-color: var(--color-white);
  backdrop-filter: blur(6px);
  padding: 12px 0 !important;
  box-shadow: 0 1px 20px rgba(0, 0, 0, 0.1);
}

.home-hero__left {
  max-height: 30px;
  width: 120px;
}

.site-header__logo {
  max-height: 30px;
  width: auto;
}

.site-header__menu-button {
  background: transparent;
  border: 0;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.site-header__login-button {
  background: transparent;
  border: 1px solid var(--color-white);
  color: var(--color-white);
  font-family: var(--font-family-secondary);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 4px;
  letter-spacing: 0.5px;
  cursor: pointer;
}

.site-header--scrolled .site-header__login-button {
  color: var(--color-black);
  border-color: var(--color-black);
}

.site-header--scrolled .home-hero__right-links a {
  color: var(--color-black);
}

.site-header__menu-icon {
  width: 44px;
  height: auto;
  display: block;
}

.home-header__container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 27px;
}

.home-hero__inner {
  max-width: 1900px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.home-hero__right {
  display: flex;
  justify-content: space-between;
  flex-grow: 1;
  padding: 0 70px;
  align-items: center;
  transition: padding 0.2s ease;
}

.home-hero__right-links {
  display: flex;
  gap: 40px;
}

.home-hero__right-links a {
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--color-white);
  text-decoration: none;
  position: relative;
  transition: color 0.2s ease;
  font-family: var(--font-family-secondary);
}

.home-hero__right-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--color-cream);
  transition: width 0.3s ease;
}

.home-hero__right-links a:hover {
  color: var(--color-cream);
}

.home-hero__right-links a:hover::after {
  width: 100%;
}

/* ===== LOGIN MODAL ===== */
.login-modal {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100vh;
  min-height: 100dvh;
  min-height: -webkit-fill-available;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 3000;
  padding: 24px;
  padding-top: calc(24px + env(safe-area-inset-top));
  padding-bottom: calc(24px + env(safe-area-inset-bottom));
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.login-modal.is-open {
  display: flex;
}

.login-modal__backdrop {
  position: fixed;
  inset: 0;
  backdrop-filter: blur(66.3px);
  -webkit-backdrop-filter: blur(66.3px);
}

.login-modal__panel {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 590px;
  background-color: var(--color-white);
  padding: 64px 24px 47px;
  text-align: center;
  box-shadow: 0 5px 50px var(--color-footer-font);
  display: flex;
  justify-content: center;
}

.login-modal__close {
  position: absolute;
  top: 26px;
  left: 21px;
  border: 0;
  background: transparent;
  font-size: 14px;
  font-weight: 700;
  line-height: 100%;
  cursor: pointer;
  color: var(--color-footer-font);
  display: flex;
  gap: 3px;
}

.login-modal__container {
  max-width: 384px;
}

.login-modal__eyebrow {
  font-family: var(--font-family-secondary);
  font-size: 15px;
  font-weight: 700;
  line-height: 100%;
  color: var(--color-black);
  margin: 0 0 11px;
}

.login-modal__title {
  font-family: var(--font-family-secondary);
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
  margin: 0 0 11px;
  color: var(--color-footer-font);
  text-align: center;
}

.login-modal__subtitle {
  font-family: var(--font-family-secondary);
  font-size: 13px;
  line-height: 1.5;
  margin: 0 0 31px;
  font-weight: 400;
  color: var(--color-black);
}

.login-modal__form {
  display: flex;
  flex-direction: column;
}

.login-modal__label {
  font-family: var(--font-family-secondary);
  font-size: 13px;
  font-weight: 400;
  line-height: 100%;
  text-align: left;
  margin-bottom: 12px;
  color: var(--color-black);
}

.login-modal__input {
  width: 100%;
  border: 0.5px solid var(--color-footer-font);
  border-radius: 3px;
  padding: 15px 24px;
  font-family: var(--font-family-secondary);
  font-size: 13px;
  font-weight: 400;
  background: var(--color-input);
  margin-bottom: 25px;
}

.login-modal__or {
  font-family: var(--font-family-secondary);
  font-size: 13px;
  font-weight: 400;
  line-height: 100%;
  text-align: left;
  margin-bottom: 12px;
  color: var(--color-black);
}

.login-modal__button {
  background-color: var(--color-footer-font);
  color: var(--color-white);
  border: 1px solid var(--color-footer-font);
  border-radius: 5px;
  padding: 10px;
  font-family: var(--font-family-secondary);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  margin-top: 13px;
  text-align: center;
}

.login-modal__button:hover {
  background: transparent;
  color: var(--color-footer-font);
}

.login-modal__button--secondary {
  background-color: var(--color-footer-font);
  margin-top: 23px;
}

.login-modal__footnote {
  font-family: var(--font-family-secondary);
  font-size: 15px;
  font-weight: 700;
  line-height: 100%;
  color: var(--color-black);
  margin: 41px 0 0;
  text-align: left;
}

/* ===== VISIT MODAL ===== */
.visit-modal {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100vh;
  min-height: 100dvh;
  min-height: -webkit-fill-available;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 3000;
  padding: 24px;
  padding-top: calc(24px + env(safe-area-inset-top));
  padding-bottom: calc(24px + env(safe-area-inset-bottom));
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.visit-modal.is-open {
  display: flex;
  z-index: 10000;
}

.visit-modal__backdrop {
  position: fixed;
  inset: 0;
  backdrop-filter: blur(66.3px);
  -webkit-backdrop-filter: blur(66.3px);
}

.visit-modal__panel {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 888px;
  background-color: var(--color-white);
  padding: 74px 24px 35px;
  text-align: center;
  box-shadow: 0 5px 50px var(--color-footer-font);
  display: flex;
  justify-content: center;
}

.visit-modal__close {
  position: absolute;
  top: 37px;
  left: 42px;
  border: 0;
  background: transparent;
  font-size: 14px;
  font-weight: 700;
  line-height: 100%;
  cursor: pointer;
  color: var(--color-footer-font);
  display: flex;
  gap: 3px;
}

.visit-modal__container {
  max-width: 724px;
  display: flex;
  width: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.visit-modal__eyebrow {
  font-family: var(--font-family-secondary);
  font-size: 15px;
  font-weight: 700;
  line-height: 100%;
  color: var(--color-black);
  margin: 0 0 4px;
}

.visit-modal__title {
  font-family: var(--font-family-secondary);
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
  color: var(--color-footer-font);
  text-align: center;
  margin: 0;
}

.visit-modal__subtitle {
  font-family: var(--font-family-secondary);
  font-size: 13px;
  line-height: 1.5;
  margin: 0 0 57px;
  font-weight: 400;
  color: var(--color-black);
  max-width: 309px;
}

.visit-modal__form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
  align-items: center;
}

.visit-modal__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  width: 100%;
}

.visit-modal__field {
  display: flex;
  flex-direction: column;
}

.visit-modal__label {
  font-family: var(--font-family-secondary);
  font-size: 13px;
  font-weight: 400;
  line-height: 100%;
  text-align: left;
  margin-bottom: 9px;
  color: var(--color-black);
}

.visit-modal__input {
  width: 100%;
  border: 0.5px solid var(--color-footer-font);
  border-radius: 3px;
  padding: 15px 17px;
  font-family: var(--font-family-secondary);
  font-size: 13px;
  font-weight: 400;
  background: var(--color-input);
}

.visit-modal__input::placeholder {
  color: var(--color-input-placeholder);
  font-size: 13px;
  font-weight: 400;
}

.visit-modal__input--date {
  position: relative;
}

.visit-modal__select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23C9C9C9' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 20px center;
  background-size: 12px;
  padding: 16.5px;
  padding-right: 45px;
  color: var(--color-black);
}

.visit-modal__select option:first-child {
  color: var(--color-input-placeholder);
}

.visit-modal__select:invalid {
  color: var(--color-input-placeholder);
}

.visit-modal__select:focus {
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%231D2221' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.visit-modal__button {
  background-color: var(--color-footer-font);
  color: var(--color-white);
  border: 1px solid var(--color-footer-font);
  border-radius: 5px;
  padding: 13px;
  font-family: var(--font-family-secondary);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  margin-top: 95px;
  text-align: center;
  width: 100%;
  max-width: 384px;
}

.visit-modal__button:hover {
  background: transparent;
  color: var(--color-footer-font);
}

/* ===== FULL-SCREEN NAV MODAL (MENU OVERLAY) ===== */
.nav-modal {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  display: none;
  flex-direction: column;
  z-index: 3000;
  background: var(--color-black);
  transition: all 0.3s ease;
  -webkit-overflow-scrolling: touch;
  overflow-y: auto;
}

.nav-modal.is-open {
  display: flex;
}

.nav-modal__backdrop {
  position: fixed;
  inset: 0;
  z-index: 0;
}

.nav-modal__panel {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
  padding-top: env(safe-area-inset-top);
  padding-left: env(safe-area-inset-left);
  padding-right: env(safe-area-inset-right);
  padding-bottom: env(safe-area-inset-bottom);
}

.nav-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 32px;
  flex-shrink: 0;
  max-width: 1156px;
  width: 100%;
  margin: 0 auto;
}

.nav-modal__logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--color-white);
}

.nav-modal__logo-icon {
  display: block;
  width: auto;
  height: 30px;
}

.nav-modal .nav-modal__logo-icon {
  filter: brightness(0) invert(1);
}

.nav-modal__logo-text {
  font-family: var(--font-family-secondary);
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
}

.nav-modal__actions {
  display: flex;
  align-items: center;
}

.nav-modal__link {
  font-family: var(--font-family-secondary);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-white);
  margin-right: 43px;
  text-decoration: none;
}

.nav-modal__link:after {
  content: "";
  display: block;
  width: 0%;
  height: 1px;
  background-color: var(--color-white);
  transition: width 0.3s ease;
}

.nav-modal__link:hover::after {
  width: 100%;
}

.nav-modal__cta {
  font-family: var(--font-family-secondary);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-white);
  text-decoration: none;
  border: 2px solid var(--color-white);
  padding: 8px;
  border-radius: 5px;
  margin-right: 69px;
  background: none;
}

.nav-modal__cta:hover {
  background-color: var(--color-white);
  color: var(--color-black);
}

.nav-modal__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--color-white);
  cursor: pointer;
}

.nav-modal__close i {
  font-size: 32px;
}

.nav-modal__body {
  display: flex;
  flex: 1;
  /* min-height: 0; */
  align-items: center;
  max-width: 980px;
  width: 100%;
  padding: 0 30px;
  margin: 0 auto;
}

.nav-modal__nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0;
  margin: 0 0 100px;
  z-index: 0;
  /* padding: 24px 48px 48px; */
}

.nav-modal__nav-link {
  font-family: var(--font-family-secondary);
  font-size: 64px;
  font-weight: 700;
  color: var(--color-white);
  text-decoration: none;
  line-height: 1.1;
  display: inline-flex;
  align-items: baseline;
  gap: 16px;
  position: relative;
}

.nav-modal__nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--color-white);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.nav-modal__nav-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-modal__nav-num {
  font-size: 24px;
  font-weight: 400;
  color: #474747;
}

.nav-modal__hero {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.nav-modal__hero-image-container {
  display: flex;
  justify-content: flex-end;
  /* max-width: 1920px; */
  margin: 0 auto;
  height: 100%;
}

.nav-modal__hero-image {
  width: 47.5%;
  position: relative;
}

.nav-modal__hero-image-pattern {
  position: absolute;
  width: 6px;
  height: 60%;
  left: -3px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--color-white);
  z-index: 1;
}

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

.nav-modal__close--mobile {
  display: none;
}

@media (max-width: 1024px) {
  .nav-modal__nav-link {
    font-size: 52px;
  }
}

@media (max-width: 768px) {
  .nav-modal__header {
    padding: 24px 27px;
  }

  .nav-modal__cta {
    display: none;
  }

  .nav-modal__link {
    margin-right: 30px;
  }

  .nav-modal__nav-link {
    font-size: 48px;
  }

  .nav-modal__close--mobile {
    display: flex;
    width: fit-content;
    margin-top: 39px;
  }

  .nav-modal__body {
    flex-direction: column;
    justify-content: end;
    padding: 0;
  }

  .nav-modal__hero {
    position: relative;
    margin-top: 45px;
    max-height: 267px;
    height: 267px;
  }

  .nav-modal__nav {
    margin: auto 0;
  }

  .nav-modal__hero img {
    width: 100%;
    object-position: right 70%;
  }

  .nav-modal__hero-image {
    width: 100%;
  }

  .nav-modal__hero-image-pattern {
    width: 60%;
    height: 6px;
    left: 50%;
    top: -3px;
    transform: translateX(-50%);
  }
}

@media (max-width: 500px) {
  .nav-modal__hero {
    max-height: 220px;
    height: 220px;
  }
}

@media (max-width: 400px) {
  .nav-modal__nav-link {
    font-size: 40px;
  }

  .nav-modal__close--mobile {
    margin-top: 30px;
  }

  .nav-modal__link {
    margin-right: 10px;
  }

  .nav-modal__hero {
    max-height: 180px;
    height: 180px;
  }
}

@media (max-width: 768px) {
  .visit-modal__panel {
    padding: 92px 24px 25px;
  }

  .visit-modal__close {
    top: 60px;
    left: 20px;
  }

  .visit-modal__title {
    font-size: 32px;
    margin: 0 0 16px;
  }

  .visit-modal__subtitle {
    margin: 0 0 52px;
  }

  .visit-modal__row {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .visit-modal__button {
    margin-top: 19px;
  }
}

/* ===== EXPLORE MODAL (HEADER) ===== */
.explore-modal {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding: 0;
  z-index: 3200;
}

.explore-modal.is-open {
  display: flex;
}

.explore-modal__backdrop {
  position: absolute;
  inset: 0;
  background: #00000094;
}

.explore-modal__panel {
  position: relative;
  width: 100%;
  /* max-width: 1200px; */
  background: var(--color-footer-font);
  color: var(--color-white);
  padding: 45px 30px 41px;
  box-shadow: 0 18px 60px #00000091;
  transform: translateY(-18px);
  opacity: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.explore-modal.is-open .explore-modal__panel {
  animation: exploreModalFall 420ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes exploreModalFall {
  from {
    opacity: 0;
    transform: translateY(-22px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .explore-modal.is-open .explore-modal__panel {
    animation: none;
    opacity: 1;
    transform: translateY(0);
  }
}

.explore-modal__close {
  position: absolute;
  top: 9px;
  right: 18px;
  width: 42px;
  height: 42px;
  padding: 8.75px;
  border: none;
  background: transparent;
  color: var(--color-white);
  cursor: pointer;
}

.explore-modal__close i {
  font-size: 24.5px;
}

.explore-modal__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.207fr);
  max-width: 1100px;
  gap: 56px;
  align-items: start;
}

.explore-modal__search {
  width: 100%;
  max-width: 473px;
  height: 50px;
  padding: 14px 21px;
  border-radius: 6px;
  border: 1px solid #2D3332;
  background: #2D3332;
  font-family: var(--font-family-secondary);
  color: #939393;
  font-size: 15px;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0;
  outline: none;
}

.explore-modal__search::placeholder {
  color: #939393;
}

.explore-modal__results {
  display: flex;
  flex-direction: column;
  gap: 17px;
  margin-top: 21px;
}

.explore-modal__result {
  font-family: var(--font-family-secondary);
  font-weight: 700;
  font-size: 24px;
  line-height: 100%;
  letter-spacing: 0;
  color: var(--color-white);
  padding: 10px 0;
  text-decoration: none;
  transition: all 0.5s ease-out;
}

.explore-modal__result:hover {
  background-color: #00000094;
  transform: translateY(-5px);
  padding: 10px 10px;
  border-radius: 5px;
}

.explore-modal__result-type {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #939393;
  margin-left: 10px;
  display: inline-block;
}

.explore-modal__result--loading {
  display: flex;
  align-items: center;
  gap: 12px;
}

.explore-modal__result--loading::before {
  content: '';
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: explore-spin 0.8s linear infinite;
}

@keyframes explore-spin {
  to {
    transform: rotate(360deg);
  }
}

.video-modal {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 3300;
}

.video-modal.is-open {
  display: flex;
}

.video-modal__backdrop {
  position: absolute;
  inset: 0;
  background: #000000cc;
}

.video-modal__panel {
  position: relative;
  width: 100%;
  max-width: 900px;
  background: transparent;
  z-index: 1;
}

.video-modal__close {
  position: absolute;
  top: -40px;
  right: 0;
  width: 42px;
  height: 42px;
  padding: 8.75px;
  border: none;
  background: transparent;
  color: var(--color-white);
  cursor: pointer;
}

.video-modal__close i {
  font-size: 28px;
}

.video-modal__video-container {
  width: 100%;
  aspect-ratio: 16/9;
  background: #000;
  border-radius: 8px;
  overflow: hidden;
}

.video-modal__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.explore-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.explore-card-content {
  display: flex;
  flex-direction: column;
}

.explore-card__image {
  width: 100%;
  border-radius: 6px;
  overflow: hidden;
  background: var(--color-gray);
  margin: 0 0 12px;
}

.explore-card__image img {
  width: 100%;
  height: 136px;
  max-width: 265px;
  object-fit: cover;
  display: block;
  object-position: right 30%;
}

.explore-card__title {
  font-family: var(--font-family-secondary);
  font-weight: 700;
  font-size: 24px;
  margin: 0 0 8px;
  line-height: 100%;
  letter-spacing: 0;
  color: var(--color-white);
}

.explore-card__text {
  font-family: var(--font-family-secondary);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.5;
  margin: 0 0 28px;
  color: var(--color-white);
}

.explore-card__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  border-radius: 5px;
  border: 1px solid var(--color-white);
  color: var(--color-white);
  background: transparent;
  font-family: var(--font-family-secondary);
  font-size: 16px;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0;
  text-transform: uppercase;
  text-decoration: none;
  width: fit-content;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.explore-card__cta:hover {
  background: var(--color-white);
  color: var(--color-black);
}

@media (max-width: 1024px) {
  .explore-modal__layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .explore-modal__search {
    max-width: 100%;
  }

  .explore-card__image img {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .explore-modal__cards {
    grid-template-columns: 1fr;
  }

  .explore-modal__result {
    font-size: 18px;
  }

  .explore-modal {
    overflow-y: auto;
    height: 100vh;
  }
}

.site-main {
  overflow: hidden;
  width: 100%;
}

.customize-partial-edit-shortcuts-hidden {
  margin: 0px !important;
}

.home-hero {
  width: 100%;
  height: 60vh;
  min-height: 500px;
  background-image: url("../images/home-hero-bg.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  border-radius: 0 0 21px 21px;
  overflow: hidden;
  position: relative;
  z-index: 2;
}


/* Bottom-to-top black gradient overlay (design) */
.home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.45) 68%);
  pointer-events: none;
  z-index: 0;
}

.home-hero__video-container {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.home-hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  display: none;
}

.home-hero__video.is-active {
  display: block;
}

.home-hero__sound-toggle {
  position: absolute;
  bottom: 40px;
  right: 40px;
  z-index: 10;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--color-white);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

.home-hero__sound-toggle:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  transform: scale(1.1);
}

.home-hero__sound-toggle i {
  font-size: 18px;
}

.unique-icon-button {
  /* Base styles for the unique icon button */
}

.home-hero .home-hero__container,
.home-hero .home-hero__content {
  position: relative;
  z-index: 1;
}

.home-hero__container {
  width: 100%;
  max-width: 980px;
  display: flex;
  justify-content: flex-start;
  padding: 0 30px;
}

.home-hero__content {
  padding: 0 0 54px 0;
  transition: all 0.2s ease;
}

/* .home-hero__content:hover {
  transform: translateY(-10px);
} */

.about-hero__belong-container {
  /* margin-top: -61px; */
}

.home-hero__content h1 {
  font-size: 48px;
  font-weight: 700;
  line-height: 120%;
  letter-spacing: 0;
  font-family: var(--font-family-secondary);
  color: var(--color-white);
  margin: 0;
  margin-bottom: 10px;
}

.home-hero__content h1 span {
  font-size: 48px;
  font-weight: 700;
  line-height: 120%;
  letter-spacing: 0;
  font-family: var(--font-family-secondary);
  color: var(--color-white);
}

.home-hero__content h1[data-typewriter] {
  position: relative;
}

/* .home-hero__content h1[data-typewriter]::after {
  content: '';
  display: inline-block;
  width: 2px;
  height: 1em;
  margin-left: 4px;
  background-color: var(--color-white);
  vertical-align: -0.15em;
  animation: heroCaretBlink 1s steps(2, end) infinite;
} */

@keyframes heroCaretBlink {

  0%,
  50% {
    opacity: 1;
  }

  51%,
  100% {
    opacity: 0;
  }
}

.home-hero__content h2 {
  font-size: 28px;
  font-weight: 700;
  line-height: 102%;
  letter-spacing: 0;
  font-family: var(--font-family-secondary);
  color: var(--color-white);
  margin: 0;
}

.home-hero__content h3 {
  display: none;
}

.home-hero__content span {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0;
  font-family: var(--font-family-secondary);
  color: var(--color-white);
}

.home-hero__buttons {
  display: flex;
  gap: 18px;
  margin-top: 20px;
}

.home-hero__buttons a,
.home-hero__buttons-visit {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  font-weight: 700;
  width: 180px;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
  font-family: var(--font-family-secondary);
  color: var(--color-white);
  text-decoration: none;
  padding: 13px 10px;
  border-radius: 5px;
  background-color: transparent;
  border: 1px solid var(--color-white);
  color: var(--color-white);
  text-align: center;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.home-hero__buttons a:hover,
.home-hero__buttons-visit:hover {
  background-color: var(--color-white);
  color: var(--color-black);
}

/* ===== LATEST MESSAGE ===== */
.xchurch-latest {
  background-color: var(--color-white);
  position: relative;
  z-index: 1;
  /* Scales with .xchurch-latest__outline font-size (clamp 36–128 @ 9.5vw) */
  margin-top: clamp(-63px, -4.68vw, -18px);
  // margin-top: clamp(-40px, -2.68vw, 0px);
}

.xchurch-latest__inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  padding: 0 22px;
  position: relative;
  overflow: visible;
  display: flex;
  flex-direction: column;
  /* min-height: 35vh; */
  align-items: center;
  container-type: inline-size;
}

.xchurch-latest__outline {
  font-size: clamp(36px, 9.5vw, 128px);
  /* font-size: 128px; */
  /* font-size: clamp(36px, 11.7cqw, 128px); */
  font-weight: 700;
  letter-spacing: 1px;
  color: transparent;
  -webkit-text-stroke: 1px var(--color-footer-font);
  margin: 0 0 24px;
  font-family: var(--font-family-secondary);
  white-space: nowrap;
  text-align: center;
  transition: all 0.2s ease;
}

.xchurch-latest__meta {
  display: grid;
  gap: 16px;
  justify-content: center;
  font-size: 12px;
  color: #6e6e6e;
  letter-spacing: 0.4px;
}

.xchurch-latest__eyebrow {
  font-family: var(--font-family-secondary);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  color: #939393;
  text-transform: none;
}

.xchurch-latest__details {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
  color: var(--color-footer-font);
  font-family: var(--font-family-secondary);
}

.xchurch-latest__dot {
  width: 36px;
  height: 1px;
  background-color: var(--color-footer-font);
  display: inline-block;
}

.xchurch-latest__title {
  /* font-size: clamp(32px, 4vw, 48px); */
  font-size: 48px;
  margin: 15px 0 30px;
  font-family: var(--font-family-secondary);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  color: var(--color-footer-font);
}

.xchurch-latest__body-mobile {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 0 22px;
}

.xchurch-latest__body {
  display: grid;
  grid-template-columns: 24px 1fr 24px;
  align-items: flex-start;
  max-width: 736px;
  width: 100%;
  height: 345px;
  gap: 20px;
  z-index: 10;
}

.xchurch-latest__media {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2);
  position: relative;
  height: 100%;
}

.xchurch-latest__media-image {
  width: 100%;
  height: auto;
  display: block;
  border: none;
  height: 100%;
}

.xchurch-latest__media-play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  object-fit: contain;
  object-position: center;
  z-index: 2;
}

.xchurch-latest__side {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  text-transform: uppercase;
  color: #1d2221;
  margin-top: 39px;
}

.xchurch-latest__social,
.xchurch-latest__arrows {
  display: grid;
  gap: 5px;
  font-size: 24px;
}

.xchurch-latest__line {
  width: 4px;
  height: 38px;
  background-color: var(--color-footer-font);
  display: inline-block;
}

.xchurch-latest__social a {
  color: var(--color-footer-font);
}

.xchurch-latest__side-label {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  letter-spacing: 1px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  color: var(--color-footer-font);
  font-family: var(--font-family-secondary);
}

/* ===== OVERVIEW SLIDER ===== */
.xchurch-overview {
  width: 100%;
  overflow: hidden;
  background-color: var(--color-white);
  padding: 37px 0 47px;
  transition: all 0.2s ease;
}

.xchurch-overview__slider {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.xchurch-overview__track {
  display: flex;
  gap: 35px;
  will-change: transform;
  transition: transform 0.05s linear;
}

.xchurch-overview__slide {
  flex-shrink: 0;
  width: 302px;
  height: 337px;
  border-radius: 22px;
  overflow: hidden;
}

.xchurch-overview__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* ===== EXPERIENCE SECTION ===== */
.xchurch-experience {
  background-color: var(--color-white);
  padding: 0 0 52px;
  overflow: hidden;
  transition: all 0.2s ease;
}

.xchurch-experience__container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  transition: all 0.2s ease;
}

.xchurch-experience__content {
  z-index: 1;
}

.xchurch-experience__title {
  font-size: 48px;
  font-weight: 700;
  letter-spacing: 1px;
  color: transparent;
  -webkit-text-stroke: 1px var(--color-footer-font);
  margin: 0 0 17px;
  font-family: var(--font-family-secondary);
}

.xchurch-experience__subtitle {
  font-size: 36px;
  font-weight: 400;
  margin: 0 0 16px;
  font-family: var(--font-family-tertiary);
  color: var(--color-footer-font);
}

.xchurch-experience__text {
  max-width: 620px;
  margin-bottom: 34px;
}

.xchurch-experience__text p {
  font-size: 16px;
  margin: 0 0 16px;
  font-weight: 400;
  letter-spacing: 0;
  color: var(--color-footer-font);
  font-family: var(--font-family-secondary);
}

.xchurch-experience__cards {
  display: flex;
  gap: 24px;
  z-index: 1;
  position: relative;
}

.xchurch-experience__card {
  display: flex;
  flex-direction: column;
}

.xchurch-experience__card h3 {
  margin-top: 26px !important;
  font-size: 16px;
  font-weight: 700;
  margin: 0;
  color: var(--color-footer-font);
  font-family: var(--font-family-secondary);
}

.xchurch-experience__card p {
  margin-top: 17px !important;
  font-size: 16px;
  margin: 0;
  color: var(--color-footer-font);
  font-family: var(--font-family-secondary);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
  max-width: 307px;
}

.xchurch-experience__card-image {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  width: 414px;
  height: 232px;
}

.xchurch-experience__card-image-main {
  width: 414px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.xchurch-experience__card-image-play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
  width: 54px;
  height: 54px;
  object-fit: contain;
  object-position: center;
}

.xchurch-experience__card-image-play-button img {
  width: 100%;
  height: 100%;
  transition: transform 0.2s ease;
}

.xchurch-experience__card-image-play-button:hover img {
  transform: scale(1.2);
}

.xchurch-experience__side {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 0;
  top: 170px;
}

.xchurch-experience__side-text {
  position: absolute;
  top: 0;
}

/* ===== GENEROSITY SECTION ===== */
.xchurch-generosity {
  background-color: var(--color-background);
  color: var(--color-white);
  padding: 50px 0;
}

.xchurch-generosity__container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.xchurch-generosity__content h2 {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.4;
  margin: 0 0 14px;
  font-family: var(--font-family-secondary);
  color: var(--color-white);
}

.xchurch-generosity__content p {
  font-size: 15px;
  margin: 0 0 14px;
  font-weight: 400;
  color: var(--color-white);
  font-family: var(--font-family-secondary);
  line-height: 1.3;
  letter-spacing: 0;
  max-width: 214px;
}

.xchurch-generosity__highlight {
  display: inline-block;
  background: var(--color-white);
  padding: 2px 6px;
  color: var(--color-black);
  transform: rotate(-5deg);
}

.xchurch-generosity__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  border: 1px solid var(--color-white);
  border-radius: 5px;
  color: var(--color-white);
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  font-family: var(--font-family-secondary);
  letter-spacing: 0;
  line-height: 1;
  color: var(--color-white);
  transition: background-color 0.2s ease, color 0.2s ease;
}

.xchurch-generosity__cta:hover {
  background-color: var(--color-white);
  color: var(--color-black);
}

.xchurch-generosity__images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 35px;
  position: relative;
}

.xchurch-generosity__image {
  margin: 0;
  border-radius: 22px;
  overflow: hidden;
  width: 302px;
  height: 337px;
}

.xchurch-generosity__image--1 {}

.xchurch-generosity__image--2 {}

.xchurch-generosity__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ===== UPCOMING EVENTS (HOME) ===== */
.xchurch-upcoming-events {
  background-color: linear-gradient(to top, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.45) 68%);
  background-image: url("../images/hero-events-bg.webp");
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--color-white);
  padding: 120px 0;
  z-index: 4;
  position: relative;
}

.xchurch-upcoming-events::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.45) 68%);
  pointer-events: none;
}

.xchurch-upcoming-events__inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 70px;
}

.xchurch-upcoming-events__title {
  font-family: var(--font-family-secondary);
  font-size: 48px;
  font-weight: 700;
  line-height: 1.05;
  margin: 0 0 14px;
  color: var(--color-white);
  text-transform: uppercase;
}

.xchurch-upcoming-events__desc {
  font-family: var(--font-family-secondary);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  margin: 0 0 20px;
  max-width: 310px;
  color: var(--color-white);
}

.xchurch-upcoming-events__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  border-radius: 5px;
  border: 1px solid var(--color-white);
  background: transparent;
  color: var(--color-white);
  text-decoration: none;
  font-family: var(--font-family-secondary);
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.xchurch-upcoming-events__cta:hover {
  background: var(--color-white);
  color: var(--color-black);
}

.xchurch-upcoming-events__right {
  flex: 1;
  max-width: 520px;
}

.xchurch-upcoming-events__label {
  font-family: var(--font-family-secondary);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--color-white);
  margin: 0 0 12px;
}

.xchurch-upcoming-events__list {
  border-top: 1px solid var(--color-white);
}

.xchurch-upcoming-events__item {
  display: grid;
  grid-template-columns: 80px 1fr;
  align-items: center;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--color-white);
  text-decoration: none;
  color: var(--color-white);
}

.xchurch-upcoming-events__item:hover .xchurch-upcoming-events__name {
  text-decoration: underline;
}

.xchurch-upcoming-events__date {
  font-family: var(--font-family-secondary);
  font-size: 16px;
  font-weight: 400;
  color: var(--color-white);
}

.xchurch-upcoming-events__name {
  font-family: var(--font-family-secondary);
  font-size: 15px;
  font-weight: 400;
  color: var(--color-white);
}

.xchurch-upcoming-events__empty {
  font-family: var(--font-family-secondary);
  font-size: 14px;
  margin: 10px 0 0;
  color: var(--color-white);
}

/* ===== PASTOR SECTION ===== */
.xchurch-pastor {
  background-color: var(--color-white);
  padding: 86px 0;
}

.xchurch-pastor__container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: flex-end;
  gap: 55px;
}

.xchurch-pastor__image {
  position: relative;
  margin: 0;
  width: 437px;
  height: 543px;
  border-radius: 22px;
  overflow: hidden;
  z-index: 1;
  transition: all 0.2s ease;
}

.xchurch-pastor__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.xchurch-pastor__content {
  flex: 1;
}

.xchurch-pastor__title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
  margin: 0 0 41px;
  font-family: var(--font-family-secondary);
  color: var(--color-black);
}

.xchurch-pastor__signature {
  font-family: "Hatshows Signature", cursive;
  font-size: 48px;
  font-weight: 400;
  margin: 0 0 14px;
  color: var(--color-black);
  line-height: 1.18;
}

.xchurch-pastor__bio p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  margin: 0 0 20px;
  font-family: var(--font-family-secondary);
  color: var(--color-black);
  max-width: 351px;
  text-align: justify;
  text-justify: inter-word;
  /* hyphens: auto; */
}

/* 
.xchurch-pastor__bio p:last-child {
  margin-bottom: 0;
} */

/* ===== REACHING SECTION ===== */
.xchurch-reaching {
  position: relative;
  height: 362px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-image: url(../images/reaching-bg.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.xchurch-reaching__container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  text-align: center;
}

.xchurch-reaching__image {
  width: 260px;
  height: 230px;
  border-radius: 13px;
  overflow: hidden;
  margin: 0;
}

.xchurch-reaching__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.xchurch-reaching__text {
  text-align: center;
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: max-content;
  height: 100%;
}

.xchurch-reaching__text h2 {
  font-family: var(--font-family-secondary);
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
  color: var(--color-white);
}

/* ===== VALUES SECTION ===== */
.xchurch-values {
  background-color: var(--color-white);
  padding: 41px 0 62px;
  overflow: hidden;
}

.xchurch-values__container {
  width: 100%;
  padding-left: 20px;
  padding-right: 0;
}

.xchurch-values__header {
  margin-bottom: 10px;
}

.xchurch-values__title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
  margin: 0 0 8px;
  font-family: var(--font-family-secondary);
  color: var(--color-footer-font);
}

.xchurch-values__subtitle {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  margin: 0 0 8px;
  font-family: var(--font-family-secondary);
  color: var(--color-footer-font);
  max-width: 512px;
}

.xchurch-values__nav {
  display: flex;
  margin-left: -12px;
}

.xchurch-values__nav-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--color-footer-font);
  transition: opacity 0.2s ease;
  padding: 0;
}

.xchurch-values__nav-btn:hover {
  opacity: 0.6;
}

.xchurch-values__nav-btn--disabled {
  color: #939393;
  cursor: default;
}

.xchurch-values__nav-btn--disabled:hover {
  opacity: 1;
}

.xchurch-values__nav-btn i {
  font-size: 24px;
}

.xchurch-values__slider {
  position: relative;
  overflow: hidden;
  /* margin: 0 -40px;
  padding: 0 40px; */
}

.xchurch-values__track {
  display: flex;
  gap: 32px;
  transition: transform 0.4s ease;
}

.xchurch-values__card {
  flex: 0 0 280px;
  min-width: 280px;
}

@media (min-width: 480px) {
  .xchurch-values__container {
    padding-left: 30px;
  }

  .xchurch-values__card {
    flex: 0 0 300px;
    min-width: 300px;
  }
}

@media (min-width: 768px) {
  .xchurch-values__container {
    padding-left: 40px;
  }

  .xchurch-values__card {
    flex: 0 0 320px;
    min-width: 320px;
  }
}

@media (min-width: 1024px) {
  .xchurch-values__container {
    padding-left: 55px;
  }

  .xchurch-values__card {
    flex: 0 0 340px;
    min-width: 340px;
  }
}

@media (min-width: 1200px) {
  .xchurch-values {
    justify-content: flex-start;
  }

  .xchurch-values__container {
    width: 100%;
    max-width: none;
    padding-left: calc((100vw - 1000px) / 2);
    padding-right: 0;
  }

  .xchurch-values__card {
    flex: 0 0 348px;
    min-width: 348px;
  }
}

@media (min-width: 1440px) {
  .xchurch-values__container {
    padding-left: calc((100vw - 1000px) / 2);
  }

  .xchurch-values__card {
    flex: 0 0 380px;
    min-width: 380px;
  }
}

@media (min-width: 1920px) {
  .xchurch-values__container {
    padding-left: calc((100vw - 1000px) / 2);
  }

  .xchurch-values__card {
    flex: 0 0 420px;
    min-width: 420px;
  }
}

.xchurch-values__card-line {
  width: 100%;
  height: 4px;
  background-color: var(--color-footer-font);
  margin-bottom: 21px;
}

.xchurch-values__card-content {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 31px;
}

.xchurch-values__card-number {
  font-family: var(--font-family-secondary);
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px var(--color-footer-font);
  text-stroke: 1px var(--color-footer-font);
  flex-shrink: 0;
}

.xchurch-values__card-text {
  flex: 1;
}

.xchurch-values__card-title {
  font-family: var(--font-family-secondary);
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-footer-font);
  margin: 0;
}

.xchurch-values__card-description {
  font-family: var(--font-family-secondary);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  margin: 0;
  color: var(--color-footer-font);
}

/* ===== FOLLOW SECTION ===== */
.xchurch-follow {
  position: relative;
  background: url(../images/follow-bg.png) no-repeat center center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 68px 0 64px;
  overflow: hidden;
  /* display: flex;
  justify-content: center;
  align-items: center; */
  z-index: 11;
}

.xchurch-follow__container {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.xchurch-follow__image {
  margin: 0;
  width: 260px;
  height: 230px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.xchurch-follow__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.xchurch-follow__content {
  /* flex: 1; */
}

.xchurch-follow__schedule {
  font-family: var(--font-family-secondary);
  font-size: 15px;
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: 0;
  line-height: 1;
}

.xchurch-follow__title {
  font-family: var(--font-family-secondary);
  font-size: 40px;
  font-weight: 700;
  line-height: 86%;
  margin: 0 0 15px;
  color: var(--color-white);
}

.xchurch-follow__social-container {
  display: flex;
  gap: 50px;
}

.xchurch-follow__description-container {
  display: flex;
  flex-direction: column;
}

.xchurch-follow__social {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
  margin-top: -5px;
}

.xchurch-follow__social a {
  font-size: 24px;
  color: var(--color-white);
  transition: opacity 0.2s ease;
}

.xchurch-follow__social a:hover {
  opacity: 0.7;
}

.xchurch-follow__divider {
  width: 86px;
  height: 4px;
  background-color: var(--color-white);
  margin-bottom: 16px;
}

.xchurch-follow__description {
  font-family: var(--font-family-secondary);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-white);
  margin: 0;
  max-width: 313px;
}

/* ===== APP SECTION ===== */
.xchurch-app {
  background-color: var(--color-white);
  padding: 74px 0 125px;
  overflow: visible;
  position: relative;
  z-index: 11;
}

.xchurch-app__container {
  max-width: 950px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: flex-start;
  position: relative;
}

.xchurch-app__content {
  flex: 1;
  max-width: 433px;
}

.xchurch-app__title {
  font-family: var(--font-family-secondary);
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
  margin: 0 0 14px;
  color: var(--color-footer-font);
}

.xchurch-app__description {
  font-family: var(--font-family-secondary);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7;
  margin: 0 0 41px;
  color: var(--color-footer-font);
}

.xchurch-app__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px;
  border-radius: 5px;
  color: var(--color-white);
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  font-family: var(--font-family-secondary);
  background-color: var(--color-footer-font);
  border: 2px solid var(--color-footer-font);
  transition: background-color 0.2s ease, color 0.2s ease;
}

.xchurch-app__cta:hover {
  background-color: var(--color-white);
  color: var(--color-footer-font);
}

.xchurch-app__image {
  flex-shrink: 0;
  margin-top: -110px;
  position: absolute;
  z-index: 11;
  /* width: 1350px; */
  max-width: 900px;
  left: 52%;
  width: 100%;
}

.xchurch-app__image img {
  width: 100%;
  height: auto;
  display: block;
}

/* ===== YOUTH SECTION ===== */
.xchurch-youth {
  padding: 50px 0;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 11;
  position: relative;
}

.xchurch-youth__container {
  max-width: 1130px;
  display: flex;
  align-items: flex-start;
  gap: 30px;
  padding: 20px 0 50px;
  background-color: var(--color-background);
}

.xchurch-youth__image {
  margin: 0;
  width: 200px;
  height: 270px;
  overflow: hidden;
  flex-shrink: 0;
  margin-left: -20px;
}

.xchurch-youth__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.xchurch-youth__content {
  flex: 0 0 335px;
  display: flex;
  flex-direction: column;
  /* height: -webkit-fill-available; */
  justify-content: flex-end;
}

.xchurch-youth__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.xchurch-youth__title {
  font-family: var(--font-family-secondary);
  font-size: 15px;
  font-weight: 700;
  color: var(--color-white);
  margin: 0;
  text-transform: uppercase;
}

.xchurch-youth__title::after {
  content: '';
  display: block;
  width: 120px;
  height: 7px;
  background-color: var(--color-white);
  margin-top: 5px;
}

.xchurch-youth__link {
  font-family: var(--font-family-secondary);
  font-size: 11px;
  font-weight: 700;
  color: var(--color-white);
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.xchurch-youth__link:hover {
  opacity: 0.7;
}

.xchurch-youth__description {
  font-family: var(--font-family-secondary);
  font-size: 11px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-white);
  margin: 0;
  /* flex: 1; */
}

.xchurch-youth__description-mobile {
  display: none;
  font-family: var(--font-family-secondary);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  margin-top: 16px !important;
  margin-bottom: 0 !important;
  color: var(--color-white);
  max-width: 343px;
}

.xchurch-youth__divider {
  width: 72px;
  height: 7px;
  background-color: var(--color-white);
  margin-top: 30px;
  display: none;
}

.xchurch-youth__nav {
  flex: 1;
  display: flex;
  padding-right: 60px;
  padding-top: 15px;
}

.xchurch-youth__nav-link {
  font-family: var(--font-family-secondary);
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  color: transparent;
  -webkit-text-stroke: .5px var(--color-white);
  text-stroke: .5px var(--color-white);
  transition: all 0.2s ease;
  white-space: nowrap;
  writing-mode: vertical-rl;
  transform-origin: center;
  transform-box: fill-box;
}

.xchurch-youth__nav-link:hover {
  color: var(--color-white);
}

/* ===== VISIT SECTION ===== */
.xchurch-visit {
  background-color: linear-gradient(to top, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.45) 68%);
  background-image: url(../images/hero-visit-bg.jpg);
  background-size: cover;
  background-attachment: fixed;
  background-position: right 45%;
  background-repeat: no-repeat;
  color: var(--color-white);
  padding: 70px 0;
  /* padding: 168px 0 70px; */
  z-index: 3;
  position: relative;
  margin-top: 0px;
  /* margin-top: -80px; */
}

.xchurch-visit::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.45) 68%);
  pointer-events: none;
}

.xchurch-visit__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  align-items: center;
}

.xchurch-visit__content {
  display: grid;
  grid-template-columns: minmax(0, 480px) minmax(0, 543px);
  justify-content: space-between;
  column-gap: clamp(24px, 5vw, 56px);
  row-gap: 0;
  align-items: start;
}

.xchurch-visit__intro {
  grid-column: 1;
  grid-row: 1;
  max-width: 480px;
}

.xchurch-visit__details {
  grid-column: 1;
  grid-row: 2;
  display: grid;
  gap: 20px;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
  font-family: var(--font-family-secondary);
  color: var(--color-white);
  max-width: 480px;
}

.xchurch-visit__stream {
  grid-column: 1;
  grid-row: 3;
  max-width: 480px;
  margin-top: 44px;
}

.xchurch-visit__map {
  grid-column: 2;
  grid-row: 2 / 4;
  align-self: start;
}

.xchurch-visit__content h3 {
  font-size: 48px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  margin: 0 0 15px;
  font-family: var(--font-family-secondary);
  color: var(--color-white);
}

.xchurch-visit__content p,
.xchurch-visit__stream-live {
  margin: 0 0 15px;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.5;
  font-family: var(--font-family-secondary);
  color: var(--color-white);
  max-width: 100%;
}

.xchurch-visit__cta--plan {
  margin-bottom: 44px;
}

.xchurch-visit__cta,
.xchurch-visit__directions {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 27px;
  border: 1px solid var(--color-white);
  border-radius: 5px;
  color: var(--color-white);
  background: transparent;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0;
  line-height: 1;
  font-family: var(--font-family-secondary);
  /* margin-bottom: 66px; */
  width: fit-content;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.xchurch-visit__cta:hover,
.xchurch-visit__directions:hover {
  background-color: var(--color-white);
  color: var(--color-black);
}

.xchurch-visit__map-image {
  width: 100%;
  max-width: 543px;
  height: 315px;
  border-radius: 11px;
  object-fit: cover;
  object-position: center;
  margin-top: 0;
  overflow: hidden;
  border: 1px solid #ffffff;
  transition: all 0.2s ease;
}

.xchurch-visit__details .xchurch-visit__block {
  display: grid;
}

.xchurch-visit__block {
  display: grid;
}

.xchurch-visit__block>span {
  line-height: 1.5;
}

.xchurch-visit__link {
  color: var(--color-white);
  font-weight: 400;
  line-height: 1;
  font-family: var(--font-family-secondary);
  transition: color 0.2s ease;
}

.xchurch-visit__link--plain {
  text-decoration: none;
}

.xchurch-visit__map-card {
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
  height: 220px;
  position: relative;
  overflow: hidden;
}

.xchurch-visit__map-pin {
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #e84b3c;
  top: 40%;
  left: 60%;
  box-shadow: 0 0 0 6px rgba(232, 75, 60, 0.2);
}

@media (max-width: 960px) {
  .xchurch-visit__content {
    display: flex;
    flex-direction: column;
  }

  .xchurch-visit__intro,
  .xchurch-visit__details,
  .xchurch-visit__stream,
  .xchurch-visit__map {
    max-width: 100%;
  }

  .xchurch-visit__map {
    order: 3;
    width: 100%;
    margin-top: 30px;
  }

  .xchurch-visit__stream {
    order: 4;
    margin-top: 30px;
  }

  .xchurch-visit__map-image {
    max-width: 100%;
  }
}

/* Ensure all arrow icons animate when their parent link/button is hovered */
a:hover .fa-angle-right,
button:hover .fa-angle-right {
  animation: arrowSlideRight 0.3s ease-out forwards;
}

a:hover .fa-angle-down,
button:hover .fa-angle-down {
  animation: arrowSlideDown 0.3s ease-out forwards;
}

/* ===== KEYFRAME ANIMATIONS ===== */
@keyframes buttonLift {
  0% {
    transform: translateY(0);
    box-shadow: none;
  }

  100% {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(27, 110, 126, 0.2);
  }
}

@keyframes buttonLiftActive {
  0% {
    transform: translateY(-2px);
  }

  100% {
    transform: translateY(0);
  }
}

@keyframes arrowSlideRight {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(4px);
  }
}

@keyframes arrowSlideDown {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(4px);
  }
}

@keyframes navItemLift {
  0% {
    transform: translateY(0);
    opacity: 1;
  }

  100% {
    transform: translateY(-2px);
    opacity: 0.8;
  }
}

@keyframes navButtonScale {
  0% {
    transform: scale(1);
    background-color: transparent;
  }

  100% {
    transform: scale(1.2);
    background-color: rgba(27, 110, 126, 0.1);
  }
}

@keyframes navButtonScaleActive {
  0% {
    transform: scale(1.2);
  }

  100% {
    transform: scale(1.1);
  }
}

@keyframes sectionFadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInFromRight {
  0% {
    transform: translateX(100%);
    opacity: 0;
  }

  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

/* ===== Scroll / load reveal utilities ===== */
/* Default: visible (so reduced-motion users never get hidden content). */
.u-reveal {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: no-preference) {
  html.is-page-ready .u-reveal {
    opacity: 0;
    transform: translateY(18px);
    will-change: opacity, transform;
  }

  html.is-page-ready .u-reveal[data-animate="fade"] {
    transform: none;
  }

  html.is-page-ready .u-reveal[data-animate="up"],
  html.is-page-ready .u-reveal[data-animate="load"] {
    transform: translateY(18px);
  }

  html.is-page-ready .u-reveal[data-animate="scale"] {
    transform: scale(0.985);
  }

  html.is-page-ready .u-reveal.is-in-view {
    opacity: 1;
    transform: none;
    transition:
      opacity 650ms cubic-bezier(0.2, 0.8, 0.2, 1),
      transform 650ms cubic-bezier(0.2, 0.8, 0.2, 1);
    transition-delay: var(--reveal-delay, 0ms);
  }
}


/* Respect reduced motion */
@media (prefers-reduced-motion: no-preference) {
  .top-banner__link {
    transition: opacity 0.2s ease;
  }

  .top-banner__link:hover {
    opacity: 0.9;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }

  .free-quote__panel {
    transform: none !important;
    opacity: 1 !important;
  }
}

/* ===== FOOTER (X CHURCH) ===== */
.site-footer {
  background-color: var(--color-background);
  color: var(--color-white);
  font-family: var(--font-family-secondary);
}

.site-footer__container--mega {
  display: flex;
  justify-content: center;
  gap: 161px;
  max-width: 1360px;
  margin: 0 auto;
  position: relative;
  padding-top: 70px;
  height: 248px;
}

.site-footer__columns {
  /* display: grid; */
  /* grid-template-columns: repeat(3, minmax(140px, 1fr)); */
  /* gap: 48px; */
  display: flex;
  justify-content: space-between;
  max-width: 600px;
  width: 100%;
  font-family: var(--font-family-secondary);
}

.site-footer__column {
  display: flex;
  flex-direction: row;
  gap: 22px;
}

.site-footer__column-content {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.site-footer__column-left-border {
  width: 72px;
  height: 7px;
  background-color: var(--color-white);
  display: inline-block;
  margin-top: 5px;
}

.site-footer__eyebrow {
  font-size: 14px;
  letter-spacing: 1.6px;
  font-weight: 700;
  text-transform: uppercase;
  position: relative;
}

.site-footer__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
}

.site-footer__list li {
  line-height: 1;
}

.site-footer__list a,
.site-footer__text {
  color: var(--color-white);
  text-decoration: none;
  font-size: 10px;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0;
}

.site-footer__list a:hover {
  opacity: 0.85;
}

.site-footer__contact {
  display: flex;
  position: absolute;
  right: 0;
  margin-right: 30px;
}

.site-footer__logo {
  width: 28px;
  height: 28px;
  object-fit: contain;
  object-position: center;
  margin-bottom: 10px;
}

.site-footer__logo-mobile {
  display: none;
}

.site-footer__close {
  width: 28px;
  height: 28px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: transparent;
  color: var(--color-white);
  font-size: 18px;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
}

.site-footer__contact-details {
  display: flex;
  flex-direction: column;
  padding-top: 15px;
}

.site-footer__email {
  text-decoration: underline !important;
}

.site-footer__phone,
.site-footer__email,
.site-footer__address {
  color: var(--color-white);
  text-decoration: none;
  font-size: 10px;
  font-weight: 700;
}

.site-footer__divider {
  width: 7px;
  height: 72px;
  background-color: var(--color-white);
  display: inline-block;
}

/* ===== GIVE SECTION ===== */

.give-hero {
  background-image: url("../images/give-hero-bg.webp") !important;
}

.give-hero__buttons {
  width: auto !important;
}

.xchurch-give-options {
  padding-bottom: 91px;
}

.xchurch-give-options__card-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.xchurch-give-options__cards {
  display: flex;
  flex-direction: column;
  gap: 26px;
  max-width: 768px;
  margin: 0 auto;
  padding: 0 30px;
}

.xchurch-give-options__card {
  background-color: var(--color-white);
  border: 1px solid var(--color-footer-font);
  border-radius: 19px;
  padding: 40px 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* .xchurch-give-options__card:first-child {
  grid-column: 1 / -1;
} */

.xchurch-give-options__card-title {
  font-family: var(--font-family-secondary);
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
  margin: 0;
  color: var(--color-black);
  margin-bottom: 10px;
}

.xchurch-give-options__card-description {
  font-family: var(--font-family-secondary);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  margin: 0;
  color: var(--color-black);
  max-width: 438px;
}

.xchurch-give-options__card-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  border: 1px solid var(--color-footer-font);
  border-radius: 5px;
  color: var(--color-white);
  background: var(--color-footer-font);
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  font-family: var(--font-family-secondary);
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
  margin-top: 26px;
}

.xchurch-give-options__card-button:hover {
  background-color: transparent;
  color: var(--color-footer-font);
}

/* ===== GIVING FAQS ===== */
.xchurch-give-faqs {
  padding: 65px 0;
  background-color: var(--color-gray);
  background-image: url("../images/give-faqs-bg.webp") !important;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.xchurch-give-faqs__inner {
  max-width: 740px;
  margin: 0 auto;
  padding: 0 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.xchurch-give-faqs__title {
  font-family: var(--font-family-secondary);
  font-size: 40px;
  font-weight: 700;
  line-height: 1.5;
  margin: 0 0 23px 0;
  color: var(--color-footer-font);
  text-align: center;
}

.xchurch-give-faqs__title-underline {
  width: 38px;
  height: 4px;
  display: inline-block;
  background-color: var(--color-footer-font);
  margin-bottom: 23px;
}

.xchurch-give-faqs__intro {
  font-family: var(--font-family-primary);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  margin: 0 0 48.5px 0;
  color: var(--color-black);
  text-align: center;
}

.xchurch-give-faqs__list {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.xchurch-give-faqs__item {
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.xchurch-give-faqs__item--expanded {
  /* box-shadow: 0 4px 12px var(--color-footer-font); */
}

.xchurch-give-faqs__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22.5px 0;
  background: transparent;
  border: none;
  text-align: left;
  cursor: pointer;
  font-family: var(--font-family-secondary);
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  color: var(--color-footer-font);
  gap: 31px;
  transition: background-color 0.2s ease;
}

.xchurch-give-faqs__question:hover {
  /* background-color: rgba(0, 0, 0, 0.02); */
}

.xchurch-give-faqs__question-text {
  flex: 1;
  /* padding-right: 20px; */
}

.xchurch-give-faqs__icon {
  font-size: 15px;
  color: var(--color-footer-font);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.xchurch-give-faqs__item--expanded .xchurch-give-faqs__icon {
  transform: rotate(180deg);
}

.xchurch-give-faqs__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.xchurch-give-faqs__item--expanded .xchurch-give-faqs__answer {
  max-height: 1000px;
  padding: 11.5px 0 16.5px 0;
}

.xchurch-give-faqs__answer p {
  font-family: var(--font-family-primary);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  margin: 0;
  color: var(--color-black);
  max-width: 630px;
}

/* ===== GIVING IMPACT CARDS ===== */
.xchurch-give-impact {
  padding: 82px 0 39px;
  background-color: var(--color-white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.xchurch-give-impact__title-underline {
  max-width: 323px;
  width: 100%;
  margin: 0 auto;
  height: 4px;
  display: inline-block;
  background-color: var(--color-footer-font);
  margin-bottom: 29px;
}

.xchurch-give-impact__inner {
  /* max-width: 870px; */
  margin: 0 auto;
  padding: 0 30px;
}

.xchurch-give-impact__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}

.xchurch-give-impact__card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 421px;
}

.xchurch-give-impact__image {
  width: 100%;
  height: 367px;
  object-fit: cover;
  object-position: center;
  margin-bottom: 16px;
  display: block;
}

.xchurch-give-impact__title {
  font-family: var(--font-family-secondary);
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
  margin: 0 0 9px 0;
  color: var(--color-footer-font);
  text-align: center;
}

.xchurch-give-impact__description {
  font-family: var(--font-family-primary);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  margin: 0 0 45px 0;
  color: var(--color-black);
}

.xchurch-give-impact__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 10px;
  border: 1px solid var(--color-footer-font);
  border-radius: 5px;
  color: var(--color-white);
  background: var(--color-footer-font);
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  font-family: var(--font-family-secondary);
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
  line-height: 1;
}

.xchurch-give-impact__button:hover {
  background-color: transparent;
  color: var(--color-footer-font);
}

/* ==== VISIT SECTION ===== */

.visit-hero {
  background-image: url("../images/visit-hero-bg.webp") !important;
  background-position: right 70%;
}

/* Bottom-to-top black gradient overlay (design) */
.visit-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0) 68%);
  pointer-events: none;
  z-index: 0;
}

.visit-hero .home-hero__container,
.visit-hero .home-hero__content {
  position: relative;
  z-index: 1;
}

/* ===== VISIT INTRO (We'd love to meet you) ===== */
.xchurch-visit-intro {
  background-color: var(--color-white);
}

.xchurch-visit-intro .xchurch-latest__inner {
  /* align-items: stretch; */
  max-width: 907px;
}

.xchurch-visit-intro__title {
  font-family: var(--font-family-secondary);
  font-size: 40px;
  font-weight: 700;
  line-height: 1.5;
  margin: 0 0 94px;
  color: var(--color-footer-font);
  text-align: center;
}

.xchurch-visit-intro__body {
  width: 100%;
  display: flex;
  justify-content: space-between;
  text-align: left;
  padding-bottom: 108px;
  position: relative;
}

.xchurch-visit-intro__content {
  max-width: 446px;
}

.xchurch-visit-intro__dash {
  width: 38px;
  height: 4px;
  background-color: var(--color-footer-font);
  display: inline-block;
  margin: 0 0 34px;
}

.xchurch-visit-intro__lead {
  font-family: var(--font-family-primary);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  margin: 0 0 22px;
  color: var(--color-black);
}

.xchurch-visit-intro__text {
  font-family: var(--font-family-primary);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  margin: 0 0 22px;
  color: var(--color-black);
}

.xchurch-visit-intro__text strong {
  font-weight: 700;
}

.xchurch-visit-intro__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 10px;
  border: 1px solid var(--color-footer-font);
  border-radius: 5px;
  background-color: var(--color-footer-font);
  color: var(--color-white);
  text-decoration: none;
  font-family: var(--font-family-secondary);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  line-height: 1;
  margin-top: 11px;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.xchurch-visit-intro__cta:hover {
  background-color: transparent;
  color: var(--color-footer-font);
}

/* ===== VISIT: LOCATION & TIMES ===== */
.xchurch-visit-locations {
  position: relative;
  background-image: url("../images/visit-location-bg.png");
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  padding: 82px 0 120px;
  overflow: hidden;
  z-index: 1;
}

.xchurch-visit-locations::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.28) 55%, rgba(0, 0, 0, 0.08) 100%);
  pointer-events: none;
  z-index: 0;
}

.xchurch-visit-locations__inner {
  max-width: 763px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 1;
}

.xchurch-visit-locations__grid {
  display: flex;
  justify-content: space-between;
  /* gap: 60px; */
  align-items: start;
}

.xchurch-visit-locations__title {
  font-family: var(--font-family-secondary);
  font-size: 40px;
  font-weight: 700;
  line-height: 1.5;
  margin: 0 0 38px;
  color: var(--color-white);
}

.xchurch-visit-locations__dash {
  width: 38px;
  height: 4px;
  background-color: var(--color-white);
  display: inline-block;
}

.xchurch-visit-locations__right {
  padding-top: 12px;
}

.xchurch-visit-locations__line {
  font-family: var(--font-family-secondary);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  margin: 0;
  color: var(--color-white);
}

.xchurch-visit-locations__line+.xchurch-visit-locations__line {
  margin-top: 24px;
}

/* ===== VISIT: YOU'RE INVITED ===== */
.xchurch-visit-invite {
  background-color: var(--color-white);
  padding: 63px 0;
}

.xchurch-visit-invite__inner {
  max-width: 733px;
  margin: 0 auto;
  padding: 0 40px;
  text-align: center;
}

.xchurch-visit-invite__title {
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
  color: var(--color-footer-font);
  font-family: var(--font-family-secondary);
  margin: 0 0 27px;
}

.xchurch-visit-invite__video-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 54px;
}

.xchurch-visit-invite__line--left {
  display: flex;
  width: 100%;
}

.xchurch-visit-invite__line--right {
  display: flex;
  justify-content: flex-end;
  width: 100%;
}

.xchurch-visit-invite__line {
  width: 38px;
  height: 4px;
  background-color: var(--color-footer-font);
  display: inline-block;
  flex-shrink: 0;
}

.xchurch-visit-invite__cta {
  padding: 13px 10px;
  border: 1px solid var(--color-footer-font);
  border-radius: 5px;
  background-color: var(--color-footer-font);
  color: var(--color-white);
  text-decoration: none;
  font-family: var(--font-family-secondary);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 49px;
  transition: background-color 0.2s ease, color 0.2s ease;
  display: none;
}

.xchurch-visit-invite__cta:hover {
  background-color: transparent;
  color: var(--color-footer-font);
}

.xchurch-visit-invite__video-container {
  position: relative;
  max-width: 653px;
  max-height: 345px;
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  /* cursor: pointer; */
  transition: transform 0.2s ease;
}

.xchurch-visit-invite__video-container:hover {
  /* transform: scale(1.02); */
  box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.1);
}

.xchurch-visit-invite__video-thumbnail {
  width: 100%;
  height: auto;
  display: block;
}

.xchurch-visit-invite__play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: transparent;
  border: none;
  outline: none;
  padding: 0;
  margin: 0;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
  z-index: 2;
}

.xchurch-visit-invite__play-button:hover {
  transform: translate(-50%, -50%) scale(1.1);
}

.xchurch-visit-invite__content {
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}

.xchurch-visit-invite__paragraph {
  font-family: var(--font-family-primary);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  margin: 0 0 25px;
  color: var(--color-black);
}

.xchurch-visit-invite__social-title {
  font-family: var(--font-family-secondary);
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  margin: 0 0 23px;
  color: var(--color-black);
}

.xchurch-visit-invite__social {
  display: flex;
  gap: 18px;
  align-items: center;
}

.xchurch-visit-invite__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-black);
  text-decoration: none;
  font-size: 24px;
  transition: color 0.2s ease, transform 0.2s ease;
}

.xchurch-visit-invite__social-link:hover {
  color: var(--color-cream);
  transform: scale(1.1);
}

/* ===== VISIT FAQS ===== */
.xchurch-visit-faqs {
  position: relative;
  padding: 120px 0 80px;
  overflow: hidden;
  filter: drop-shadow(0 -15px 92.1px rgba(0, 0, 0, 0.15));
  -webkit-filter: drop-shadow(0 -15px 92.1px rgba(0, 0, 0, 0.15));
}

.xchurch-visit-faqs::before {
  position: absolute;
  content: '';
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #F3F3F3;
  clip-path: polygon(100% 0, 100% 0%, 100% 100%, 0 100%, 0 10%);
  z-index: -1;
}

.xchurch-visit-faqs__inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 30px;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.xchurch-visit-faqs__title {
  font-family: var(--font-family-secondary);
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
  margin: 0 0 11px;
  color: var(--color-footer-font);
  text-align: center;
}

.xchurch-visit-faqs__subtitle {
  font-family: var(--font-family-primary);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  margin: 0 0 47px;
  color: var(--color-black);
}

.xchurch-visit-faqs__list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.xchurch-visit-faqs__item {
  overflow: hidden;
  /* border-bottom: 1px solid rgba(0, 0, 0, 0.08); */
}

.xchurch-visit-faqs__item:first-child {
  /* border-top: 1px solid rgba(0, 0, 0, 0.08); */
}

.xchurch-visit-faqs__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22.5px 0;
  background: transparent;
  border: none;
  text-align: left;
  cursor: pointer;
  font-family: var(--font-family-secondary);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-footer-font);
  gap: 16px;
  transition: background-color 0.2s ease;
}

.xchurch-visit-faqs__question:hover {
  /* background-color: rgba(0, 0, 0, 0.03); */
}

.xchurch-visit-faqs__question-text {
  flex: 1;
}

.xchurch-visit-faqs__icon {
  font-size: 15px;
  color: var(--color-footer-font);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.xchurch-visit-faqs__item--expanded .xchurch-visit-faqs__icon {
  transform: rotate(180deg);
}

.xchurch-visit-faqs__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.xchurch-visit-faqs__item--expanded .xchurch-visit-faqs__answer {
  max-height: 500px;
  padding: 0 0 24px 0;
}

.xchurch-visit-faqs__answer p {
  font-family: var(--font-family-primary);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  margin: 0;
  color: var(--color-footer-font);
  text-align: left;
}

.xchurch-visit-faqs__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 24.5px;
  padding: 12px 10px;
  border: 2px solid var(--color-footer-font);
  border-radius: 5px;
  background-color: var(--color-footer-font);
  color: var(--color-white);
  text-decoration: none;
  font-family: var(--font-family-secondary);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.xchurch-visit-faqs__cta:hover {
  background-color: transparent;
  color: var(--color-footer-font);
}

/* ===== CARE FAQS ===== */
.xchurch-care-faqs {
  padding: 0 0 50px;
}

.xchurch-care-faqs__inner {
  max-width: 714px;
  margin: 0 auto;
  padding: 0 30px;
}

.xchurch-care-faqs__list {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.xchurch-care-faqs__item {
  overflow: hidden;
  margin-bottom: 20px;
  /* border: 1px solid rgba(0, 0, 0, 0.12); */
  /* transition: box-shadow 0.2s ease; */
}

.xchurch-care-faqs__item:last-child {
  margin-bottom: 0;
}

.xchurch-care-faqs__item:hover {
  /* box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06); */
}

.xchurch-care-faqs__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 15px 0;
  background: transparent;
  border: none;
  text-align: center;
  cursor: pointer;
  font-family: var(--font-family-secondary);
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
  color: var(--color-footer-font);
  outline: none;
  transition: background-color 0.2s ease;
}

.xchurch-care-faqs__question:hover {
  /* background-color: rgba(0, 0, 0, 0.02); */
}

.xchurch-care-faqs__question-text {
  flex: 0 1 auto;
}

.xchurch-care-faqs__icon {
  font-size: 15px;
  color: var(--color-footer-font);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.xchurch-care-faqs__item--expanded .xchurch-care-faqs__icon {
  transform: rotate(180deg);
}

.xchurch-care-faqs__answer {
  max-height: 0;
  overflow: hidden;
  /* border: 1px solid var(--color-black); */
  border-radius: 21px;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.xchurch-care-faqs__item--expanded {}

.xchurch-care-faqs__item--expanded .xchurch-care-faqs__answer {
  max-height: 4000px;
  border: 1px solid var(--color-black);
}

.xchurch-care-faqs__content {
  padding: 32px 27px 41px;
  text-align: left;
}

.xchurch-care-faqs__content .xchurch-care-faqs__subtitle {
  font-family: var(--font-family-secondary);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
  margin: 28px 0 0px;
  color: var(--color-footer-font);
}

.xchurch-care-faqs__content .xchurch-care-faqs__subtitle:first-child {
  margin-top: 0;
}

.xchurch-care-faqs__content p {
  font-family: var(--font-family-secondary);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  margin: 0;
  color: var(--color-black);
}

.xchurch-care-faqs__content p:last-of-type {
  margin-bottom: 0;
}

.xchurch-care-faqs__content a {
  position: relative;
  display: inline-flex;
  overflow: hidden;
  text-decoration: none;
  color: var(--color-footer-font);
  transition: color 0.4s cubic-bezier(0.7, 0, 0.3, 1);
  z-index: 0;
}

.xchurch-care-faqs__content a::after {
  content: '';
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  right: 0;
  z-index: -1;
  background: var(--color-footer-font);
  -webkit-transform: translate3d(101%, 0, 0);
  transform: translate3d(101%, 0, 0);
  -webkit-transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  -webkit-transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
  transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
}

.xchurch-care-faqs__content a:hover {
  color: #fff !important;
}

.xchurch-care-faqs__content a:hover::after {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.xchurch-care-faqs__content a strong::before {
  /* content: "CLICK HERE"; */
  content: attr(data-letters);
  position: absolute;
  color: #fff;
  left: 0;
  overflow: hidden;
  white-space: nowrap;
  width: 0%;
  -webkit-transition: width 0.5s;
  transition: width 0.5s;
  -webkit-transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
  transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
}

.xchurch-care-faqs__content a:hover strong::before {
  width: 100%;
}

/* .xchurch-care-faqs__label {
  margin-bottom: 12px !important;
} */

.xchurch-care-faqs__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 28px;
  padding: 12px 10px;
  background-color: var(--color-footer-font);
  border: 2px solid var(--color-footer-font);
  color: var(--color-white) !important;
  text-decoration: none;
  font-family: var(--font-family-secondary);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1;
  border-radius: 5px;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.xchurch-care-faqs__btn:hover {
  background-color: transparent;
  color: var(--color-footer-font) !important;
}

.xchurch-care-faqs__btn_n {
  font-size: 15px;
  font-family: var(--font-family-secondary);
  font-weight: 400;
  color: var(--color-footer-font);
  text-decoration: underline !important;
  line-height: 1;
}

/* ===== NEXT GENERATION ===== */
.xchurch-next-gen {
  position: relative;
  padding: 61px 0 149px;
  background-color: var(--color-footer-font);
  overflow: hidden;
}

.xchurch-next-gen__deco {
  position: absolute;
  width: auto;
  max-width: 310px;
  height: auto;
  max-height: 387px;
  object-fit: contain;
  opacity: 0.35;
  pointer-events: none;
  z-index: 0;
}

.xchurch-next-gen__deco--left {
  bottom: -107px;
  left: -122px;
}

.xchurch-next-gen__deco--right {
  top: -113px;
  right: -122px;
  /* transform: scaleX(-1); */
}

.xchurch-next-gen__inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 30px;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.xchurch-next-gen__title {
  font-family: var(--font-family-secondary);
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
  margin: 0 0 18px;
  color: var(--color-white);
}

.xchurch-next-gen__subtitle {
  font-family: var(--font-family-primary);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.4;
  margin: 0 0 26px;
  color: var(--color-white);
}

.xchurch-next-gen__list {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.xchurch-next-gen__item {
  overflow: hidden;
  border-bottom: 2px solid var(--color-white);
}

.xchurch-next-gen__item:first-child {
  /* border-top: 1px solid rgba(255, 255, 255, 0.2); */
}

.xchurch-next-gen__item:last-child {
  border-bottom: none;
}

.xchurch-next-gen__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  background: transparent;
  border: none;
  text-align: left;
  cursor: pointer;
  font-family: var(--font-family-secondary);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-white);
  gap: 16px;
  transition: background-color 0.2s ease;
}

.xchurch-next-gen__question:hover {}

.xchurch-next-gen__question-text {
  flex: 1;
}

.xchurch-next-gen__icon {
  font-size: 15px;
  color: var(--color-white);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.xchurch-next-gen__item--expanded .xchurch-next-gen__icon {
  transform: rotate(180deg);
}

.xchurch-next-gen__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.xchurch-next-gen__item--expanded .xchurch-next-gen__answer {
  max-height: 400px;
  padding: 0 0 24px 0;
}

.xchurch-next-gen__answer p {
  font-family: var(--font-family-primary);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  margin: 0;
  color: var(--color-white);
  text-align: left;
}

.xchurch-visit-intro__media {
  display: flex;
  justify-content: flex-start;
}

.xchurch-visit-intro__media-frame {
  position: relative;
  width: 100%;
  max-width: 303px;
  border-radius: 16px;
  overflow: visible;
}

.xchurch-visit-intro__photo {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 22px;
  filter: grayscale(1) contrast(1.05);
}

.xchurch-visit-intro__image {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: -120px;
  top: -58px;
  z-index: -1;
}

.xchurch-visit-intro__image img {
  position: absolute;
  top: 0;
}

/* ===== CONTACT OVERVIEW ===== */
.xchurch-contact-overview {
  background-color: var(--color-white);
  padding: 50px 30px;
}

.xchurch-contact-overview__inner {
  max-width: 1000px;
  margin: 0 auto;
}

.xchurch-contact-overview__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 55px;
  align-items: center;
  margin: 0 auto 60px;
  max-width: 850px;
}

.xchurch-contact-overview__left {
  padding-top: 0;
}

.xchurch-contact-overview__line {
  display: block;
  width: 38px;
  height: 4px;
  background-color: var(--color-footer-font);
  margin-bottom: 30px;
}

.xchurch-contact-overview__eyebrow {
  font-family: var(--font-family-secondary);
  font-size: 15px;
  font-weight: 700;
  color: var(--color-black);
  margin: 0 0 8px;
}

.xchurch-contact-overview__title {
  font-family: var(--font-family-secondary);
  font-size: 40px;
  font-weight: 700;
  color: var(--color-black);
  margin: 0 0 8px;
  line-height: 1;
}

.xchurch-contact-overview__info {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.xchurch-contact-overview__address,
.xchurch-contact-overview__phone {
  font-family: var(--font-family-secondary);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-black);
  margin: 0 0 16px;

  & a {
    color: var(--color-black);
    text-decoration: none;

    &:hover {
      text-decoration: underline;
    }
  }
}

.xchurch-contact-overview__times-block {
  margin-bottom: 16px;
}

.xchurch-contact-overview__label {
  font-family: var(--font-family-secondary);
  font-size: 16px;
  font-weight: 700;
  color: var(--color-black);
  margin: 0;
}

.xchurch-contact-overview__value {
  font-family: var(--font-family-secondary);
  font-size: 16px;
  font-weight: 400;
  color: var(--color-black);
  margin: 0;
}

.xchurch-contact-overview__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  background-color: var(--color-footer-font);
  color: var(--color-white);
  font-family: var(--font-family-secondary);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 5px;
  border: 2px solid var(--color-footer-font);
  transition: background-color 0.2s ease, color 0.2s ease;
  margin: 23px 0 47px;
  width: max-content;
}

.xchurch-contact-overview__cta:hover {
  background-color: transparent;
  color: var(--color-footer-font);
}

.xchurch-contact-overview__social {
  display: flex;
  gap: 16px;
  align-items: center;
}

.xchurch-contact-overview__social-link {
  color: var(--color-black);
  font-size: 24px;
  text-decoration: none;
  display: flex;
  transition: opacity 0.2s ease;
}

.xchurch-contact-overview__social-link:hover {
  opacity: 0.7;
}

.xchurch-contact-overview__right {
  position: relative;
}

.xchurch-contact-overview__images {
  position: relative;
  width: 100%;
  min-height: 400px;
}

.xchurch-contact-overview__image {
  position: absolute;
  display: block;
  border-radius: 7px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.xchurch-contact-overview__image--left {
  width: 167.57px;
  height: 233.29px;
  aspect-ratio: 167.57 / 233.29;
  bottom: -15px;
  left: -122px;
  transform: rotate(-11.83deg);
  z-index: 1;
}

.xchurch-contact-overview__image--center {
  max-width: 337px;
  aspect-ratio: 337/337;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  border: 0.5px solid var(--color-footer-font);
}

.xchurch-contact-overview__image--right {
  width: 248px;
  height: 162px;
  aspect-ratio: 248 / 162;
  top: -63px;
  right: -40px;
  transform: rotate(4.53deg);
  object-fit: cover;
  object-position: center;
  z-index: 1;
}

.xchurch-contact-overview__overlay {
  position: absolute;
  left: 25%;
  transform: translateY(-65%);
  object-fit: contain;
  object-position: center;
  pointer-events: none;
  z-index: 0;
}

.xchurch-contact-overview__help {
  text-align: center;
  max-width: 730px;
  margin: 0 auto;
  padding-top: 40px;
}

.xchurch-contact-overview__help-title {
  font-family: var(--font-family-secondary);
  font-size: 24px;
  font-weight: 700;
  color: var(--color-black);
  margin: 0 0 16px;
  line-height: 1;
}

.xchurch-contact-overview__help-text {
  font-family: var(--font-family-secondary);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-footer-font);
  margin: 0;
}

/* watch section */
.watch-hero {
  background-image: url("../images/watch-hero-bg.webp") !important;
  /* background-position: right 40%; */
}

/* ===== WATCH OVERVIEW ===== */
.xchurch-watch-overview {
  background-color: var(--color-white);
}

.xchurch-watch-overview .xchurch-latest__inner {
  max-width: 1015px;
  padding: 0 30px 37px;
  align-items: stretch;
}

.xchurch-watch-overview__meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin-bottom: 28px;
  width: 100%;
}

.xchurch-watch-overview__meta-left,
.xchurch-watch-overview__meta-right {
  font-family: var(--font-family-primary);
  font-size: 15px;
  font-weight: 400;
  color: var(--color-footer-font);
  flex-shrink: 0;
}

.xchurch-watch-overview__meta-line {
  flex: 1;
  max-width: 196px;
  height: 1px;
  background-color: var(--color-footer-font);
}

.xchurch-watch-overview__thumbnail-wrap {
  width: 100%;
  max-height: 344px;
  margin-bottom: 18px;
  border-radius: 8px;
  border: 1px solid #939393;
  overflow: hidden;
  box-shadow: inset 0 -151px 103.3px 0 rgba(0, 0, 0, 0.4);
}

.xchurch-watch-overview__thumbnail {
  width: 100%;
  height: auto;
  display: block;
}

.xchurch-watch-overview__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.xchurch-watch-overview__content-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.xchurch-watch-overview__title {
  font-family: var(--font-family-secondary);
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
  color: var(--color-footer-font);
}

.xchurch-watch-overview__subtitle {
  font-family: var(--font-family-primary);
  font-size: 15px;
  font-weight: 400;
  color: #939393;
  margin: 0 0 6px;
}

.xchurch-watch-overview__description {
  font-family: var(--font-family-primary);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  margin: 0;
  color: var(--color-footer-font);
  max-width: 654px;
  text-align: left;
}

.xchurch-watch-overview__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 10px;
  background-color: var(--color-footer-font);
  color: var(--color-white);
  text-decoration: none;
  font-family: var(--font-family-secondary);
  border: 2px solid var(--color-footer-font);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 5px;
  min-width: 130px;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.xchurch-watch-overview__cta:hover {
  background-color: transparent;
  color: var(--color-footer-font);
}

/* ===== MESSAGE HERO ===== */
.xchurch-message-hero {
  background-color: #1E1E1E;
  padding: 130px 0 88px;
}

.xchurch-message-hero__inner {
  max-width: 1015px;
  margin: 0 auto;
  padding: 0 30px;
}

.xchurch-message-hero__video-wrap {
  position: relative;
  width: 100%;
  /* padding-bottom: 53.51%; */
  /* height: 513px; */
  overflow: hidden;
  margin-bottom: 40px;
  border-radius: 8px;
  border: 1px solid #939393;
}

.xchurch-message-hero__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.xchurch-message-hero__info {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
}

.xchurch-message-hero__content {
  flex: 1;
  min-width: 0;
}

.xchurch-message-hero__title {
  font-family: var(--font-family-secondary);
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 8px;
  color: var(--color-white);
}

.xchurch-message-hero__pastor {
  font-family: var(--font-family-secondary);
  font-size: 15px;
  font-weight: 700;
  color: #939393;
  margin: 0 0 8px;
}

.xchurch-message-hero__date {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-family-secondary);
  font-size: 15px;
  font-weight: 400;
  color: #939393;
  margin: 0 0 8px;
}

.xchurch-message-hero__date-icon {
  font-size: 15px;
  color: #939393;
}

.xchurch-message-hero__description {
  font-family: var(--font-family-secondary);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  margin: 0;
  color: var(--color-white);
  max-width: 654px;
}

.xchurch-message-hero__cta {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  background-color: transparent;
  color: var(--color-white);
  text-decoration: none;
  font-family: var(--font-family-secondary);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  border: 2px solid var(--color-white);
  border-radius: 5px;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.xchurch-message-hero__cta:hover {
  background-color: var(--color-white);
  color: #1E1E1E;
}

.xchurch-message-hero__cta--mobile {
  display: none;
}

/* ===== MORE MESSAGES ===== */
.xchurch-message-more {
  background-color: #191919;
  padding: 36px 0 82px;
}

.xchurch-message-more__inner {
  max-width: 1015px;
  margin: 0 auto;
  padding: 0 30px;
}

.xchurch-message-more__featured {
  margin-bottom: 80px;
}

.xchurch-message-more__featured-label {
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-gold);
  margin-bottom: 24px;
}

.xchurch-message-more__featured-card {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
  background: var(--color-black-light);
  border-radius: 20px;
  overflow: hidden;
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.xchurch-message-more__featured-thumb-wrap {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.xchurch-message-more__featured-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.xchurch-message-more__featured-card:hover .xchurch-message-more__featured-thumb {
  transform: scale(1.05);
}

.xchurch-message-more__featured-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.xchurch-message-more__featured-title {
  font-family: var(--font-primary);
  font-size: 48px;
  font-weight: 700;
  line-height: 1.1;
  color: var(--color-white);
}

.xchurch-message-more__featured-pastor {
  font-family: var(--font-primary);
  font-size: 18px;
  font-weight: 600;
  color: var(--color-white);
  opacity: 0.8;
}

.xchurch-message-more__featured-date {
  font-family: var(--font-primary);
  font-size: 14px;
  color: var(--color-white);
  opacity: 0.6;
  display: flex;
  align-items: center;
  gap: 8px;
}

.xchurch-message-more__featured-desc {
  font-family: var(--font-primary);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-white);
  opacity: 0.7;
  margin-top: 8px;
}

.xchurch-message-more__featured-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
  color: var(--color-gold);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 14px;
  transition: gap 0.3s ease;
}

.xchurch-message-more__featured-link:hover {
  gap: 18px;
}

@media (max-width: 1024px) {
  .xchurch-message-more__featured-card {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 30px;
  }

  .xchurch-message-more__featured-title {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .xchurch-message-more__featured {
    margin-bottom: 60px;
  }

  .xchurch-message-more__featured-card {
    padding: 20px;
  }

  .xchurch-message-more__featured-title {
    font-size: 28px;
  }
}

.xchurch-message-more__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 42px;
  margin-bottom: 39px;
}

.xchurch-message-more__header-left {
  flex: 1;
  min-width: 0;
  padding-bottom: 10px;
}

.xchurch-message-more__title {
  font-family: var(--font-family-secondary);
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
  margin: 0 0 10px;
  color: var(--color-white);
}

.xchurch-message-more__subtitle {
  font-family: var(--font-family-secondary);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  margin: 0;
  color: var(--color-white);
  max-width: 345px;
}

.xchurch-message-more__header-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 17px;
  flex-shrink: 0;
  align-self: flex-end;
}

.xchurch-message-more__see-all {
  font-family: var(--font-family-secondary);
  font-size: 15px;
  font-weight: 700;
  color: var(--color-white);
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.xchurch-message-more__see-all:hover {
  opacity: 0.85;
}

.xchurch-message-more__arrows {
  display: flex;
  gap: 7px;
}

.xchurch-message-more__arrow {
  width: 22px;
  height: 22px;
  font-size: 10px;
  border-radius: 50%;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background-color: var(--color-white);
  color: #191919;
  transition: background-color 0.2s ease, opacity 0.2s ease;
}

.xchurch-message-more__arrow:hover:not(:disabled) {
  background-color: rgba(255, 255, 255, 0.35);
}

.xchurch-message-more__arrow:disabled {
  background-color: #939393 !important;
  color: #191919;
  cursor: not-allowed;
  opacity: 0.8;
}

.xchurch-message-more__grid {
  display: flex;
  gap: 26px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 8px;
}

/* Hide horizontal scrollbar on desktop only */
@media (min-width: 769px) {
  .xchurch-message-more__grid {
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .xchurch-message-more__grid::-webkit-scrollbar {
    display: none;
  }
}

.xchurch-message-more__card {
  display: flex;
  flex-direction: column;
  background: transparent;
  flex: 0 0 301px;
}

.xchurch-message-more__card-link {
  display: block;
  margin-bottom: 18px;
  text-decoration: none;
}

.xchurch-message-more__card-thumb-wrap {
  display: block;
  border-radius: 8px;
  border: 1px solid #939393;
  overflow: hidden;
  aspect-ratio: 301 / 175;
  background: #2a2a2a;
}

.xchurch-message-more__card-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.xchurch-message-more__card-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.xchurch-message-more__card-title {
  font-family: var(--font-family-secondary);
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  margin: 0 0 8px;
  color: var(--color-white);
}

.xchurch-message-more__card-pastor {
  font-family: var(--font-family-secondary);
  font-size: 15px;
  font-weight: 400;
  color: #929292;
  margin: 0 0 3px;
}

.xchurch-message-more__card-date {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-family-secondary);
  font-size: 15px;
  font-weight: 400;
  color: #939393;
  margin: 0 0 9px;
}

.xchurch-message-more__card-date-icon {
  font-size: 15px;
  color: #939393;
}

.xchurch-message-more__card-desc {
  font-family: var(--font-family-secondary);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  margin: 0;
  color: var(--color-white);
}

.xchurch-message-more__empty {
  font-family: var(--font-family-secondary);
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  grid-column: 1 / -1;
}

/* ===== EVENTS HERO ===== */
.xchurch-events-overview .xchurch-latest__inner {
  max-width: 1032px;
  padding: 0 30px;
}

.xchurch-events-hero__title {
  font-family: var(--font-family-secondary);
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
  margin: 0 0 27px;
  color: var(--color-footer-font);
}

.xchurch-events-hero__banner-wrap {
  width: 100%;
  margin-bottom: 27px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
}

.xchurch-events-hero__banner {
  position: relative;
  width: 100%;
  height: 100%;
  /* padding-bottom: 34.36%; */
  background-size: cover;
  background-repeat: no-repeat;
  background-color: #2a2a2a;
  /* background-position: right 85%; */
}

.xchurch-events-hero__info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 22px;
  width: 100%;
}

.xchurch-events-hero__content {
  flex: 1;
  min-width: 0;
  max-width: 294px;
}

.xchurch-events-hero__event-title {
  font-family: var(--font-family-secondary);
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  margin: 0 0 9px;
  color: var(--color-footer-font);
  text-align: left;
}

.xchurch-events-hero__date {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-family-secondary);
  font-size: 15px;
  font-weight: 700;
  color: var(--color-footer-font);
  margin: 0 0 16x;
}

.xchurch-events-hero__date-icon {
  font-size: 15px;
  color: var(--color-footer-font);
}

.xchurch-events-hero__description {
  font-family: var(--font-family-secondary);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  margin: 0;
  color: var(--color-footer-font);
  text-align: left;
}

.xchurch-events-hero__cta {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  background-color: var(--color-footer-font);
  color: var(--color-white);
  text-decoration: none;
  font-family: var(--font-family-secondary);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 5px;
  border: 2px solid var(--color-footer-font);
  transition: background-color 0.2s ease, color 0.2s ease;
}

.xchurch-events-hero__cta:hover {
  background-color: transparent;
  color: var(--color-footer-font);
}

/* ===== GET INVOLVED – MISSIONS ===== */
.xchurch-mission {
  background-color: #1a1a1a;
  padding: 60px 0 80px;
  z-index: 1;
  position: relative;
}

.xchurch-mission__inner {
  max-width: 718px;
  margin: 0 auto;
  padding: 0 30px;
}

.xchurch-mission__intro {
  margin-bottom: 44px;
}

.xchurch-mission__image-wrap {
  position: relative;
  width: 100%;
  margin-bottom: 26px;
  border-radius: 8px;
  border: 1px solid #939393;
  overflow: hidden;
}

.xchurch-mission__image {
  width: 100%;
  height: auto;
  max-height: 234px;
  object-fit: cover;
  display: block;
  object-position: center;
}

.xchurch-mission__image-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: #00000094;
  pointer-events: none;
  z-index: 0;
}

.xchurch-mission__eyebrow {
  font-family: var(--font-family-secondary);
  font-size: 14px;
  font-weight: 400;
  color: var(--color-white);
  text-transform: uppercase;
  line-height: 1;
}

.xchurch-mission__title {
  font-family: var(--font-family-secondary);
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
  margin: 0 0 10px;
  color: var(--color-white);
}

.xchurch-mission__content p {
  font-family: var(--font-family-secondary);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  margin: 0 0 24px;
  color: var(--color-white);
}

.xchurch-mission__content p:last-of-type {
  margin-bottom: 26px;
}

.xchurch-mission__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px;
  background-color: transparent;
  color: var(--color-white);
  text-decoration: none;
  font-family: var(--font-family-secondary);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  border: 1px solid var(--color-white);
  border-radius: 5px;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.xchurch-mission__cta:hover {
  background-color: var(--color-white);
  color: var(--color-footer-font);
}

.xchurch-mission__cta--form {
  margin-top: 8px;
}

.xchurch-mission__block {
  margin-bottom: 48px;
}

.xchurch-mission__block:last-child {
  margin-bottom: 0;
}

.xchurch-mission__heading {
  font-family: var(--font-family-secondary);
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
  max-width: 492px;
  margin: 0 0 26px;
  color: var(--color-white);
}

.xchurch-mission__block p {
  font-family: var(--font-family-secondary);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  margin: 0 0 12px;
  color: var(--color-white);
}

.xchurch-mission__block p:last-child {
  margin-bottom: 0;
}

.xchurch-mission__trip-meta {
  font-weight: 700 !important;
  color: #939393 !important;
  margin-bottom: 12px !important;
}

.xchurch-mission__link {
  color: var(--color-white);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.xchurch-mission__link:hover {
  opacity: 0.85;
}

.xchurch-mission__faqs {
  margin-top: 56px;
}

.xchurch-mission__faq {
  margin-bottom: 48px;
}

.xchurch-mission__faq:last-child {
  margin-bottom: 0;
}

.xchurch-mission__faq-q {
  margin-bottom: 8px;
}

.xchurch-mission__faq-q strong {
  color: #939393;
  font-size: 14px;
}

.xchurch-mission__faq-a {
  margin: 0;
  padding-left: 0;
}

/* ===== EVENTS LIST (grid + Load More) ===== */
.xchurch-events {
  background-color: var(--color-white);
  padding: 47px 0 40px;
}

.xchurch-events__inner {
  max-width: 1032px;
  margin: 0 auto;
  padding: 0 30px;
}

.xchurch-events__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 58px 27px;
  margin-bottom: 102px;
}

.xchurch-events__card {
  display: flex;
  flex-direction: column;
  background: var(--color-white);
  overflow: hidden;
  max-width: 306px;
}

.xchurch-events__card-link {
  display: block;
  text-decoration: none;
  border: .5px solid var(--color-black);
}

.xchurch-events__card-thumb-wrap {
  display: block;
  aspect-ratio: 306 / 270;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--color-gray);
}

.xchurch-events__card-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.xchurch-events__card-content {
  padding: 20px 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.xchurch-events__card-title {
  font-family: var(--font-family-secondary);
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  margin: 0 0 9px;
  color: var(--color-footer-font);
}

.xchurch-events__card-date {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-family-secondary);
  font-size: 15px;
  font-weight: 700;
  color: var(--color-footer-font);
  margin: 0 0 6px;
}

.xchurch-events__card-date-icon {
  font-size: 15px;
  color: var(--color-footer-font);
}

.xchurch-events__card-desc {
  font-family: var(--font-family-secondary);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  margin: 0;
  color: var(--color-footer-font);
}

.xchurch-events__card-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 8px;
  background-color: var(--color-footer-font);
  color: var(--color-white);
  text-decoration: none;
  font-family: var(--font-family-secondary);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 5px;
  width: fit-content;
  border: 2px solid var(--color-footer-font);
  transition: background-color 0.2s ease, color 0.2s ease;
}

.xchurch-events__card-cta:hover {
  background-color: transparent;
  color: var(--color-footer-font);
}

.xchurch-events__empty {
  font-family: var(--font-family-secondary);
  font-size: 15px;
  color: var(--color-footer-font);
  margin: 0;
  grid-column: 1 / -1;
}

.xchurch-events__load-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.xchurch-events__load-more {
  position: relative;
  z-index: 0;
  overflow: visible;
  background: none;
  border: none;
  padding: 8px;
  font-family: var(--font-family-secondary);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-footer-font);
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.xchurch-events__load-more:focus {
  outline: 0;
}

.xchurch-events__load-more::before,
.xchurch-events__load-more::after {
  position: absolute;
  content: '';
  display: block;
  width: 140%;
  height: 100%;
  left: -20%;
  z-index: -1;
  pointer-events: none;
  transition: all ease-in-out 0.5s;
  background-repeat: no-repeat;
}

.xchurch-events__load-more::before {
  display: none;
  top: -75%;
  background-image:
    radial-gradient(circle, var(--color-footer-font) 20%, transparent 20%),
    radial-gradient(circle, transparent 20%, var(--color-footer-font) 20%, transparent 30%),
    radial-gradient(circle, var(--color-footer-font) 20%, transparent 20%),
    radial-gradient(circle, var(--color-footer-font) 20%, transparent 20%),
    radial-gradient(circle, transparent 10%, var(--color-footer-font) 15%, transparent 20%),
    radial-gradient(circle, var(--color-footer-font) 20%, transparent 20%),
    radial-gradient(circle, var(--color-footer-font) 20%, transparent 20%),
    radial-gradient(circle, var(--color-footer-font) 20%, transparent 20%),
    radial-gradient(circle, var(--color-footer-font) 20%, transparent 20%);
  background-size: 10% 10%, 20% 20%, 15% 15%, 20% 20%, 18% 18%, 10% 10%, 15% 15%, 10% 10%, 18% 18%;
}

.xchurch-events__load-more::after {
  display: none;
  bottom: -75%;
  background-image:
    radial-gradient(circle, var(--color-footer-font) 20%, transparent 20%),
    radial-gradient(circle, var(--color-footer-font) 20%, transparent 20%),
    radial-gradient(circle, transparent 10%, var(--color-footer-font) 15%, transparent 20%),
    radial-gradient(circle, var(--color-footer-font) 20%, transparent 20%),
    radial-gradient(circle, var(--color-footer-font) 20%, transparent 20%),
    radial-gradient(circle, var(--color-footer-font) 20%, transparent 20%),
    radial-gradient(circle, var(--color-footer-font) 20%, transparent 20%);
  background-size: 15% 15%, 20% 20%, 18% 18%, 20% 20%, 15% 15%, 10% 10%, 20% 20%;
}

.xchurch-events__load-more:active {
  transform: scale(0.9);
  /* background-color: #181c1b; */
  /* box-shadow: 0 1px 15px var(--color-footer-font); */
}

/* Hover: show and run bubble animations */
.xchurch-events__load-more:hover:not(:disabled)::before {
  display: block;
  animation: topBubbles ease-in-out 0.75s forwards;
}

.xchurch-events__load-more:hover:not(:disabled)::after {
  display: block;
  animation: bottomBubbles ease-in-out 0.75s forwards;
}

/* Same bubble animation on click */
.xchurch-events__load-more.xchurch-events__load-more--animating::before {
  display: block;
  animation: topBubbles ease-in-out 0.75s forwards;
}

.xchurch-events__load-more.xchurch-events__load-more--animating::after {
  display: block;
  animation: bottomBubbles ease-in-out 0.75s forwards;
}

@keyframes topBubbles {
  0% {
    background-position: 5% 90%, 10% 90%, 10% 90%, 15% 90%, 25% 90%, 25% 90%, 40% 90%, 55% 90%, 70% 90%;
  }

  50% {
    background-position: 0% 80%, 0% 20%, 10% 40%, 20% 0%, 30% 30%, 22% 50%, 50% 50%, 65% 20%, 90% 30%;
  }

  100% {
    background-position: 0% 70%, 0% 10%, 10% 30%, 20% -10%, 30% 20%, 22% 40%, 50% 40%, 65% 10%, 90% 20%;
    background-size: 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%;
  }
}

@keyframes bottomBubbles {
  0% {
    background-position: 10% -10%, 30% 10%, 55% -10%, 70% -10%, 85% -10%, 70% -10%, 70% 0%;
  }

  50% {
    background-position: 0% 80%, 20% 80%, 45% 60%, 60% 100%, 75% 70%, 95% 60%, 105% 0%;
  }

  100% {
    background-position: 0% 90%, 20% 90%, 45% 70%, 60% 110%, 75% 80%, 95% 70%, 110% 10%;
    background-size: 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%;
  }
}

.xchurch-events__load-more:hover:not(:disabled) {
  /* opacity: 0.8; */
}

.xchurch-events__load-more:disabled {
  cursor: not-allowed;
  opacity: 0.6;
}

/* ===== OUR SERMONS ===== */
.xchurch-sermons {
  background-color: var(--color-white);
  padding: 0 0 60px;
}

.xchurch-sermons__inner {
  max-width: 1015px;
  margin: 0 auto;
  padding: 0 30px;
}

.xchurch-sermons__title {
  font-family: var(--font-family-secondary);
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 5px;
  color: var(--color-footer-font);
}

.xchurch-sermons__desc {
  font-family: var(--font-family-primary);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.4;
  margin: 0 0 35px;
  color: var(--color-footer-font);
}

.xchurch-sermons__search {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 52px;
  flex-wrap: wrap;
}

.xchurch-sermons__search-wrap {
  display: flex;
  align-items: center;
  flex: 1;
  min-width: 200px;
  max-width: 407px;
  border: 1px solid var(--color-footer-font);
  border-radius: 5px;
  padding: 10.5px 15px;
  background: var(--color-white);
}

.xchurch-sermons__search-icon {
  color: #6e6e6e;
  font-size: 14px;
  margin-right: 10px;
}

.xchurch-sermons__search-input {
  flex: 1;
  border: none;
  outline: none;
  font-family: var(--font-family-primary);
  font-size: 15px;
  color: var(--color-footer-font);
  background: transparent;
}

.xchurch-sermons__search-input::placeholder {
  color: #9e9e9e;
}

.xchurch-sermons__submit {
  padding: 8px;
  background-color: var(--color-footer-font);
  color: var(--color-white);
  border: 2px solid var(--color-footer-font);
  border-radius: 5px;
  font-family: var(--font-family-secondary);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.xchurch-sermons__submit:hover {
  background-color: transparent;
  color: var(--color-footer-font);
}

.xchurch-sermons__mobile-header {
  display: none;
}

.xchurch-sermons__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 86px 26px;
}

.xchurch-sermons__card {
  display: flex;
  flex-direction: column;
  text-align: left;
  justify-content: space-between;
}

.xchurch-sermons__card-content {
  display: flex;
  flex-direction: column;
}

.xchurch-sermons__card-link {
  display: block;
  margin-bottom: 31px;
}

.xchurch-sermons__card-thumb-wrap {
  display: block;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #939393;
  /* box-shadow: inset 0 -151px 103.3px 0 rgba(0, 0, 0, 0.4); */
}

.xchurch-sermons__card-thumb {
  width: 100%;
  height: auto;
  aspect-ratio: 301 / 175;
  object-fit: cover;
  display: block;
}

.xchurch-sermons__card-title {
  font-family: var(--font-family-secondary);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.25;
  margin: 0 0 3px;
  color: var(--color-footer-font);
}

.xchurch-sermons__card-subtitle {
  font-family: var(--font-family-primary);
  font-size: 15px;
  font-weight: 700;
  color: #929292;
  margin: 0 0 5px;
}

.xchurch-sermons__card-desc {
  font-family: var(--font-family-primary);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  margin: 0 0 25px;
  color: var(--color-black);
  /* flex: 1; */
}

.xchurch-sermons__card-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  border: 2px solid var(--color-footer-font);
  background-color: var(--color-footer-font);
  color: var(--color-white);
  text-decoration: none;
  font-family: var(--font-family-secondary);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 5px;
  align-self: flex-start;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.xchurch-sermons__card-cta:hover {
  background-color: transparent;
  color: var(--color-footer-font);
}

.xchurch-sermons__load-wrap {
  text-align: center;
  margin-top: 87px;
}

.xchurch-sermons__load-more {
  background: none;
  border: none;
  font-family: var(--font-family-primary);
  font-size: 15px;
  font-weight: 700;
  color: var(--color-footer-font);
  cursor: pointer;
  text-decoration: none;
  padding: 0;
  transition: color 0.2s ease;
}

.xchurch-sermons__load-more:hover {
  /* color: var(--color-cream); */
}

.xchurch-sermons__empty {
  grid-column: 1 / -1;
  font-family: var(--font-family-primary);
  font-size: 16px;
  color: #6e6e6e;
  margin: 0;
}

/* Care section */

.care-hero {
  background-image: url(../images/care-hero-bg.webp);
  background-position: right 35%;
}

.care-hero__container {
  justify-content: center;
}

.care-hero__container h1 {
  text-align: center;
}

/* Care: Resources & Information (left content + right collage) */
.xchurch-care-resources .xchurch-latest__inner {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding-bottom: 60px;
}

.xchurch-care-resources__body {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  align-items: center;
  max-width: 759px;
  margin: 0 auto;
  width: 100%;
}

.xchurch-care-resources__content {
  text-align: left;
  max-width: 385px;
  margin-top: -50px;
}

.xchurch-care-resources__title {
  font-family: var(--font-family-secondary);
  font-size: 40px;
  font-weight: 700;
  line-height: 111%;
  margin: 0 0 15px;
  color: var(--color-footer-font);
}

.xchurch-care-resources__text {
  font-family: var(--font-family-secondary);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  margin: 0;
  color: var(--color-black);
}

.xchurch-care-resources__collage {
  position: relative;
  /* height: -webkit-fill-available; */
  padding-top: 50px;
}

.xchurch-care-resources__img {
  position: absolute;
  display: block;
  object-fit: cover;
}

.xchurch-care-resources__img--center {
  /* width: 100%; */
  width: 325px;
  height: 342px;
  z-index: 1;
  position: relative;
}

.xchurch-care-resources__img--left {
  width: 100%;
  max-width: 156px;
  height: 97px;
  left: -20px;
  bottom: -22px;
  transform: rotate(351deg);
  z-index: 1;
}

.xchurch-care-resources__img--right {
  width: 100%;
  max-width: 156px;
  height: 97px;
  right: 5px;
  top: 0;
  transform: rotate(10deg);
  z-index: 2;
  object-position: top;
}

/* events hero */
.events-hero {
  background-image: url(../images/events-hero-bg.webp);
}

.events-hero::before {
  display: none;
}

.events-hero__container {
  justify-content: center;
}

.events-hero__container h1 {
  text-align: center;
}

/* Get Involved page */
.get-involved-hero {
  background-image: url(../images/get-involved-hero-bg.webp);
}

/* ===== WELCOME TO THE X (tabs + content) ===== */
.xchurch-welcome {
  background-color: var(--color-white);
  padding: 0;
}

.xchurch-welcome__inner {
  /* max-width: 1000px; */
  margin: 0 auto;
  /* padding: 0 30px; */
}

.xchurch-welcome__tabs {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  width: 100%;
  max-width: 632px;
  margin: 0 20px 25px;
  padding: 9px 14px;
  background-color: var(--color-footer-font);
  border-radius: 999px;
}

.xchurch-welcome__tabs-slider {
  position: absolute;
  top: 10px;
  left: 6px;
  height: calc(100% - 19px);
  width: 140px;
  background-color: var(--color-white);
  border-radius: 999px;
  transition: left 0.3s ease, width 0.3s ease;
  pointer-events: none;
  z-index: 0;
}

.xchurch-welcome__tab {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  font-family: var(--font-family-secondary);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-white);
  text-decoration: none;
  border-radius: 999px;
  transition: color 0.2s ease;
  min-width: 0;
  cursor: pointer;
  border: none;
  background: none;
}

.xchurch-welcome__tab--active,
.xchurch-welcome__tab:hover {
  color: #929292;
}

.xchurch-welcome__eyebrow {
  font-family: var(--font-family-secondary);
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  margin: 0 0 5px;
  color: var(--color-footer-font);
  text-align: center;
}

.xchurch-welcome__title {
  font-family: var(--font-family-secondary);
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
  margin: 0 0 31px;
  color: var(--color-footer-font);
  text-align: center;
  white-space: pre-line;
}

.xchurch-welcome__panel {
  display: none;
}

.xchurch-welcome__panel--active {
  display: block;
  padding: 0 30px;
  margin-bottom: 66px;
  animation: xchurch-welcome-panel-in 0.4s ease-out forwards;
}

.xchurch-welcome__panel[aria-hidden="true"] {
  display: none;
}

.xchurch-welcome__panel[aria-hidden="false"] {
  display: block;
}

.xchurch-about-values__container {
  margin-bottom: 61px;
}

@keyframes xchurch-welcome-panel-in {
  from {
    opacity: 0;
    transform: translateX(40px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.xchurch-welcome__content {
  display: flex;
  justify-content: space-between;
  gap: 35px;
  align-items: center;
  margin: 0 auto;
}

.xchurch-welcome__media {
  border-radius: 4px;
  overflow: hidden;
  max-width: 373px;
  aspect-ratio: 373/498;
}

.xchurch-welcome__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  vertical-align: middle;
}

.xchurch-welcome__text {
  padding-top: 8px;
  max-width: 375px;
}

.xchurch-welcome__line {
  display: block;
  width: 38px;
  height: 4px;
  background-color: var(--color-footer-font);
  margin-bottom: 60px;
}

.xchurch-welcome__text p {
  font-family: var(--font-family-secondary);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  margin: 0 0 49px;
  color: var(--color-black);
}

.xchurch-welcome__text p:last-of-type {
  margin-bottom: 49px;
}

.xchurch-welcome__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  background-color: var(--color-footer-font);
  color: var(--color-white);
  text-decoration: none;
  font-family: var(--font-family-secondary);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 5px;
  border: 2px solid var(--color-footer-font);
  transition: background-color 0.2s ease, color 0.2s ease;
}

.xchurch-welcome__cta:hover {
  background-color: transparent;
  color: var(--color-footer-font);
}

.xchurch-welcome__cta--mobile {
  display: none;
}

/* Circles panel: two CTAs, stacked photos + overlay image */
.xchurch-welcome__cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.xchurch-welcome__content--circles {
  max-width: 783px;
  align-items: flex-start;
}

.xchurch-welcome__content--circles .xchurch-welcome__text {
  max-width: 460px;
  padding: 0;
}

.xchurch-welcome__content--circles .xchurch-welcome__text p {
  margin: 0 0 30px;
}

.xchurch-welcome__content--circles .xchurch-welcome__text p:last-of-type {
  margin-bottom: 56px;
}

.xchurch-welcome__media--circles {
  position: relative;
  max-width: 284px;
  aspect-ratio: auto;
  overflow: visible;
}

.xchurch-welcome__media-stack {
  display: flex;
  flex-direction: column;
  gap: 0;
  overflow: hidden;
  max-width: 284px;
  gap: 18px;
  padding-top: 57px;
}

.xchurch-welcome__media-stack .xchurch-welcome__image {
  width: 100%;
  height: auto;
  aspect-ratio: 284/207;
  object-fit: cover;
  display: block;
}

.xchurch-welcome__media-stack .xchurch-welcome__image:first-child {
  aspect-ratio: 284/207;
}

.xchurch-welcome__media-overlay {
  position: absolute;
  /* right: 0; */
  left: 150px;
  top: 0;
  /* transform: translateX(50%); */
  /* height: 100%; */
  width: auto;
  /* max-width: 45%; */
  object-fit: contain;
  object-position: right center;
  pointer-events: none;
  z-index: -1;
  margin-top: -13px;
}

.xchurch-welcome__cta-group--mobile {
  display: none;
}

/* Serve panel: subtitle, intro, service list, image + overlay */
.xchurch-welcome__content--serve {
  max-width: 780px;
}

.xchurch-welcome__content--serve .xchurch-welcome__text {
  width: 100%;
  max-width: none;
}

.xchurch-welcome__content--serve .xchurch-welcome__text p {
  max-width: 612px;
  margin: 0 0 30px;
}

.xchurch-welcome__subtitle {
  font-family: var(--font-family-secondary);
  font-size: 15px;
  font-weight: 400;
  color: var(--color-black);
  margin: 0 0 8px;
  text-align: center;
}

.xchurch-welcome__content--serve .xchurch-welcome__intro {
  margin-bottom: 24px;
}

.xchurch-welcome__serve-list {
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 415px;
}

.xchurch-welcome__serve-item {
  font-family: var(--font-family-secondary);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-black);
  margin-bottom: 20px;
}

.xchurch-welcome__serve-item:last-child {
  margin-bottom: 0;
}

.xchurch-welcome__serve-item strong {
  font-weight: 700;
}

.xchurch-welcome__media--serve {
  position: relative;
  max-width: 284px;
  height: 207px;
  overflow: visible;
  aspect-ratio: 284 / 207;
  transform: translateY(40%);
}

.xchurch-welcome__media--serve .xchurch-welcome__media-overlay {
  position: absolute;
  /* right: 0; */
  left: 195px;
  top: 0;
  transform: translateY(-15%);
  /* height: 100%; */
  width: auto;
  /* max-width: 45%; */
  object-fit: contain;
  object-position: right center;
  pointer-events: none;
  z-index: -1;
}

.xchurch-welcome__serve-content {
  display: flex;
  gap: 30px;
  justify-content: space-between;
  position: relative;
}

/* Outreach panel: single-column, subtitle, intro, image, blocks, partners carousel */
.xchurch-welcome__content--outreach {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 658px;
  margin: 0 auto;
  gap: 0;
}

.xchurch-welcome__outreach-intro {
  font-family: var(--font-family-secondary);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-black);
  text-align: center;
  margin: 0 0 24px;
  max-width: 640px;
}

.xchurch-welcome__outreact-line {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--color-footer-font);
  margin-bottom: 24px;
}

.xchurch-welcome__outreach-image-wrap {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 24px;
  max-height: 236px;
  border: 1px solid #939393;
  position: relative;
  display: flex;
}

.xchurch-welcome__outreach-image-wrap:before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background-color: #00000091;
  position: absolute;
}

.xchurch-welcome__outreach-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: right 60%;
}

.xchurch-welcome__outreach-block {
  width: 100%;
  text-align: left;
  margin-bottom: 21px;
}

.xchurch-welcome__outreach-block-eyebrow {
  font-family: var(--font-family-secondary);
  font-size: 14px;
  font-weight: 400;
  color: var(--color-footer-font);
  margin: 0;
}

.xchurch-welcome__outreach-block-title {
  font-family: var(--font-family-secondary);
  font-size: 32px;
  font-weight: 700;
  color: var(--color-footer-font);
  margin: 0 0 5px;
}

.xchurch-welcome__outreach-block-heading {
  font-family: var(--font-family-secondary);
  font-size: 32px;
  font-weight: 700;
  color: var(--color-footer-font);
  margin: 0 0 5px;
}

.xchurch-welcome__outreach-block-p {
  font-family: var(--font-family-secondary);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-footer-font);
  margin: 0 0 14px;
}

.xchurch-welcome__outreach-block .xchurch-welcome__cta {}

.xchurch-welcome__outreach-partners {
  width: 100%;
  text-align: center;
  margin-top: 30px;
  margin-bottom: 24px;
}

.xchurch-welcome__outreach-partners-title {
  font-family: var(--font-family-secondary);
  font-size: 32px;
  font-weight: 700;
  color: var(--color-footer-font);
  margin: 0 0 5px;
}

.xchurch-welcome__outreach-partners-intro {
  font-family: var(--font-family-secondary);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-footer-font);
  margin: 0 auto 44px;
}

.xchurch-welcome__partners-carousel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 10px;
  width: 100%;
}

.xchurch-welcome__partners-arrow {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  border: none;
  background: var(--color-footer-font);
  color: var(--color-white);
  cursor: pointer;
  border-radius: 50%;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.xchurch-welcome__partners-arrow:hover {
  background-color: var(--color-footer-font);
  color: var(--color-white);
}

.xchurch-welcome__partners-arrow i {
  font-size: 12px;
}

.xchurch-welcome__partners-viewport {
  overflow: hidden;
  flex: 1 1 auto;
  min-width: 0;
  max-height: 100px;
}

.xchurch-welcome__partners-track {
  display: flex;
  align-items: center;
  gap: 30px;
  max-height: 100px;
  width: max-content;
  transition: transform 0.35s ease-out;
  will-change: transform;
}

.xchurch-welcome__partner-logo {
  width: 90px;
  flex-shrink: 0;
  height: auto;
  object-fit: cover;
  object-position: center;
}

.xchurch-welcome__partners-dots {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin-bottom: 13px;
}

.xchurch-welcome__partners-dots button {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  border: none;
  background-color: #d0d0d0;
  padding: 0;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.xchurch-welcome__partners-dots button[aria-selected="true"] {
  background-color: var(--color-footer-font);
}

/* About page hero */
.about-hero {
  background-image: url('../images/about-hero-bg.webp');
  background-position: right 60%;
}

/* About page: Locations panel – aerial image + Canal Winchester / Online + Plan a Visit */
.xchurch-about-locations__container {
  padding: 0 !important;
  margin-bottom: 35px !important;
}

.xchurch-welcome__tabs--about {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.xchurch-about-locations {
  max-width: 100%;
  padding: 0 0 40px;
}

.xchurch-about-locations__image-wrap {
  width: 100%;
  overflow: hidden;
  margin-bottom: 40px;
  max-height: 178px;
  display: flex;
}

.xchurch-about-locations__image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: right 80%;
}

.xchurch-about-locations__grid {
  display: flex;
  justify-content: space-between;
  gap: 70px;
  align-items: start;
  max-width: 1007px;
  padding: 0 30px;
  margin: 0 auto;
}

.xchurch-about-locations__left {
  display: flex;
  flex-direction: column;
  gap: 41px;
}

.xchurch-about-locations__block {
  margin: 0;
}

.xchurch-about-locations__heading {
  font-family: var(--font-family-secondary);
  font-size: 24px;
  font-weight: 700;
  color: var(--color-footer-font);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin: 0 0 5px;
  line-height: 1;
}

.xchurch-about-locations__address,
.xchurch-about-locations__meta,
.xchurch-about-locations__times {
  font-family: var(--font-family-secondary);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-footer-font);
  margin: 0;
  text-decoration: none;
}

.xchurch-about-locations__times {
  margin-bottom: 0;
}

.xchurch-about-locations__link {
  color: var(--color-footer-font);
  text-decoration: underline;
}

.xchurch-about-locations__link:hover {
  color: var(--color-footer-font);
}

.xchurch-about-locations__link--bold {
  font-weight: 700;
}

.xchurch-about-locations__right {
  max-width: 596px;
}

.xchurch-about-locations__line {
  display: block;
  width: 38px;
  height: 4px;
  background-color: var(--color-footer-font);
  margin-bottom: 29px;
}

.xchurch-about-locations__text {
  font-family: var(--font-family-secondary);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-black);
  margin: 0 0 30px;
}

.xchurch-about-locations__text:last-of-type {
  margin-bottom: 30px;
}

.xchurch-about-locations__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  background-color: var(--color-footer-font);
  color: var(--color-white);
  font-family: var(--font-family-secondary);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 5px;
  border: 2px solid var(--color-footer-font);
  transition: background-color 0.2s ease, color 0.2s ease;
}

.xchurch-about-locations__cta:hover {
  background-color: transparent;
  color: var(--color-footer-font);
}

/* About page: Beliefs panel – The Essentials / The Non-Essentials (centered, grid of 8 cards) */
.xchurch-about-beliefs {
  max-width: 827px;
  margin: 0 auto;
  padding: 0;
  text-align: center;
}

.xchurch-about-beliefs__essentials {
  margin-bottom: 100px;
}

.xchurch-about-beliefs__title {
  font-family: var(--font-family-secondary);
  font-size: 36px;
  font-weight: 700;
  color: var(--color-footer-font);
  margin: 0 0 10px;
  line-height: 1;
}

.xchurch-about-beliefs__intro {
  font-family: var(--font-family-secondary);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-footer-font);
  margin: 0 auto 52px;
}

.xchurch-about-beliefs__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 34px;
  max-width: 704px;
  margin: 0 auto;
}

.xchurch-about-beliefs__card {
  background-color: var(--color-white);
  border: 1px solid var(--color-black);
  border-radius: 8px;
  padding: 20px 32px;
  text-align: left;
  transition: box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.xchurch-about-beliefs__card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.xchurch-about-beliefs__card-title {
  font-family: var(--font-family-secondary);
  font-size: 32px;
  font-weight: 700;
  color: var(--color-black);
  text-transform: uppercase;
  margin: 0 0 8px;
}

.xchurch-about-beliefs__card-text {
  font-family: var(--font-family-secondary);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-black);
  margin: 0 0 20px;
}

.xchurch-about-beliefs__card-verses {
  font-family: var(--font-family-secondary);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  color: #939393;
  margin: 0;
}

.xchurch-about-beliefs__non-essentials {
  margin-top: 0;
  max-width: 704px;
  margin: 0 auto;
}

.xchurch-about-beliefs__separator {
  display: block;
  width: 38px;
  height: 4px;
  background-color: var(--color-footer-font);
  margin: 0 auto 46px;
}

.xchurch-about-beliefs__non-essentials-content {
  max-width: 720px;
  margin: 0 auto;
  text-align: left;
}

.xchurch-about-beliefs__verses {
  font-family: var(--font-family-secondary);
  font-size: 15px;
  font-weight: 700;
  color: #939393;
  margin: 0 0 20px;
}

.xchurch-about-beliefs__text {
  font-family: var(--font-family-secondary);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-black);
  margin: 0 0 20px;
}

.xchurch-about-beliefs__text:last-of-type {
  margin-bottom: 0;
}

/* About page: Values panel – Who We Are, 7 values (centered, max-width) */
.xchurch-about-values {
  max-width: 910px;
  margin: 0 auto;
  padding: 0;
  /* padding: 0 0 39px; */
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.xchurch-about-values__title {
  font-family: var(--font-family-secondary);
  font-size: 36px;
  font-weight: 700;
  color: var(--color-footer-font);
  margin: 0 0 9px;
  line-height: 1;
}

.xchurch-about-values__intro {
  font-family: var(--font-family-secondary);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-footer-font);
  margin: 0 0 48px;
  max-width: 841px;
}

.xchurch-about-values__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.xchurch-about-values__item {
  margin: 0;
}

.xchurch-about-values__heading {
  font-family: var(--font-family-secondary);
  font-size: 20px;
  font-weight: 700;
  color: var(--color-black);
  margin: 0 0 7px;
  line-height: 1.3;
}

.xchurch-about-values__text {
  font-family: var(--font-family-secondary);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-footer-font);
  margin: 0;
}

.xchurch-about-values__text strong {
  font-weight: 700;
}

.xchurch-about-values__load-more {
  margin: 28px auto 0;
  padding: 0;
  border: none;
  outline: none;
  background-color: transparent;
  font-family: var(--font-family-secondary);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-footer-font);
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.xchurch-about-values__load-more:hover {}

/* About page: Family section – A place for you and your family (3 cards) */
.xchurch-about-family {
  background-color: var(--color-white);
  padding: 57px 30px 116px;
}

.xchurch-about-family__inner {
  max-width: 965px;
  margin: 0 auto;
}

.xchurch-about-family__title {
  font-family: var(--font-family-secondary);
  font-size: 40px;
  font-weight: 700;
  color: var(--color-black);
  text-align: center;
  margin: 0 0 36px;
  line-height: 1;
}

.xchurch-about-family__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 31px;
}

.xchurch-about-family__card {
  display: flex;
  flex-direction: column;
  background: var(--color-white);
  border-radius: 8px;
  overflow: hidden;
  max-width: 301px;
  transition: box-shadow 0.2s ease;
}

.xchurch-about-family__card:hover {}

.xchurch-about-family__card-image-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 301 / 236;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid #939393;
}

.xchurch-about-family__card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.xchurch-about-family__card-title {
  position: absolute;
  top: 0;
  left: 0;
  margin: 0;
  padding: 49px 38px;
  font-family: var(--font-family-secondary);
  font-size: 32px;
  font-weight: 700;
  color: var(--color-white);
  z-index: 1;
}

.xchurch-about-family__card-desc {
  font-family: var(--font-family-secondary);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-black);
  margin: 0;
  padding: 25px 0;
  flex: 1 1 auto;
}

.xchurch-about-family__cta {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin: 0;
  padding: 8px;
  background-color: var(--color-footer-font);
  color: var(--color-white);
  font-family: var(--font-family-secondary);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 5px;
  border: 2px solid var(--color-footer-font);
  transition: background-color 0.2s ease, color 0.2s ease;
  width: max-content;
}

.xchurch-about-family__cta:hover {
  background-color: transparent;
  color: var(--color-footer-font);
}

.xchurch-about-family__cta i {
  font-size: 12px;
}

/* About page: Our Mission – two-column image + text */
.xchurch-about-mission {
  background-color: var(--color-white);
  padding: 72px 30px 147px;
}

.xchurch-about-mission__inner {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 73px;
}

.xchurch-about-mission__content-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 35px;
  width: 100%;
}

.xchurch-about-mission__media {
  position: relative;
  flex: 0 0 auto;
  /* width: 303px; */
  max-width: 303px;
}

.xchurch-about-mission__image {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  z-index: 1;
  object-fit: cover;
  object-position: center;
  aspect-ratio: 303 / 404;
}

.xchurch-about-mission__overlay {
  position: absolute;
  right: 185px;
  top: 0;
  transform: translateY(-23%);
  /* transform: translateY(-50%) rotate(-90deg); */
  /* height: 80%; */
  width: auto;
  /* max-width: 200px; */
  object-fit: contain;
  object-position: center;
  pointer-events: none;
  z-index: 0;
  /* opacity: 0.35; */
}

.xchurch-about-mission__content {
  max-width: 401px;
}

.xchurch-about-mission__title {
  font-family: var(--font-family-secondary);
  font-size: 40px;
  font-weight: 700;
  color: var(--color-footer-font);
  margin: 0;
  line-height: 1;
  text-align: center;
}

.xchurch-about-mission__line {
  display: block;
  width: 38px;
  height: 4px;
  background-color: var(--color-footer-font);
  margin: 0 0 35px;
}

.xchurch-about-mission__text {
  font-family: var(--font-family-secondary);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-black);
  margin: 0 0 35px;
}

.xchurch-about-mission__text strong {
  font-weight: 700;
}

.xchurch-about-mission__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  background-color: var(--color-footer-font);
  color: var(--color-white);
  font-family: var(--font-family-secondary);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 5px;
  border: 2px solid var(--color-footer-font);
  transition: background-color 0.2s ease, color 0.2s ease;
}

.xchurch-about-mission__cta:hover {
  background-color: transparent;
  color: var(--color-footer-font);
}

.xchurch-about-mission__cta--mobile {
  display: none;
}

/* Contact section */
.contact-hero {
  background-image: url(../images/contact-hero-bg.webp);
}

.xchurch-contact-form {
  padding: 48px 30px 65px;
  background-color: var(--color-white);
  background-image: url(../images/contact-form-bg.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.xchurch-contact-form__container {
  max-width: 724px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.xchurch-contact-form__line {
  margin-bottom: 44px;
}

.xchurch-contact-form__title {
  margin: 0 0 50px;
  font-family: var(--font-family-secondary);
  font-size: 40px;
  font-weight: 700;
  color: var(--color-footer-font);
  line-height: 1;
  text-align: center;
}

/* ===== 404 PAGE ===== */
.site-main--404 {
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 20px 80px;
  background-color: var(--color-footer-font);
}

.xchurch-404 {
  width: 100%;
  display: flex;
  justify-content: center;
}

.xchurch-404__inner {
  max-width: 640px;
  width: 100%;
  text-align: left;
  color: var(--color-white);
}

.xchurch-404__eyebrow {
  font-family: var(--font-family-secondary);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.7;
  margin: 0 0 8px;
}

.xchurch-404__title {
  font-family: var(--font-family-secondary);
  font-size: 40px;
  font-weight: 700;
  margin: 0 0 16px;
}

.xchurch-404__text {
  font-family: var(--font-family-secondary);
  font-size: 15px;
  line-height: 1.6;
  margin: 0 0 28px;
  max-width: 520px;
}

.xchurch-404__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.xchurch-404__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 22px;
  border-radius: 5px;
  font-family: var(--font-family-secondary);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid var(--color-white);
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.xchurch-404__button--primary {
  background-color: var(--color-white);
  color: var(--color-black);
}

.xchurch-404__button--primary:hover {
  background-color: transparent;
  color: var(--color-white);
}

.xchurch-404__button--ghost {
  background-color: transparent;
  color: var(--color-white);
}

.xchurch-404__button--ghost:hover {
  background-color: var(--color-white);
  color: var(--color-black);
}

.xchurch-404__search {
  max-width: 420px;
}

.xchurch-404__search form {
  display: flex;
  gap: 8px;
}

.xchurch-404__search input[type="search"] {
  flex: 1;
  border-radius: 4px;
  border: none;
  padding: 10px 12px;
  font-family: var(--font-family-secondary);
  font-size: 14px;
}

.xchurch-404__search input[type="submit"],
.xchurch-404__search button[type="submit"] {
  padding: 10px 16px;
  border-radius: 4px;
  border: none;
  font-family: var(--font-family-secondary);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  background-color: var(--color-footer-font);
  color: var(--color-white);
  cursor: pointer;
}

@media (max-width: 768px) {
  .site-main--404 {
    padding-top: 140px;
    padding-bottom: 60px;
  }

  .xchurch-404__title {
    font-size: 32px;
  }

  .xchurch-404__actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .xchurch-404__search form {
    flex-direction: column;
  }
}

.contact-form {
  width: 100%;
}

.contact-form .frm-fluent-form .ff-t-container {
  gap: 24px;
}

.contact-form .fluentform .ff-el-group {
  margin-bottom: 15px;
}

/* Left icon (envelope) + right chevron; icon embedded left of label like design */
.contact-form select {
  height: 89px !important;
  border: 1px solid var(--color-footer-font) !important;
  border-radius: 9px !important;
  padding: 32px calc(15px * 2 + 10px) 32px calc(15px + 24px + 12px) !important;
  font-family: "Poppins", "sans-serif" !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  color: #929292 !important;
  background-color: var(--color-white) !important;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23929292'%3E%3Cpath d='M20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 4l-8 5-8-5V6l8 5 8-5v2z'/%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23333' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat, no-repeat !important;
  background-position: left 15px center, right 15px center !important;
  background-size: 24px, 10px !important;
}

.contact-form select:focus {
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%231D2221'%3E%3Cpath d='M20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 4l-8 5-8-5V6l8 5 8-5v2z'/%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23333' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E") !important;
}

.contact-form .ff-field_container {
  margin-top: 26px;
}

/* .contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form input[type="number"],
.contact-form input[type="date"],
.contact-form input[type="time"],
.contact-form input[type="url"],
.contact-form input[type="search"],
.contact-form input[type="password"] {
  height: 89px!important;
  border: 1px solid var(--color-footer-font)!important;
  border-radius: 9px!important;
  padding: 32px!important;
  font-family: var(--font-family-secondary)!important;
  font-size: 16px!important;
  font-weight: 700!important;
  color: #929292!important;
  background-color: var(--color-white)!important;
} */

.contact-form input {
  padding: 15px !important;
  border: 0.5px solid var(--color-footer-font) !important;
  border-radius: 3px !important;
  font-family: var(--font-family-secondary) !important;
  font-size: 13px !important;
  font-weight: 400 !important;
  color: var(--color-footer-font) !important;
  background-color: #F6F6F6 !important;
}

.contact-form input::placeholder {
  color: #C9C9C9 !important;
}

.contact-form label {
  font-family: var(--font-family-secondary) !important;
  font-size: 13px !important;
  font-weight: 400 !important;
  color: var(--color-black) !important;
}

.contact-form textarea {
  border: 0.5px solid var(--color-footer-font) !important;
  border-radius: 3px !important;
  font-family: var(--font-family-secondary) !important;
  font-size: 13px !important;
  font-weight: 400 !important;
  color: var(--color-footer-font) !important;
  background-color: #F6F6F6 !important;
  padding: 15px !important;
  resize: none !important;
  height: 145px !important;
  min-height: 145px !important;
  max-height: 145px !important;
}

.contact-form .fluentform .ff-el-group button {
  padding: 8px !important;
  border-radius: 5px !important;
  border: 2px solid var(--color-footer-font) !important;
  background-color: var(--color-footer-font) !important;
  color: var(--color-white) !important;
  font-family: var(--font-family-secondary) !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  cursor: pointer !important;
  margin-top: 42px !important;
  transition: background-color 0.2s ease, color 0.2s ease !important;
}

.contact-form .fluentform .ff-el-group button:hover {
  background-color: transparent !important;
  color: var(--color-footer-font) !important;
}

.contact-form .fluentform .ff-el-is-error .text-danger {
  font-family: var(--font-family-secondary) !important;
  font-size: 13px !important;
  font-weight: 400 !important;
}

/* === X kids section === */

.xkids-hero {
  background-image: url("../images/xkids-hero-bg.webp") !important;
  /* background-position: right 40%; */
}

.xkids-first-visit {
  background-color: var(--color-white);
  padding: 70px 30px 63px 30px;
}

.xkids-first-visit__inner {
  max-width: 872px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 70px;
  align-items: center;
}

.xkids-first-visit__content {
  max-width: 431px;
}

.xkids-first-visit__eyebrow {
  font-family: var(--font-family-secondary);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0;
  color: var(--color-black);
  margin: 0 0 17px 0;
}

.xkids-first-visit__title {
  font-family: var(--font-family-secondary);
  font-size: 40px;
  font-weight: 700;
  line-height: 100%;
  color: var(--color-footer-font);
  margin: 0 0 20px 0;
}

.xkids-first-visit__text {
  font-family: var(--font-family-secondary);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-footer-font);
  margin: 0 0 30px 0;
}

.xkids-first-visit__text:last-of-type {
  margin-bottom: 32px;
}

.xkids-first-visit__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  border-radius: 5px;
  background-color: var(--color-footer-font);
  color: var(--color-white);
  text-decoration: none;
  font-family: var(--font-family-secondary);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 2px solid var(--color-footer-font);
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease,
    box-shadow 0.2s ease;
}

.xkids-first-visit__cta:hover {
  background-color: transparent;
  color: var(--color-black);
  box-shadow: 0 1px 10px rgba(0, 0, 0, 0.32);
  transform: translateY(-2px);
}

.xkids-first-visit__media {
  position: relative;
  height: 100%;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.xkids-first-visit__media-bg {
  position: absolute;
  left: 25%;
  transform: translateY(-38.5%);
  object-fit: contain;
  object-position: center;
  pointer-events: none;
  z-index: 0;
}

.xkids-first-visit__media-main {
  position: absolute;
  bottom: 40px;
  width: 337px;
  height: 337px;
  border-radius: 7px;
  border: 0.5px solid var(--color-footer-font);
  object-fit: cover;
  object-position: right -20px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.38);
  transform: rotate(357.75deg);
  z-index: 2;
}

.xkids-first-visit__media-secondary {
  position: absolute;
  top: 40px;
  right: -50px;
  width: 248px;
  height: 162px;
  border-radius: 7px;
  border: 0.5px solid var(--color-footer-font);
  overflow: hidden;
  object-fit: cover;
  object-position: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
  transform: rotate(4.53deg);
  z-index: 1;
}

.xkids-environments {
  background-color: var(--color-footer-font);
  color: var(--color-white);
  padding: 60px 30px;
}

.xkids-environments__inner {
  max-width: 872px;
  margin: 0 auto;
}

.xkids-environments__header {
  text-align: center;
  margin: 0 0 73px;
}

.xkids-environments__title {
  font-family: var(--font-family-secondary);
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
  margin: 0 0 10px;
  color: var(--color-white);
}

.xkids-environments__underline {
  display: inline-block;
  width: 195px;
  height: 4px;
  background-color: var(--color-white);
}

.xkids-environments__list {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.xkids-environments__item {
  max-width: 804px;
}

.xkids-environments__item-title {
  font-family: var(--font-family-secondary);
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  margin: 0 0 4px;
  color: var(--color-white);
}

.xkids-environments__item-age {}

.xkids-environments__item-text {
  font-family: var(--font-family-secondary);
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
  font-weight: 400;
  color: var(--color-white);
}

/* === X kids priorities section === */

.xkids-priorities {
  background-color: var(--color-footer-font);
  padding: 25px 30px;
}

.xkids-priorities__inner {
  max-width: 824px;
  margin: 0 auto;
}

.xkids-priorities__header {
  text-align: center;
  margin: 0 0 50px;
}

.xkids-priorities__title {
  font-family: var(--font-family-secondary);
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-white);
  margin: 0;
}

.xkids-priorities__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px 48px;
}

.xkids-priorities__card {
  background-color: #181B1A;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

.xkids-priorities__card--jesus {
  grid-column: 1 / -1;
}

.xkids-priorities__image {
  width: 388px;
  height: 256px;
}

.xkids-priorities__image-bottom {
  width: 100%;
  height: 256px;
}

.xkids-priorities__image-bottom img {
  object-position: right 40%;
}

.xkids-priorities__image img,
.xkids-priorities__image-bottom img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.xkids-priorities__body {
  padding: 32px 26px 45px;
}

.xkids-priorities__card-title {
  font-family: var(--font-family-secondary);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--color-white);
  margin: 0 0 3px;
}

.xkids-priorities__card-text {
  font-family: var(--font-family-secondary);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-white);
  margin: 0;
  font-weight: 400;
}

/* === X kids parents section === */

.xkids-parents {
  background-color: var(--color-footer-font);
  padding: 25px 30px 71px;
}

.xkids-parents__inner {
  max-width: 872px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 37px;
  align-items: flex-start;
}

.xkids-parents__content {
  padding-top: 24px;
  max-width: 455px;
}

.xkids-parents__eyebrow {
  font-family: var(--font-family-secondary);
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
  color: var(--color-white);
  margin: 0 0 38px;
  text-align: center;
}

.xkids-parents__question {
  margin-bottom: 27px;
}

.xkids-parents__divider {
  display: block;
  width: 195px;
  height: 4px;
  background-color: var(--color-white);
  margin-bottom: 19px;
}

.xkids-parents__title {
  font-family: var(--font-family-secondary);
  font-size: 32px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--color-white);
  margin: 0;
}

.xkids-parents__text,
.xkids-parents__support,
.xkids-parents__note {
  font-family: var(--font-family-secondary);
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-white);
  margin: 32px 0 0;
}

.xkids-parents__support,
.xkids-parents__note {
  color: #939393;
}

.xkids-parents__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 26px;
  padding: 9px;
  border-radius: 5px;
  border: 1px solid var(--color-white);
  background-color: transparent;
  color: var(--color-white);
  font-family: var(--font-family-secondary);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.xkids-parents__cta:hover {
  background-color: var(--color-white);
  color: var(--color-black);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.5);
}

.xkids-parents__note strong {
  color: #939393;
}

.xkids-parents__media {
  display: flex;
  align-items: center;
  justify-content: center;
}

.xkids-parents__photo-ring {
  width: 317px;
  height: 317px;
  min-width: 317px;
  min-height: 317px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.55);
}

.xkids-parents__photo-ring img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* === Youth section === */

.youth-hero {
  background-image: url("../images/youth-hero-bg.webp") !important;
  background-position: right 65%;
}

.youth-first-visit__content {
  max-width: 435px;
}

.youth-first-visit__media-bg {
  position: absolute;
  left: 20%;
  transform: translateY(-33.5%);
  object-fit: contain;
  object-position: center;
  pointer-events: none;
  z-index: 0;
}

.youth-first-visit__media-main {
  position: absolute;
  bottom: 0;
  left: 130px;
  width: 288.58px;
  height: 288.58px;
  border-radius: 7px;
  border: 0.5px solid var(--color-footer-font);
  object-fit: cover;
  object-position: right -20px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.38);
  transform: rotate(354.27deg);
  z-index: 2;
}

.youth-first-visit__media-secondary {
  position: absolute;
  top: 40px;
  left: 0;
  width: 288.58px;
  height: 288.58px;
  border-radius: 7px;
  border: 0.5px solid var(--color-footer-font);
  overflow: hidden;
  object-fit: cover;
  object-position: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
  transform: rotate(5.74deg);
  z-index: 1;
}

.youth-culture {
  background-color: var(--color-footer-font);
  padding: 44px 30px 68px;
}

.youth-culture__inner {
  max-width: 824px;
  margin: 0 auto;
}

.youth-culture__header {
  text-align: center;
  margin: 0 0 42px;
}

.youth-culture__title {
  font-family: var(--font-family-secondary);
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
  color: var(--color-white);
  margin: 0 0 10px;
}

.youth-culture__underline {
  display: inline-block;
  width: 195px;
  height: 4px;
  background-color: var(--color-white);
}

.youth-culture__intro {
  max-width: 810px;
  margin: 0 0 40px;
  font-family: var(--font-family-secondary);
  font-size: 15px;
  line-height: 1.5;
  color: var(--color-white);
}

.youth-culture__groups {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px;
  margin-bottom: 69px;
}

.youth-culture__card {
  background-color: #181B1A;
  border-radius: 22px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.45);
}

.youth-culture__image {
  height: 256px;
}

.youth-culture__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  object-position: right 15%;
}

.youth-culture__image--right img {
  object-position: center;
}

.youth-culture__body {
  padding: 32px 26px 42px;
}

.youth-culture__card-title {
  font-family: var(--font-family-secondary);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--color-white);
  margin: 0 0 3px;
}

.youth-culture__card-text {
  font-family: var(--font-family-secondary);
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-white);
  margin: 0;
  max-width: 287px;
}

.youth-culture__actions {
  text-align: center;
}

.youth-culture__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px;
  border-radius: 5px;
  border: 1px solid var(--color-white);
  background-color: transparent;
  color: var(--color-white);
  font-family: var(--font-family-secondary);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.youth-culture__cta:hover {
  background-color: var(--color-white);
  color: var(--color-footer-font);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.5);
}

/* === Team section === */

.team-hero {
  background-image: url("../images/team-hero-bg.webp") !important;
  background-position: right 80%;
}

.team-hero::before {
  content: none;
}

.team-pastor-header {
  padding: 0;
  margin: 0 0 20px;
  font-family: var(--font-family-secondary);
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0;
  color: var(--color-footer-font);
}

.team-pastor__social {
  margin: 31px 0 0;
}

.team-pastor__image {
  height: stretch;
}

.team-members {
  background-color: var(--color-white);
  padding: 8px 40px 110px;
}

.team-members__inner {
  max-width: 972px;
  margin: 0 auto;
}

.team-members__header {
  text-align: center;
  margin: 0 0 64px;
}

.team-members__title {
  font-family: var(--font-family-secondary);
  font-size: 40px;
  font-weight: 700;
  line-height: 80%;
  letter-spacing: 0;
  color: var(--color-footer-font);
  margin: 0 0 9px;
}

.team-members__underline {
  display: inline-block;
  width: 195px;
  height: 4px;
  background-color: var(--color-footer-font);
}

.team-members__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 41px 27px;
}

.team-members__card {
  display: flex;
  flex-direction: column;
}

.team-members__image {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 12px;
  overflow: hidden;
  background-color: var(--color-gray);
  margin-bottom: 19px;
}

.team-members__image img,
.team-members__image-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.team-members__image-placeholder {
  background-color: #d0d0d0;
  min-height: 200px;
}

.team-members__body {
  flex: 1;
}

.team-members__name {
  font-family: var(--font-family-secondary);
  font-size: 24px;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0;
  color: var(--color-footer-font);
  margin: 0 0 8px;
}

.team-members__role {
  font-family: var(--font-family-secondary);
  font-weight: 400;
  font-size: 15px;
  line-height: 100%;
  letter-spacing: 0;
  color: var(--color-footer-font);
  margin: 0 0 16px;
}

.team-members__email {
  font-family: var(--font-family-secondary);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 100%;
  text-transform: uppercase;
  color: var(--color-footer-font);
  text-decoration: none;
  transition: color 0.2s ease;
}

.team-members__email:hover {
  color: var(--color-black);
}

.team-members__empty {
  text-align: center;
  font-family: var(--font-family-secondary);
  color: var(--color-footer-font);
  margin: 0;
}

/* === shop section === */
.shop-hero {
  background-image: url("../images/shop-hero-bg.webp") !important;
  background-position: right 30%;
}

.shop-product {
  background-color: var(--color-white);
  padding: 104px 40px;
}

.shop-product__inner {
  max-width: 878px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 50px 60px;
  align-items: center;
}

.shop-product__content {
  max-width: 308px;
}

.shop-product__title {
  font-family: var(--font-family-secondary);
  font-size: 40px;
  font-weight: 700;
  line-height: 1.1;
  color: var(--color-footer-font);
  margin: 0 0 10px;
  display: flex;
  flex-direction: column;
}

.shop-product__title-line {
  display: block;
}

.shop-product__underline {
  display: block;
  width: 195px;
  height: 4px;
  background-color: var(--color-footer-font);
  margin-bottom: 22px;
}

.shop-product__price {
  font-family: var(--font-family-secondary);
  font-size: 15px;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: 0;
  color: var(--color-footer-font);
  margin: 0 0 28px;
}

.shop-product__desc {
  font-family: var(--font-family-secondary);
  font-size: 15px;
  line-height: 1.5;
  color: var(--color-footer-font);
  margin: 0 0 36px;
}

.shop-product__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 8px;
  border-radius: 5px;
  border: 2px solid var(--color-footer-font);
  background-color: var(--color-footer-font);
  color: var(--color-white);
  font-family: var(--font-family-secondary);
  font-size: 16px;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.shop-product__cta:hover {
  background-color: transparent;
  color: var(--color-footer-font);
  transform: translateY(-1px);
}

.shop-product__media {
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.shop-product__image {
  position: absolute;
  overflow: hidden;
  border-radius: 10px;
}

.shop-product__image--primary {
  width: 401px;
  height: 353px;
  left: 0;
  z-index: 2;
  transform: translateY(-2%);
}

.shop-product__image--secondary {
  width: 304px;
  height: 268px;
  right: calc(-40%);
  transform: translateY(0%);
  border-radius: 10px;
  z-index: 2;
}


.shop-product__image img {
  /* width: 100%;
  height: auto;
  display: block;
  vertical-align: middle; */
  object-fit: cover;
  object-position: bottom;
}

.shop-product__image--primary>img {
  object-position: center;
}

/* === Shop gallery (banner + 3 images) === */
.shop-gallery {
  background-color: var(--color-white);
  padding: 19px 30px;
}

.shop-gallery__inner {
  max-width: 946px;
  margin: 0 auto;
}

.shop-gallery__banner {
  width: 100%;
  max-height: 353px;
  margin-bottom: 22px;
  border-radius: 10px;
  overflow: hidden;
}

.shop-gallery__banner img {
  width: 100%;
  display: block;
  object-fit: cover;
  object-position: right 75%;
}

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

.shop-gallery__item {
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 1 / 0.946;
  background-color: #eee;
}

.shop-gallery__item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 768px) {
  .shop-gallery__banner {
    max-height: 320px;
    margin-bottom: 20px;
  }

  .shop-gallery__row {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .shop-gallery__item {
    aspect-ratio: auto;
    max-height: 320px;
  }

  .shop-gallery__banner img {
    object-position: bottom;
  }
}

/* === Shop team (5 product cards: 3 + 2) === */
.shop-team {
  background-color: var(--color-white);
  padding: 53px 30px 88px;
}

.shop-team__inner {
  max-width: 972px;
  margin: 0 auto;
}

.shop-team__header {
  text-align: center;
  margin: 0 0 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.shop-team__header span {
  margin: 0;
}

.shop-team__title {
  font-family: var(--font-family-secondary);
  font-size: 40px;
  font-weight: 700;
  line-height: 80%;
  letter-spacing: 0;
  color: var(--color-footer-font);
  margin: 0 0 9px;
}

.shop-team__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 41px 27px;
}

.shop-team__card {
  display: flex;
  flex-direction: column;
}

.shop-team__image-wrap {
  display: block;
  width: 100%;
  aspect-ratio: 306 / 270;
  border-radius: 10px;
  overflow: hidden;
  background-color: var(--color-gray);
  margin-bottom: 19px;
}

.shop-team__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right 70%;
  display: block;
}

.shop-team__body {
  flex: 1;
}

.shop-team__card-title {
  font-family: var(--font-family-secondary);
  font-size: 24px;
  font-weight: 700;
  color: var(--color-footer-font);
  margin: 0 0 9px;
  line-height: 1;
  letter-spacing: 0;
}

.shop-team__card-title .shop-team__title-tag {
  font-family: var(--font-family-secondary);
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  color: var(--color-footer-font);
}

.shop-team__desc {
  font-family: var(--font-family-secondary);
  font-weight: 400;
  font-size: 15px;
  line-height: 1;
  letter-spacing: 0;
  color: var(--color-footer-font);
  margin: 0 0 21px;
  position: relative;
}

.shop-team__extra {
  font-family: var(--font-family-secondary);
  font-weight: 700;
  font-size: 10px;
  line-height: 1;
  letter-spacing: 0;
  color: var(--color-black);
  text-decoration: none;
  margin: 0;
  padding: 0;
  display: inline-block;
  position: absolute;
  transition: color 0.2s ease;
}

.shop-team__extra:hover {
  color: var(--color-black);
}

.shop-team__cta {
  font-family: var(--font-family-secondary);
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--color-footer-font);
  text-decoration: none;
  display: inline-block;
  margin: 0;
  transition: color 0.2s ease;
}

.shop-team__cta:hover {
  text-decoration: underline;
}

/* === Resources Section === */

.resources-hero {
  background-image: url(../images/resources-hero-bg.webp) !important;
  background-position: right 65%;
}

/* === Resources grid (DAY cards) === */
.resources-grid {
  background-color: var(--color-white);
  padding: 107px 30px 97px;
}

.resources-grid__inner {
  max-width: 972px;
  margin: 0 auto;
}

.resources-grid__list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 65px 27px;
}

.resources-grid__card {
  display: flex;
  flex-direction: column;
  background-color: var(--color-white);
  overflow: hidden;
  transition: box-shadow 0.2s ease;
}

.resources-grid__image-wrap {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 10px;
  overflow: hidden;
  background-color: var(--color-gray);
}

.resources-grid__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.resources-grid__body {
  flex: 1;
}

.resources-grid__date {
  font-family: var(--font-family-secondary);
  font-size: 24px;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0;
  color: var(--color-footer-font);
  margin: 19px 0 10px;
}

.resources-grid__excerpt {
  font-family: var(--font-family-secondary);
  font-size: 15px;
  line-height: 1.4;
  letter-spacing: 0;
  color: var(--color-footer-font);
  margin: 0 0 40px;
}

.resources-grid__cta {
  font-family: var(--font-family-secondary);
  font-size: 16px;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--color-footer-font);
  text-decoration: none;
  transition: color 0.2s ease;
}

.resources-grid__cta:hover {
  text-decoration: underline;
  color: var(--color-footer-font);
}

.xchurch-events__card-cta--disabled {
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
}

@media (max-width: 1280px) {
  .site-footer__contact {
    position: relative;
    margin-right: 0;
  }

  .site-footer__container--mega {
    padding: 70px 20px 0 20px;
  }
}

@media (max-width: 1024px) {
  .home-hero__right {
    padding: 0 40px;
  }

  .xchurch-latest__body {
    grid-template-columns: 1fr;
    max-width: 653px;
  }

  .xchurch-latest__side {
    display: none;
  }

  .xchurch-latest__title {
    font-size: 36px;
  }

  .xchurch-visit__map-image {
    max-width: 500px;
  }

  .xchurch-latest__inner {
    /* min-height: 155px; */
  }

  .xchurch-experience__side {
    display: none;
  }

  .xchurch-experience__cards {
    flex-direction: column;
    gap: 28px;
  }

  .xchurch-generosity {
    padding: 37px 0 49px;
  }

  .xchurch-generosity__container {
    flex-direction: column;
    gap: 49px;
  }

  .xchurch-generosity__content h2 {
    text-align: center;
    margin: 0 0 22px;
  }

  .xchurch-generosity__content p {
    text-align: center;
    margin: 0 0 10px;
  }

  .xchurch-generosity__content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .xchurch-generosity__image--1,
  .xchurch-generosity__image--2 {
    margin: 0;
  }

  .xchurch-pastor__container {
    flex-direction: column;
    align-items: center;
    gap: 63px;
  }

  .xchurch-pastor {
    padding: 66px 0;
  }

  .xchurch-pastor__image {
    width: 354px;
    height: 439px;
    order: 1;
  }

  .xchurch-follow {
    padding: 66px 0 120px;
    z-index: 9;
  }

  .xchurch-follow__container {
    gap: 75px;
    flex-direction: column;
    align-items: center;
  }

  .xchurch-follow__social-container {
    flex-direction: column;
    gap: 31px;
  }

  .xchurch-follow__social {
    margin: 0;
  }

  .xchurch-app {
    padding-bottom: 74px;
  }

  .xchurch-app__container {
    justify-content: center;
  }

  .xchurch-app__title {
    margin-bottom: 29px;
    text-align: center;
  }

  .xchurch-app__description {
    margin-bottom: 39px;
  }

  .xchurch-app__content {
    margin-top: 400px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .xchurch-app__image {
    margin-top: -160px;
    left: 35%;
    display: flex;
    justify-content: center;
    width: 800px;
  }

  .xchurch-app__image img {
    /* width: 1017px; */
  }

  .xchurch-youth {
    padding: 49px 0 69px;
    background-color: var(--color-background);
  }

  .xchurch-youth__container {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    max-width: 100%;
    width: 362px;
    background-color: transparent;
    padding: 0;
  }

  .xchurch-youth__image {
    width: 362px;
    height: 322px;
    margin-left: 0;
    order: 0;
  }

  .xchurch-youth__content {
    flex: none;
    width: 100%;
    order: 1;
    margin: 29px 0 0;
  }

  .xchurch-youth__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    margin-bottom: 0px;
  }

  .xchurch-youth__title::after {
    display: none;
  }

  .xchurch-youth__link {
    order: 3;
    margin-top: 20px;
    font-size: 15px;
  }

  .xchurch-youth__description {
    display: none;
  }

  .xchurch-youth__description-mobile {
    display: block;
  }

  .xchurch-youth__nav {
    flex-direction: column-reverse;
    align-items: flex-start;
    padding: 0;
    gap: 15px;
    order: 2;
    margin-top: 67px;
  }

  .xchurch-youth__nav-link {
    writing-mode: horizontal-tb;
  }

  .xchurch-youth__divider {
    display: block;
    order: 3;
  }

  .xchurch-visit-intro__image {
    display: none;
  }

  .xchurch-visit-intro__body {
    flex-direction: column;
    align-items: center;
    gap: 50px;
  }

  .xchurch-visit-intro__body {
    padding-bottom: 49px;
  }

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

  .xchurch-events__inner {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }

  .xchurch-welcome__panel--active {
    padding: 0 20px;
    margin-bottom: 100px;
  }

  .about-hero__belong-container {
    /* margin-top: -45px; */
  }

  .xkids-first-visit__media-secondary {
    top: 80px;
  }

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

  .shop-product__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .shop-product__media {
    order: -1;
  }

  .shop-product__image--primary {
    left: 50%;
    transform: translate(-55%, -2%);
  }

  .shop-product__image--secondary {
    right: 11%;
  }

  .shop-product__content {
    place-self: center;
    max-width: 440px;
  }

  .xchurch-upcoming-events__inner {
    flex-direction: column;
    gap: 40px;
  }

  .xchurch-upcoming-events__desc {
    max-width: 520px;
  }

  .xchurch-upcoming-events__right {
    max-width: 700px;
    width: 100%;
  }
}

@media (max-width: 830px) {
  .xchurch-welcome__tabs_get-involved {
    width: 100%;
    max-width: 100%;
    border-radius: 0;
    overflow-x: auto;
    overflow-y: hidden;
    flex-wrap: nowrap;
    justify-content: center;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    margin: 0 0 25px;
  }

  .xchurch-welcome__tab_get-involved {
    flex: 0 0 auto;
    white-space: nowrap;
  }

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

@media (max-width: 768px) {
  .xchurch-latest__inner {
    /* min-height: 188px; */
  }

  .login-modal__panel {
    padding: 92px 24px 25px;
  }

  .login-modal__close {
    top: 60px;
    left: 20px;
  }

  .login-modal__title {
    font-size: 32px;
    margin: 0 0 16px;
  }

  .login-modal__subtitle {
    margin: 0 0 52px;
  }

  .login-modal__button {
    margin-top: 19px;
  }

  .login-modal__footnote {
    margin: 57px 0 0;
    text-align: center;
  }

  .login-modal__button--secondary {
    margin-top: 16px;
  }

  .site-footer {
    color: var(--color-footer-font);
    background-color: var(--color-white);
  }

  .site-footer__container--mega {
    flex-direction: column;
    height: auto;
    padding-top: 88px;
    padding-bottom: 37px;
    align-items: center;
  }

  .site-footer__columns {
    flex-direction: column;
    align-items: flex-start;
    gap: 118px;
    max-width: fit-content;
  }

  .site-footer__eyebrow {
    font-size: 20px;
  }

  .site-footer__list {
    gap: 10px;
  }

  .site-footer__list a,
  .site-footer__text {
    font-size: 15px;
    color: var(--color-footer-font);
  }

  .site-footer__column-content {
    gap: 21px;
  }

  .site-footer__column-left-border {
    margin-top: 18px;
    background-color: var(--color-footer-font);
  }

  .site-footer__column {
    gap: 14px;
  }

  .site-footer__logo {
    display: none;
  }

  .site-footer__logo-mobile {
    display: block;
    width: 51px;
  }

  .site-footer__contact-details {
    padding-top: 2px;
    gap: 10.5px;
  }

  .site-footer__address {
    line-height: 2.2;
    width: 110px;
  }

  .site-footer__contact {
    gap: 27.5px;
  }

  .site-footer__divider {
    background-color: var(--color-footer-font);
  }

  .site-footer__email,
  .site-footer__phone,
  .site-footer__address {
    color: var(--color-footer-font);
    padding-left: 10px;
  }

  .home-hero {
    background-position: bottom;
  }

  .home-hero__right {
    display: none;
  }

  .site-header {
    padding: 24px 0;
  }

  .home-hero__content {
    padding: 0 0 46px 0;
  }

  .xchurch-visit__content h3 {
    font-size: 36px;
  }

  .xchurch-visit__content {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .xchurch-visit__intro,
  .xchurch-visit__details,
  .xchurch-visit__stream,
  .xchurch-visit__map {
    max-width: 100%;
  }

  .xchurch-visit__map {
    order: 3;
    width: 100%;
    margin-top: 0;
  }

  .xchurch-visit__stream {
    order: 4;
    margin-top: 30px;
  }

  .xchurch-visit__map-image {
    margin-top: 0;
    max-width: 100%;
  }

  .xchurch-visit__cta--plan,
  .xchurch-visit__directions {
    margin-bottom: 44px;
  }

  .xchurch-visit {
    padding: 67px 0 33px;
    /* margin-top: -40px; */
  }

  .xchurch-overview {
    padding: 34px 0 88px;
  }

  .xchurch-overview__track {
    gap: 21px;
  }

  .xchurch-experience__title {
    font-size: 36px;
    margin-bottom: 14px;
  }

  .xchurch-experience__text {
    margin-bottom: 25px;
  }

  .xchurch-experience__subtitle {
    margin-bottom: 34px;
    font-size: 32px;
  }

  .xchurch-experience__card-image-play-button {
    width: 45px;
    height: 45px;
  }

  .xchurch-experience__card h3 {
    margin-top: 28px !important;
  }

  .xchurch-experience__card p {
    margin-top: 17px !important;
  }

  .xchurch-generosity__images {
    grid-template-columns: 1fr;
    gap: 23px;
  }

  .xchurch-reaching__text h2 {
    font-size: 35px;
  }

  .xchurch-values {
    padding: 41px 0 10px;
  }

  .xchurch-give-faqs {
    padding: 36px 0 75px;
  }

  .xchurch-give-options__card-container {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .xchurch-give-options__card {
    height: 302px;
    justify-content: center;
  }

  .xchurch-give-options__card-button {
    margin-top: 16px;
  }

  .xchurch-give-options__cards {
    gap: 36px;
  }

  .xchurch-give-faqs__title {
    font-size: 36px;
    margin-bottom: 29px;
  }

  .xchurch-give-faqs__title-underline {
    margin-bottom: 41px;
  }

  .xchurch-give-faqs__intro {
    margin-bottom: 51px;
    text-align: left;
  }

  .xchurch-give-faqs__question {
    font-size: 20px;
  }

  .xchurch-give-faqs__question {
    padding: 17px 0;
  }

  .xchurch-give-faqs__item--expanded .xchurch-give-faqs__answer {
    padding: 3px 0 17px 0;
  }

  .xchurch-give-faqs__inner {
    align-items: flex-start;
  }

  .xchurch-give-impact__container {
    grid-template-columns: 1fr;
    gap: 77px;
  }

  .xchurch-give-impact {
    padding: 43px 0 100px;
  }

  .xchurch-give-impact__card {
    max-width: 314px;
  }

  .xchurch-give-impact__image {
    height: 274px;
  }

  .xchurch-visit-intro__title {
    font-size: 36px;
    text-align: left;
    margin: 0 0 34px;
  }

  .xchurch-visit-intro__dash {
    margin: 0 0 22px;
  }

  .xchurch-visit-locations {
    padding: 92px 0;
  }

  .xchurch-visit-locations__grid {
    flex-direction: column;
    gap: 71px;
  }

  .xchurch-visit-locations__title {
    margin: 0 0 28px;
  }

  .xchurch-app__image {
    left: 25%;
  }

  .xchurch-visit-invite__video-wrapper {
    margin-bottom: 30px;
  }

  .xchurch-visit-invite__cta {
    display: inline-flex;
  }

  .xchurch-visit-faqs::before {
    clip-path: polygon(100% 0, 100% 0%, 100% 100%, 0 100%, 0 5%);
  }

  .xchurch-visit-faqs {
    padding: 65px 0 68px;
  }

  .xchurch-visit-faqs__cta {
    display: none;
  }

  .xchurch-visit-faqs__title {
    margin: 0 0 17px;
  }

  .xchurch-visit-faqs__subtitle {
    margin: 0 0 17.5px;
  }

  .xchurch-visit-faqs__question {
    font-size: 20px;
    padding: 25px 0;
  }

  .xchurch-visit-faqs__item--expanded .xchurch-visit-faqs__answer {
    padding: 0 0 17.5px 0;
  }

  .xchurch-visit-faqs__answer p {
    font-size: 13px;
  }

  .xchurch-care-faqs {
    /* padding: 0 0 77px; */
  }

  .xchurch-care-faqs__inner {
    padding: 0 20px;
    max-width: 425px;
  }

  .xchurch-care-faqs__question {
    font-size: 24px;
  }

  .xchurch-next-gen {
    padding: 51px 0 220px;
  }

  .xchurch-next-gen__title {
    margin: 0 0 13px;
  }

  .xchurch-next-gen__subtitle {
    margin: 0 0 34px;
  }

  .xchurch-next-gen__question {
    padding: 11px 0;
    font-size: 16px;
  }

  .xchurch-next-gen__answer p {
    font-size: 13px;
  }

  .xchurch-next-gen__deco--left {
    bottom: -183px;
    /* left: -122px; */
  }

  .xchurch-next-gen__deco--right {
    top: -164px;
    right: -164px;
  }

  .xchurch-watch-overview__meta {
    margin-bottom: 52px;
  }

  .xchurch-watch-overview__thumbnail-wrap {
    margin-bottom: 25px;
  }

  .xchurch-watch-overview__content {
    flex-direction: column;
    align-items: flex-start;
    gap: 25px;
  }

  .xchurch-message-more {
    padding: 30px 0 60px;
  }

  .xchurch-message-more__header {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 41px;
  }

  .xchurch-message-more__header-right {
    align-self: flex-start;
  }

  .xchurch-message-more__grid .xchurch-message-more__card {
    /* max-width: 80vw; */
    scroll-snap-align: start;
  }

  .xchurch-sermons {
    padding: 0 0 73px;
  }

  .xchurch-sermons__inner {
    padding: 0 22px;
  }

  .xchurch-sermons__title {
    font-size: 36px;
  }

  .xchurch-sermons__search {
    margin-bottom: 28px;
  }

  .xchurch-sermons__mobile-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 33px;
  }

  .xchurch-sermons__more-title {
    font-family: var(--font-family-secondary);
    font-size: 15px;
    font-weight: 700;
    margin: 0;
    color: var(--color-footer-font);
  }

  .xchurch-sermons__arrows {
    display: flex;
    gap: 10px;
  }

  .xchurch-sermons__arrow {
    width: 27px;
    height: 27px;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease;
  }

  .xchurch-sermons__arrow--prev,
  .xchurch-sermons__arrow--next {
    background-color: var(--color-footer-font);
    color: var(--color-white);
  }

  .xchurch-sermons__arrow:hover:not(:disabled) {
    opacity: 0.9;
  }

  .xchurch-sermons__arrow:disabled {
    background-color: #939393 !important;
    color: var(--color-white);
    opacity: 0.8;
    cursor: not-allowed;
    pointer-events: none;
  }

  .xchurch-sermons__grid {
    grid-template-columns: none;
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
  }

  .xchurch-sermons__grid .xchurch-sermons__card {
    flex: 0 0 301px;
    max-width: 100%;
    scroll-snap-align: start;
  }

  .xchurch-sermons__load-wrap {
    display: none;
  }

  .xchurch-sermons__desc {
    margin-bottom: 28px;
  }

  .home-hero__content h2 {
    display: none;
  }

  .home-hero__content h3 {
    display: flex;
    font-size: 15px;
    font-weight: 400;
    font-family: var(--font-family-primary);
    color: var(--color-white);
    margin: 0;
    line-height: 1.5;
    letter-spacing: 0;
    text-align: center;
  }

  .care-hero {
    align-items: center;
  }

  .care-hero__container {
    padding: 0 20px;
  }

  .care-hero__container main {
    padding: 0;
  }

  .xchurch-care-resources__body {
    flex-direction: column;
    gap: 0;
  }

  .xchurch-care-resources__collage {
    order: 0;
  }

  .xchurch-care-resources__content {
    order: 1;
    margin-top: 84px;
  }

  .xchurch-message-hero {
    padding: 118px 0 64px;
  }

  .xchurch-message-hero__cta--mobile {
    display: inline-flex;
    margin: 30px 0 20px;
  }

  .xchurch-message-hero__cta--desktop {
    display: none;
  }

  .xchurch-message-more__inner {
    padding: 0 0 0 30px;
  }

  .xchurch-events-hero__title {
    margin-top: 20px;
    font-size: 36px;
  }

  .xchurch-events-hero__banner {
    /* background-position: center; */
  }

  .xchurch-events {
    padding: 31px 0 80px;
  }

  .xchurch-events__grid {
    margin-bottom: 80px;
    grid-template-columns: 1fr;
  }

  /* Mobile: show only first 3 items; rest revealed on first "Load More" click */
  .xchurch-events__card-wrap--hide-on-mobile {
    display: none;
  }

  .xchurch-welcome__tabs {
    /* margin: 0 auto 62px; */
  }

  .xchurch-welcome__content {
    flex-direction: column;
  }

  .xchurch-welcome__media {
    order: 1;
  }

  .xchurch-welcome__text {
    order: 0;
  }

  .xchurch-welcome__title {
    margin: 0 0 10px;
  }

  .xchurch-welcome__line {
    display: none;
  }

  .xchurch-welcome__text p {
    text-align: center;
    margin: 0;
  }

  .xchurch-welcome__text p:last-of-type {
    margin-bottom: 0;
  }

  .xchurch-welcome__cta {
    display: none;
  }

  .xchurch-welcome__cta--mobile {
    display: inline-flex;
    order: 2;
    margin-top: 7px;
  }

  .xchurch-welcome__content--circles {
    align-items: center;
  }

  .xchurch-welcome__media-stack {
    padding-top: 0;
  }

  .xchurch-welcome__content--circles .xchurch-welcome__text p:last-of-type {
    margin-bottom: 0;
  }

  .xchurch-welcome__cta-group--mobile {
    display: flex;
    order: 3;
    gap: 22px;
  }

  .xchurch-welcome__serve-content {
    flex-direction: column;
    align-items: center;
    margin-top: 30px;
  }

  .xchurch-welcome__content--serve .xchurch-welcome__text {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .xchurch-welcome__serve-item {
    text-align: center;
  }

  .xchurch-welcome__media-overlay {
    display: none;
  }

  .xchurch-welcome__media--serve {
    transform: translateY(0);
  }

  .xchurch-about-family {
    padding: 112px 20px 103px;
  }

  .xchurch-about-family__title {
    margin: 0 0 62px;
    text-align: center;
  }

  .xchurch-about-family__cards {
    grid-template-columns: 1fr;
    gap: 69px;
  }

  .xchurch-about-family__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .xchurch-about-mission__content-wrap {
    flex-direction: column;
  }

  .xchurch-about-mission__media {
    order: 1;
  }

  .xchurch-about-mission__content {
    order: 0;
    max-width: 303px;
  }

  .xchurch-about-mission__text {
    margin: 0;
  }

  .xchurch-about-mission__overlay {
    display: none;
  }

  .xchurch-about-mission__cta {
    display: none;
  }

  .xchurch-about-mission__cta--mobile {
    display: inline-flex;
    order: 2;
    margin-top: 40px;
  }

  .xchurch-about-mission__inner {
    gap: 35px;
  }

  .xchurch-about-mission {
    padding-bottom: 0;
  }

  .xchurch-about-locations__grid {
    flex-direction: column;
    max-width: 363px;
  }

  .xchurch-about-locations__text {
    margin: 0 0 44px;
  }

  .xchurch-about-locations__text:last-of-type {
    margin: 0 0 40px;
  }

  .xchurch-about-locations__container {
    margin-bottom: 0px !important;
  }

  .xchurch-about-locations {
    padding: 0;
  }

  .xchurch-about-beliefs__grid {
    grid-template-columns: 1fr;
    max-width: 335px;
  }

  .xchurch-contact-overview__image--center {
    width: 247px;
    aspect-ratio: 247/247;
  }

  .xchurch-contact-overview__content {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  .xchurch-contact-overview__right {
    order: 0;
  }

  .xchurch-contact-overview__left {
    order: 1;
    margin-top: 55px;
  }

  .xchurch-contact-overview__image--left {
    width: 122px;
    height: 169.85px;
    aspect-ratio: 122 / 169.85;
    bottom: -41px;
    left: -62px;
  }

  .xchurch-contact-overview__image--right {
    width: 190.56px;
    height: 117.95px;
    aspect-ratio: 190.56 / 117.9;
    top: -20px;
    right: -55px;
  }

  .xchurch-contact-overview__images {
    max-width: 247px;
    margin: 0 auto;
  }

  .xchurch-contact-overview__overlay {
    left: 11%;
    transform: translateY(-57%);
  }

  .xchurch-contact-overview__line {
    display: none;
  }

  .xchurch-contact-overview__cta {
    margin: 78px 0 33px;
  }

  .xchurch-contact-overview {
    padding: 70px 30px;
  }

  .xchurch-contact-overview__help {
    text-align: left;
  }

  .xchurch-about-values__container {
    margin-bottom: 0;
  }

  .xkids-first-visit {
    padding: 40px 20px 70px 20px;
  }

  .xkids-first-visit__inner {
    display: flex;
    flex-direction: column;
  }

  .xkids-first-visit__content {
    order: 2;
  }

  .xkids-first-visit__media {
    order: 1;
  }

  .xkids-first-visit__media-main {
    bottom: 0;
  }

  .xkids-first-visit__media-secondary {
    left: 0;
    top: -25px;
  }

  .xkids-environments__item-title {
    text-align: center;
  }

  .xkids-priorities__grid {
    grid-template-columns: 1fr;
  }

  .xkids-priorities__image {
    width: 100%;
  }

  .xkids-parents__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .xkids-parents__media {
    order: -1;
  }

  .xkids-parents {
    padding: 25px 30px 120px;
  }

  .youth-first-visit__content {
    order: 2;
  }

  .youth-first-visit__media {
    width: calc(60% - 20px);
  }

  .youth-culture__groups {
    grid-template-columns: 1fr;
  }

  .youth-culture__inner {
    max-width: 435px;
  }

  .youth-culture__card-text {
    max-width: 100%;
  }

  .team-members__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .shop-product__inner {
    gap: 250px;
  }

  .shop-product__image--primary {
    left: auto;
    transform: none;
  }

  .shop-product__image--secondary {
    right: auto;
    transform: translateY(90%);
  }

  .shop-product {
    padding: 50px;
  }

  .shop-team__grid {
    grid-template-columns: 1fr;
    gap: 27px;
  }

  .resources-grid {
    padding: 50px 30px 70px;
  }

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

  .xchurch-upcoming-events {
    padding: 80px 0;
  }

  .xchurch-upcoming-events__inner {
    padding: 0 24px;
  }

  .xchurch-upcoming-events__title {
    font-size: 40px;
  }

  .xchurch-upcoming-events__item {
    grid-template-columns: 64px 1fr;
  }

  .xchurch-visit__stream-live {
    margin-top: 30px !important;
  }

  .mobile-only {
    display: flex!important;
  }
}

@media (max-width: 560px) {
  .xchurch-welcome__tabs_get-involved {
    justify-content: flex-start;
  }

  .xchurch-latest__body {
    height: 300px;
  }

  .youth-first-visit__media {
    width: calc(85% - 20px);
  }
}

@media (max-width: 480px) {
  .home-hero__buttons {
    flex-direction: column;
    gap: 30px;
  }

  .home-hero__content h1 {
    font-size: 36px;
  }

  .xchurch-latest__media-play-button {
    width: 59px;
    height: 59px;
  }

  .xchurch-experience__card-image {
    width: 100%;
    height: 189px;
  }

  .xchurch-experience__container {
    padding: 0 20px;
  }

  .xchurch-pastor__container {
    padding: 0 20px;
  }

  .xchurch-give-options__cards {
    padding: 0px 20px;
  }

  .xchurch-app__content {
    margin-top: 330px;
  }

  .xchurch-app__image {
    left: 10%;
    width: 700px;
  }

  .xchurch-visit-faqs::before {
    clip-path: polygon(100% 0, 100% 0%, 100% 100%, 0 100%, 0 3%);
  }

  .xchurch-sermons__mobile-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 17px;
  }

  .xchurch-care-faqs__content {
    padding: 32px 0 0;
  }

  .xchurch-care-faqs__item--expanded .xchurch-care-faqs__answer {
    border: none;
    border-radius: 0;
  }

  .xchurch-message-hero__inner {
    padding: 0 20px;
  }

  .xchurch-message-hero__title {
    font-size: 32px;
  }

  .xchurch-message-more__inner {
    padding: 0 0 0 20px;
  }

  .xchurch-events-overview .xchurch-latest__inner {
    padding: 0 20px;
  }

  .xchurch-events-hero__info {
    flex-direction: column;
    align-items: flex-start;
  }

  .xchurch-mission__inner {
    padding: 0 20px;
  }

  .xchurch-mission__title {
    font-size: 28px;
  }

  .xchurch-mission__heading {
    font-size: 28px;
  }

  .xchurch-contact-overview {
    padding: 70px 20px;
  }

  .xchurch-contact-form {
    padding: 48px 20px 65px;
  }

  .xchurch-latest__body {
    height: 250px;
  }

  .xkids-environments {
    padding: 60px 20px;
  }

  .xkids-priorities {
    padding: 25px 20px;
  }

  .xkids-parents {
    padding: 25px 20px 120px;
  }

  .xkids-parents__question {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .xkids-parents__title {
    font-size: 28px;
    line-height: 1.2;
    text-align: center;
  }

  .youth-first-visit__media-main {
    width: 240px;
    height: 240px;
    left: 110px;
    bottom: 60px;
  }

  .youth-first-visit__media-secondary {
    width: 240px;
    height: 240px;
  }

  .youth-first-visit__media-bg {
    transform: translateY(-50%);
  }

  .youth-first-visit__inner {
    gap: 0;
  }

  .shop-product__image--primary {
    width: 320px;
    height: 283px;
  }

  .shop-product__image--secondary {
    width: 234px;
    height: 198px;
  }

  .shop-product__inner {
    gap: 130px;
  }

  .shop-product__image img {
    width: 100%;
  }

  .resources-grid__list {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 400px) {
  .xchurch-pastor__image {
    width: 100%;
    height: auto;
  }

  .xchurch-reaching__text h2 {
    font-size: 30px;
  }

  .xchurch-youth {
    padding-left: 20px;
    padding-right: 20px;
  }

  .xchurch-youth__image {
    width: 100%;
    height: auto;
  }

  .xchurch-give-options__cards {
    padding: 0px 10px;
  }

  .xchurch-give-impact__title-underline {
    max-width: 80%;
  }

  .xchurch-watch-overview .xchurch-latest__inner {
    padding: 0 20px 37px;
  }

  .xchurch-care-resources__img--center {
    width: 264px;
    height: 277px;
  }

  .xchurch-care-resources__img--left {
    max-width: 126px;
    height: 78px;
  }

  .xchurch-care-resources__img--right {
    max-width: 126px;
    height: 78px;
  }

  .xkids-first-visit__media-main {
    width: 290px;
    height: 290px;
  }

  .xkids-first-visit__media-secondary {
    width: 220px;
    height: 142px;
    top: 15px;
  }

  .xkids-parents__photo-ring {
    width: 260px;
    height: 260px;
    min-width: 260px;
    min-height: 260px;
  }
}

/* Contact reason cards – 2x2 grid, icon + label per card */
.contact-form__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px 24px;
  margin-bottom: 24px;
}

.contact-form__card {
  display: flex;
  align-items: center;
  gap: 13px;
  width: 100%;
  padding: 32px;
  background: var(--color-white);
  border: 1px solid #929292;
  border-radius: 9px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  font-family: var(--font-family-secondary);
  font-size: 16px;
  font-weight: 400;
  color: #929292;
  text-align: left;
  cursor: pointer;
  transition: all .5s ease;
}

.contact-form__card:hover {
  border-color: var(--color-footer-font);
  box-shadow: 0 1px 10px rgba(0, 0, 0, 0.342);
}

.contact-form__card-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  color: #929292;
  transition: color 0.2s ease;
}

.contact-form__card-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.contact-form__card--active,
.contact-form__card--active .contact-form__card-icon {
  color: var(--color-footer-font);
  font-weight: 700;
}

.contact-form__card--active {
  border-color: var(--color-footer-font);
  text-decoration: none;
}

.contact-form__card:focus-visible {
  outline: 2px solid var(--color-footer-font);
  outline-offset: 2px;
}

.contact-form__card-label {
  flex: 1;
}

@media (max-width: 600px) {
  .contact-form__cards {
    grid-template-columns: 1fr;
  }
}

.ff-message-success {
  text-align: center;
  font-family: var(--font-family-secondary);
  font-size: 16px;
  font-weight: 400;
  color: var(--color-footer-font);
  border: 1px solid #929292 !important;
  border-radius: 9px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08) !important;
}