/* ==================================================
   HOME
   ================================================== */




/* ==================================================
   HERO
   ================================================== */


.bc-hero {
  position: relative;
  isolation: isolate;
  display: grid;
  align-items: center;
  min-height: max(
    640px,
    calc(82svh - var(--header-height))
  );
  overflow: hidden;
  background: #08122e;
}




/* ---------- Hero images ---------- */


.bc-hero-photo {
  position: absolute;
  z-index: 0;
  inset: 0;
  display: block;
  overflow: hidden;
  opacity: 0;
  transform: scale(1.035);
  transition:
    opacity 2.2s ease,
    transform 30s linear;
}




.bc-hero-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}




.bc-hero-photo.bc-active {
  opacity: 1;
  transform: scale(1);
}




/* ---------- Hero readability layer ---------- */


.bc-hero-overlay {
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(
      180deg,
      rgba(5, 12, 28, .05) 0%,
      rgba(5, 12, 28, .02) 48%,
      rgba(5, 12, 28, .18) 100%
    ),
    linear-gradient(
      90deg,
      rgba(5, 12, 28, .02) 0%,
      rgba(5, 12, 28, .04) 30%,
      rgba(5, 12, 28, .13) 45%,
      rgba(5, 12, 28, .42) 62%,
      rgba(5, 12, 28, .72) 80%,
      rgba(5, 12, 28, .88) 100%
    );
}




/* ---------- Hero copy ---------- */


.bc-hero-copy {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-block: 84px;
  color: #fff;
  animation:
    bc-hero-arrive
    .9s
    var(--ease)
    .28s
    both;
}




.bc-hero-copy-inner {
  width: min(46vw, 560px);
  margin-left: auto;
  text-align: left;
}




/*
 * 宽屏时继续向右推出 shell。
 * 不是居中，也不只是 margin-left:auto。
 */
@media (min-width: 1201px) {
  .bc-hero-copy-inner {
    transform: translateX(
      clamp(5px, 1.0vw, 15px)
    );
  }
}




.bc-hero-eyebrow {
  margin: 0 0 16px;
  color: rgba(255, 255, 255, .82);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}




.bc-hero-copy h1 {
  max-width: 630px;
  margin: 0 0 16px;
  color: #fff;
  font-size: 30px;
  letter-spacing: -.035em;
  text-shadow:
    0 2px 8px rgba(0, 0, 0, .34),
    0 10px 30px rgba(0, 0, 0, .30);
}




.bc-hero-lead {
  max-width: 570px;
  margin: 0 0 30px;
  font-size: clamp(19px, 2.5vw, 25px);
  text-shadow:
    0 2px 8px rgba(0, 0, 0, .34),
    0 8px 26px rgba(0, 0, 0, .30);
}




.bc-hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 12px;
}




.bc-light-button {
  color: var(--green-dark);
  background: #fff;
}




.bc-light-button:hover {
  background: #f1f3f8;
}




.bc-outline-button {
  color: #fff;
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .60);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}




.bc-outline-button:hover {
  color: #fff;
  background: rgba(255, 255, 255, .17);
  border-color: #fff;
}




.bc-hero-service {
  margin: 26px 0 0;
  color: rgba(255, 255, 255, .88);
  font-size: 13px;
  font-weight: 650;
  text-shadow: 0 2px 12px rgba(0, 0, 0, .32);
}




@keyframes bc-hero-arrive {
  from {
    opacity: 0;
    transform: translateY(18px);
  }


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




/* ==================================================
   SHARED HOME SURFACE
   ================================================== */


.bc-home-surface {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(
      circle at -8% 12%,
      rgba(132, 148, 255, .28),
      transparent 33%
    ),
    radial-gradient(
      circle at 108% 49%,
      rgba(95, 157, 255, .24),
      transparent 36%
    ),
    radial-gradient(
      circle at 14% 94%,
      rgba(190, 139, 239, .20),
      transparent 34%
    ),
    linear-gradient(
      180deg,
      #f3f6ff 0%,
      #faf9ff 48%,
      #f7faff 100%
    );
}




.bc-home-surface::before,
.bc-home-surface::after {
  position: absolute;
  z-index: -1;
  width: min(62vw, 820px);
  aspect-ratio: 1;
  content: "";
  border-radius: 50%;
  pointer-events: none;
}




.bc-home-surface::before {
  top: 28%;
  right: -25%;
  background:
    radial-gradient(
      circle,
      rgba(95, 126, 244, .17),
      transparent 70%
    );
}




.bc-home-surface::after {
  bottom: -14%;
  left: -16%;
  background:
    radial-gradient(
      circle,
      rgba(173, 107, 225, .15),
      transparent 70%
    );
}




.bc-welcome,
.hm-videos,
.hm-groups,
.hm-facebook {
  position: relative;
  z-index: 1;
  background: transparent;
}




.bc-welcome {
  padding-block: 92px 68px;
}




.hm-videos {
  padding-block: 68px 58px;
}




.hm-groups {
  padding-block: 58px;
}




.hm-facebook {
  padding-block: 58px 104px;
}




.bc-home-surface .reveal,
.bc-sunday-band .reveal {
  transition-delay: .24s;
  animation-delay: .24s;
}




/* ==================================================
   WELCOME
   ================================================== */


.bc-welcome-card {
  position: relative;
  isolation: isolate;
  min-height: clamp(520px, 49vw, 620px);
  overflow: hidden;
  background: #dce3f3;
  border: 1px solid rgba(255, 255, 255, .78);
  border-radius: var(--radius);
  box-shadow: 0 24px 70px rgba(50, 59, 126, .14);
}




.bc-welcome-image {
  position: absolute;
  z-index: 0;
  inset: 0;
  overflow: hidden;
  background: #dce3f3;
}




.bc-welcome-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}




.bc-welcome-card::after {
  position: absolute;
  z-index: 1;
  inset: 0 auto 0 0;
  width: 66%;
  content: "";
  pointer-events: none;
  background: rgba(255, 255, 255, .70);
  backdrop-filter: blur(9px) saturate(112%);
  -webkit-backdrop-filter:
    blur(9px)
    saturate(112%);
  mask-image:
    linear-gradient(
      90deg,
      #000 0%,
      #000 68%,
      rgba(0, 0, 0, .78) 78%,
      rgba(0, 0, 0, .34) 91%,
      transparent 100%
    );
  -webkit-mask-image:
    linear-gradient(
      90deg,
      #000 0%,
      #000 68%,
      rgba(0, 0, 0, .78) 78%,
      rgba(0, 0, 0, .34) 91%,
      transparent 100%
    );
}




.bc-welcome-copy {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
  width: min(56%, 650px);
  min-height: inherit;
  padding: clamp(40px, 6vw, 76px);
}




.bc-welcome-copy h2 {
  max-width: 460px;
  margin-bottom: 20px;
}




.bc-welcome-copy > p:not(.section-kicker) {
  max-width: 500px;
  margin-bottom: 24px;
  color: #3f4964;
}




/* ==================================================
   SECTION HEADINGS
   ================================================== */


.hm-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}




.hm-heading h2 {
  margin: 0;
}




/* ==================================================
   VIDEOS
   ================================================== */


.hm-video-panel {
  padding: 22px;
  background: rgba(255, 255, 255, .54);
  border: 1px solid rgba(81, 90, 185, .16);
  border-radius: 26px;
  box-shadow: 0 24px 70px rgba(37, 45, 105, .13);
  backdrop-filter: blur(24px) saturate(135%);
  -webkit-backdrop-filter:
    blur(24px)
    saturate(135%);
}




/* ---------- Channel header ---------- */


.hm-channel {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
  padding: 4px 2px 18px;
  border-bottom: 1px solid rgba(50, 60, 120, .12);
}




.hm-channel > img {
  width: 54px;
  height: 54px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 5px 18px rgba(38, 45, 95, .16);
}




.hm-channel-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  line-height: 1.35;
}




.hm-channel-copy strong {
  color: var(--ink);
  font-size: 15px;
}




.hm-channel-copy span {
  color: var(--muted);
  font-size: 12px;
}




.hm-subscribe {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 42px;
  padding: 9px 17px;
  color: #fff;
  background: var(--red);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 800;
  transition:
    background .2s ease,
    transform .25s var(--ease);
}




.hm-subscribe:hover {
  color: #fff;
  background: #c91912;
  transform: translateY(-2px);
}




.hm-play {
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 10px solid #fff;
}




/* ---------- Video grid ---------- */


.hm-video-list {
  display: grid;
  grid-template-columns:
    repeat(3, minmax(0, 1fr));
  gap: 18px;
  min-height: 0;
  overflow: hidden;
  opacity: 1;
  transform: translateY(0);
  transition:
    height .42s cubic-bezier(.22, 1, .36, 1),
    opacity .18s ease,
    transform .18s ease;
  will-change: height;
}




.hm-video-list.hm-is-changing {
  opacity: 0;
  transform: translateY(6px);
}




.hm-video-card {
  min-width: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, .82);
  border: 1px solid rgba(60, 70, 145, .14);
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(38, 45, 95, .11);
  transition:
    transform .25s var(--ease),
    border-color .25s ease,
    box-shadow .25s ease;
}




.hm-video-card:hover {
  transform: translateY(-3px);
  border-color: rgba(63, 72, 160, .27);
  box-shadow: 0 18px 40px rgba(38, 45, 95, .16);
}




.hm-video-card > a {
  display: block;
  height: 100%;
  color: inherit;
  text-decoration: none;
}




.hm-video-image {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background:
    linear-gradient(
      135deg,
      #e8ebf6,
      #dfe4f3
    );
}




.hm-video-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s var(--ease);
}




.hm-video-card:hover .hm-video-image img {
  transform: scale(1.035);
}




.hm-video-pinned {
  position: absolute;
  top: 11px;
  left: 11px;
  padding: 5px 8px;
  color: #fff;
  background: rgba(7, 12, 34, .84);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}




.hm-video-copy {
  min-height: 94px;
  padding: 13px 15px 14px;
}




.hm-video-copy h3 {
  display: -webkit-box;
  min-height: 42px;
  margin: 0 0 7px;
  overflow: hidden;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.5;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}




.hm-video-speaker {
  display: -webkit-box;
  margin: -1px 0 5px;
  overflow: hidden;
  color: #66708d;
  font-size: 11px;
  font-weight: 650;
  line-height: 1.4;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}




.hm-video-copy time {
  color: var(--muted);
  font-size: 11px;
}




/* ---------- Pagination ---------- */


.hm-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 30px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
}




.hm-pagination[hidden] {
  display: none;
}




.hm-pagination button {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 0;
  color: #26346f;
  background: rgba(255, 255, 255, .72);
  border: 1px solid rgba(60, 70, 145, .18);
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(38, 45, 95, .09);
  cursor: pointer;
}




.hm-pagination button:hover:not(:disabled) {
  border-color: #6370ca;
}




.hm-pagination button:disabled {
  opacity: .35;
  cursor: not-allowed;
}




/* ==================================================
   GROUPS
   ================================================== */


.hm-group-list {
  display: grid;
  grid-template-columns:
    repeat(4, minmax(0, 1fr));
  align-items: start;
  gap: 18px;
}




.hm-group-card {
  position: relative;
  isolation: isolate;
  align-self: start;
  width: 100%;
  min-width: 0;
  aspect-ratio: 6 / 5;
  overflow: hidden;
  background: #dfe4f2;
  border: 1px solid rgba(68, 76, 145, .16);
  border-radius: 18px;
  box-shadow: 0 16px 38px rgba(38, 45, 95, .15);
  animation:
    hm-group-arrive
    .52s
    var(--ease)
    both;
  animation-delay:
    calc(var(--hm-card-index, 0) * 55ms);
  transition:
    transform .28s var(--ease),
    border-color .28s ease,
    box-shadow .28s ease;
}




.hm-group-photo-fill {
  position: absolute;
  z-index: 0;
  inset: -18px;
  display: block;
  width: calc(100% + 36px);
  max-width: none;
  height: calc(100% + 36px);
  object-fit: cover;
  object-position: center bottom;
  filter: blur(16px) brightness(.78) saturate(.86);
  transform: scale(1.06);
}




.hm-group-photo {
  position: absolute;
  z-index: 1;
  inset: auto 0 0;
  display: block;
  width: 100%;
  max-width: none;
  height: auto;
}




/* ---------- Glass drawer ---------- */


.hm-group-glass {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  left: 0;
  height: 94px;
  padding: 15px 16px;
  overflow: hidden;
  color: var(--ink);
  background: rgba(255, 255, 255, .76);
  border-bottom: 1px solid rgba(255, 255, 255, .88);
  box-shadow: 0 12px 28px rgba(35, 43, 95, .12);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter:
    blur(18px)
    saturate(140%);
  transition:
    height .44s var(--ease),
    background .28s ease;
}




.hm-group-glass h3 {
  margin: 0 0 5px;
  padding-right: 22px;
  color: var(--ink);
  font-size: 17px;
  line-height: 1.25;
}




.hm-group-intro {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  color: #5f6884;
  font-size: 11px;
  line-height: 1.5;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}




.hm-group-detail-cue {
  display: none;
}




.hm-group-extra {
  margin-top: 9px;
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity .22s ease .05s,
    transform .32s var(--ease);
}




.hm-group-description {
  display: -webkit-box;
  margin: 0 0 9px;
  overflow: hidden;
  color: #535d7b;
  font-size: 10.5px;
  line-height: 1.45;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}




.hm-group-meta {
  display: grid;
  grid-template-columns:
    repeat(2, minmax(0, 1fr));
  gap: 2px 11px;
  margin: 0;
}




.hm-group-meta > div {
  min-width: 0;
  padding: 6px 0 4px;
  border-top: 1px solid rgba(65, 75, 145, .15);
}




.hm-group-meta dt {
  color: #737ca5;
  font-size: 7.5px;
  font-weight: 800;
  letter-spacing: .055em;
  line-height: 1.3;
  text-transform: uppercase;
}




.hm-group-meta dd {
  margin: 2px 0 0;
  overflow-wrap: anywhere;
  color: var(--ink);
  font-size: 9.5px;
  font-weight: 650;
  line-height: 1.4;
}




/* ---------- Interaction layer ---------- */


.hm-group-toggle {
  position: absolute;
  z-index: 3;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  color: transparent;
  background: transparent;
  border: 0;
  border-radius: inherit;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}




.hm-group-toggle:focus-visible {
  outline: 3px solid rgba(91, 110, 218, .48);
  outline-offset: -4px;
}




.hm-group-card.hm-is-open {
  border-color: rgba(63, 72, 160, .30);
  box-shadow: 0 22px 46px rgba(38, 45, 95, .20);
}




.hm-group-card.hm-is-open .hm-group-glass {
  height: 100%;
  background: rgba(255, 255, 255, .91);
}




.hm-group-card.hm-is-open .hm-group-extra {
  opacity: 1;
  transform: translateY(0);
}




.hm-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}




/* Make the full-card tap action obvious on phones and touch tablets. */

@media (hover: none), (pointer: coarse) {
  .hm-group-glass {
    padding-right: 76px;
  }




  .hm-group-detail-cue {
    position: absolute;
    right: 16px;
    bottom: 14px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: #4655a8;
    font-size: 11px;
    font-weight: 850;
    line-height: 1;
    pointer-events: none;
  }




  .hm-group-detail-cue b {
    font-size: 13px;
    line-height: 1;
  }
}




@keyframes hm-group-arrive {
  from {
    opacity: 0;
    transform: translateY(15px);
  }


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




/* Desktop hover */


@media (hover: hover) and (pointer: fine) {
  .hm-group-card:hover {
    transform: translateY(-4px);
    border-color: rgba(63, 72, 160, .30);
    box-shadow: 0 22px 46px rgba(38, 45, 95, .20);
  }




  .hm-group-card:hover .hm-group-glass {
    height: 100%;
    background: rgba(255, 255, 255, .91);
  }




  .hm-group-card:hover .hm-group-extra {
    opacity: 1;
    transform: translateY(0);
  }
}




.hm-group-modal-open {
  overflow: hidden;
}




.hm-group-modal {
  position: fixed;
  z-index: 1200;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  visibility: hidden;
  opacity: 0;
  overscroll-behavior: contain;
  transition:
    opacity .22s ease,
    visibility 0s linear .22s;
}




.hm-group-modal[hidden] {
  display: none;
}




.hm-group-modal.is-open {
  visibility: visible;
  opacity: 1;
  transition:
    opacity .22s ease,
    visibility 0s linear 0s;
}




.hm-group-modal-backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  background: rgba(7, 12, 34, .72);
  border: 0;
  cursor: pointer;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}




.hm-group-modal-panel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(380px, 1.14fr) minmax(0, .86fr);
  width: min(1060px, 100%);
  max-height: calc(100svh - 48px);
  overflow: hidden;
  background: rgba(255, 255, 255, .97);
  border: 1px solid rgba(255, 255, 255, .86);
  border-radius: 26px;
  box-shadow: 0 36px 100px rgba(4, 9, 30, .36);
  opacity: 0;
  transform: translate3d(0, 18px, 0) scale(.985);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  will-change: opacity, transform;
  transition:
    opacity .22s ease,
    transform .32s var(--ease);
}




.hm-group-modal.is-open .hm-group-modal-panel {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}




.hm-group-modal-close {
  position: absolute;
  z-index: 3;
  top: 16px;
  right: 16px;
  display: grid;
  width: 42px;
  height: 42px;
  padding: 0;
  place-items: center;
  color: #283252;
  background: rgba(255, 255, 255, .88);
  border: 1px solid rgba(56, 66, 120, .14);
  border-radius: 50%;
  box-shadow: 0 8px 22px rgba(25, 32, 76, .14);
  cursor: pointer;
  font: inherit;
  font-size: 25px;
  line-height: 1;
}




.hm-group-modal-close:focus-visible {
  outline: 3px solid rgba(91, 110, 218, .42);
  outline-offset: 3px;
}




.hm-group-modal-image {
  display: block;
  align-self: center;
  justify-self: center;
  box-sizing: border-box;
  width: calc(100% - 44px);
  height: auto;
  min-width: 0;
  min-height: 0;
  max-height: calc(100svh - 104px);
  padding: 10px 10px 30px;
  object-fit: contain;
  object-position: center;
  background: #fff;
  border: 1px solid rgba(44, 52, 91, .10);
  border-radius: 3px;
  box-shadow:
    0 24px 48px rgba(10, 17, 48, .22),
    0 5px 14px rgba(10, 17, 48, .12);
  transform: rotate(-1.2deg) scale(.975);
  transform-origin: center;
}




.hm-group-modal-copy {
  align-self: stretch;
  padding: clamp(48px, 6vw, 72px) clamp(34px, 5vw, 62px);
  overflow-y: auto;
}




.hm-group-modal-copy h3 {
  max-width: calc(100% - 48px);
  margin-bottom: 10px;
  color: var(--ink);
  font-size: clamp(26px, 3.2vw, 38px);
}




.hm-group-modal-intro {
  margin-bottom: 20px;
  color: #5664ad;
  font-size: 15px;
  font-weight: 750;
  line-height: 1.6;
}




.hm-group-modal-description {
  margin-bottom: 28px;
  color: #505a76;
  font-size: 14px;
  line-height: 1.78;
}




.hm-group-modal-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 13px;
  margin: 0;
}




.hm-group-modal-meta > div {
  min-width: 0;
  padding: 14px 15px;
  background: #f4f6ff;
  border: 1px solid rgba(85, 97, 171, .10);
  border-radius: 13px;
}




.hm-group-modal-meta dt {
  margin-bottom: 4px;
  color: #737ca5;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: .06em;
  text-transform: uppercase;
}




.hm-group-modal-meta dd {
  margin: 0;
  overflow-wrap: anywhere;
  color: #283252;
  font-size: 12px;
  font-weight: 680;
  line-height: 1.5;
}




/* ==================================================
   FACEBOOK
   ================================================== */


.hm-facebook-card {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(300px, .82fr) minmax(0, 1.18fr);
  min-height: 540px;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(
      circle at 12% 18%,
      rgba(122, 173, 255, .44),
      transparent 34%
    ),
    radial-gradient(
      circle at 88% 90%,
      rgba(171, 126, 240, .32),
      transparent 42%
    ),
    linear-gradient(135deg, #143f83 0%, #182b67 58%, #322a68 100%);
  border: 1px solid rgba(255, 255, 255, .34);
  border-radius: 28px;
  box-shadow: 0 28px 80px rgba(40, 48, 112, .22);
}




.hm-facebook-card::after {
  position: absolute;
  z-index: -1;
  right: -120px;
  bottom: -180px;
  width: 430px;
  aspect-ratio: 1;
  content: "";
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 50%;
}




.hm-facebook-media {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 540px;
  padding: 44px 28px;
  overflow: hidden;
  background: rgba(6, 23, 63, .18);
  border-right: 1px solid rgba(255, 255, 255, .14);
}




.hm-facebook-media::before,
.hm-facebook-media::after {
  position: absolute;
  content: "";
  border-radius: 50%;
  pointer-events: none;
}




.hm-facebook-media::before {
  top: 28px;
  left: -88px;
  width: 250px;
  height: 250px;
  background: rgba(97, 158, 255, .22);
  filter: blur(4px);
}




.hm-facebook-media::after {
  right: -70px;
  bottom: 20px;
  width: 210px;
  height: 210px;
  background: rgba(194, 119, 242, .20);
  filter: blur(8px);
}




.hm-facebook-phone {
  position: relative;
  z-index: 1;
  width: min(260px, 82%);
  padding: 13px 9px 10px;
  overflow: hidden;
  background: #0d1530;
  border: 1px solid rgba(255, 255, 255, .44);
  border-radius: 30px;
  box-shadow:
    0 28px 52px rgba(4, 11, 34, .38),
    0 0 0 7px rgba(255, 255, 255, .08);
  transform: rotate(-2.2deg);
}




.hm-facebook-phone-bar {
  display: block;
  width: 58px;
  height: 5px;
  margin: 0 auto 9px;
  background: rgba(255, 255, 255, .32);
  border-radius: 999px;
}




.hm-facebook-phone img {
  display: block;
  width: 100%;
  height: auto;
  background: #fff;
  border-radius: 18px;
}




.hm-facebook-copy {
  align-self: center;
  max-width: 650px;
  padding: clamp(46px, 7vw, 84px);
}




.hm-facebook-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 26px;
  color: #1877f2;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(5, 13, 40, .20);
  font-family: Arial, sans-serif;
  font-size: 34px;
  font-weight: 800;
  line-height: 1;
}




.hm-facebook-copy .section-kicker {
  color: #bcd7ff;
}




.hm-facebook-copy h2 {
  max-width: 560px;
  margin-bottom: 18px;
  color: #fff;
}




.hm-facebook-copy > p:not(.section-kicker) {
  max-width: 540px;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, .78);
}




.hm-facebook-handle {
  display: block;
  margin-bottom: 28px;
  color: #dbe9ff;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .025em;
}




.hm-facebook-button {
  color: #16417f;
  background: #fff;
  border-color: rgba(255, 255, 255, .85);
  box-shadow: 0 14px 34px rgba(5, 13, 40, .20);
}




.hm-facebook-button:hover {
  color: #102f63;
  background: #eaf3ff;
  transform: translateY(-2px);
}




/* ==================================================
   LOAD ERROR
   ================================================== */


.hm-load-error {
  margin: 18px 0 0;
  padding: 16px 18px;
  color: #754144;
  background: rgba(255, 239, 240, .88);
  border: 1px solid rgba(173, 74, 79, .18);
  border-radius: 12px;
  text-align: center;
}




.hm-load-error[hidden] {
  display: none;
}




/* ==================================================
   THIS SUNDAY
   ================================================== */


.bc-sunday-band {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: #34466f;
  background:
    radial-gradient(
      circle at 5% 0%,
      rgba(207, 231, 255, .95),
      transparent 44%
    ),
    radial-gradient(
      circle at 94% 88%,
      rgba(225, 207, 255, .78),
      transparent 44%
    ),
    radial-gradient(
      circle at 62% 5%,
      rgba(255, 255, 255, .96),
      transparent 38%
    ),
    linear-gradient(
      135deg,
      #f4f9ff 0%,
      #eaf5ff 42%,
      #f5efff 100%
    );
}




.bc-sunday-layout {
  display: grid;
  grid-template-columns: .9fr 1.2fr;
  align-items: center;
  gap: 60px;
  padding-block: 70px;
}




.bc-sunday-band h2,
.bc-sunday-band strong {
  color: #34466f;
}




.bc-sunday-band h2 {
  margin-bottom: 0;
}




.bc-sunday-band .section-kicker {
  color: #6f7fc7;
}




.bc-sunday-details {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: center;
  gap: 26px;
}




.bc-sunday-details p {
  margin: 0;
  color: rgba(52, 70, 111, .76);
  font-size: 13px;
}




.bc-sunday-details strong {
  font-size: 13px;
}




.bc-contact-button {
  color: #fff;
  background:
    linear-gradient(
      135deg,
      #6277d4,
      #8a68c5
    );
  box-shadow: 0 12px 28px rgba(83, 91, 174, .24);
}




.bc-contact-button:hover {
  color: #fff;
  background:
    linear-gradient(
      135deg,
      #5269c8,
      #7959b7
    );
}




/* ==================================================
   RESPONSIVE
   ================================================== */


@media (max-width: 1000px) {
  .hm-group-list {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));
  }




  .hm-group-description {
    font-size: 11px;
  }




  .hm-group-meta dt {
    font-size: 8px;
  }




  .hm-group-meta dd {
    font-size: 10px;
  }
}




@media (max-width: 900px) {
  .bc-hero {
    min-height: max(
      600px,
      calc(78svh - var(--header-height))
    );
  }




  .bc-hero-copy-inner {
    width: min(50vw, 500px);
    transform: none;
  }




  .bc-welcome-card {
    min-height: 560px;
  }




  .bc-welcome-card::after {
    width: 78%;
  }




  .bc-welcome-copy {
    width: 65%;
  }




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




  .bc-sunday-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }




  .hm-facebook-card {
    grid-template-columns: minmax(270px, .86fr) minmax(0, 1.14fr);
  }




  .hm-facebook-copy {
    padding-inline: 42px;
  }
}




@media (max-width: 720px) {
  .bc-hero-overlay {
    background:
      linear-gradient(
        180deg,
        rgba(5, 12, 28, .05) 0%,
        rgba(5, 12, 28, .10) 36%,
        rgba(5, 12, 28, .54) 72%,
        rgba(5, 12, 28, .88) 100%
      ),
      linear-gradient(
        90deg,
        rgba(5, 12, 28, .02) 0%,
        rgba(5, 12, 28, .16) 48%,
        rgba(5, 12, 28, .50) 100%
      );
  }




  .bc-hero-copy-inner {
    width: min(calc(100% - 12px), 460px);
    margin-inline: auto;
    text-align: center;
  }




  .bc-hero-copy h1,
  .bc-hero-lead {
    margin-inline: auto;
  }




  .bc-hero-actions {
    justify-content: center;
  }




  .bc-hero-service {
    text-align: center;
  }




  .hm-group-modal {
    padding: 14px;
  }




  .hm-group-modal-backdrop {
    background: rgba(7, 12, 34, .79);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }




  .hm-group-modal-panel {
    grid-template-columns: 1fr;
    grid-template-rows: auto minmax(0, 1fr);
    max-height: calc(100svh - 28px);
    border-radius: 21px;
  }




  .hm-group-modal-image {
    align-self: stretch;
    justify-self: stretch;
    box-sizing: content-box;
    width: 100%;
    height: 230px;
    min-height: 0;
    max-height: none;
    padding: 0;
    object-fit: cover;
    object-position: center bottom;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    transform: none;
  }




  .hm-group-modal-copy {
    padding: 31px 22px 28px;
  }




  .hm-group-modal-copy h3 {
    max-width: calc(100% - 38px);
  }




  .hm-group-modal-close {
    top: 11px;
    right: 11px;
  }
}




@media (max-width: 680px) {
  .hm-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 22px;
  }




  .hm-video-panel {
    padding: 16px;
    border-radius: 20px;
  }




  .hm-channel {
    grid-template-columns: auto 1fr;
  }




  .hm-subscribe {
    grid-column: 1 / -1;
    width: 100%;
  }




  .hm-video-list {
    gap: 12px;
  }




  .hm-video-copy {
    min-height: 88px;
    padding: 11px 11px 12px;
  }




  .hm-video-copy h3 {
    min-height: 39px;
    font-size: 12px;
    line-height: 1.55;
  }




  .hm-video-speaker {
    margin-bottom: 4px;
    font-size: 9.5px;
  }




  .hm-video-copy time {
    font-size: 10px;
  }




  .hm-video-pinned {
    top: 7px;
    left: 7px;
    padding: 4px 6px;
    font-size: 8px;
  }
}




@media (max-width: 620px) {
  .bc-hero {
    align-items: end;
    min-height:
      calc(100svh - var(--header-height));
  }




  .bc-hero-copy {
    padding-block: 70px 54px;
  }




  .bc-hero-copy-inner {
    width: min(calc(100% - 12px), 460px);
    margin-inline: auto;
    transform: none;
  }




  .bc-hero-actions {
    align-items: stretch;
    flex-direction: column;
  }




  .bc-hero-actions .button {
    width: 100%;
  }




  .bc-welcome {
    padding-block: 64px 44px;
  }




  .hm-videos {
    padding-block: 44px;
  }




  .hm-groups {
    padding-block: 44px;
  }




  .hm-facebook {
    padding-block: 44px 72px;
  }




  .hm-facebook-card {
    grid-template-columns: 1fr;
    border-radius: 22px;
  }




  .hm-facebook-media {
    min-height: 430px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .14);
  }




  .hm-facebook-phone {
    width: min(220px, 70%);
  }




  .hm-facebook-copy {
    padding: 42px 24px 46px;
  }




  .bc-welcome-card {
    min-height: 640px;
    border-radius: 18px;
  }




  .bc-welcome-card::after {
    inset: auto 0 0;
    width: 100%;
    height: 72%;
    background: rgba(255, 255, 255, .70);
    backdrop-filter: blur(7px) saturate(108%);
    -webkit-backdrop-filter:
      blur(7px)
      saturate(108%);
    mask-image:
      linear-gradient(
        0deg,
        #000 0%,
        #000 67%,
        rgba(0, 0, 0, .48) 86%,
        transparent 100%
      );
    -webkit-mask-image:
      linear-gradient(
        0deg,
        #000 0%,
        #000 67%,
        rgba(0, 0, 0, .48) 86%,
        transparent 100%
      );
  }




  .bc-welcome-copy {
    justify-content: flex-end;
    width: 100%;
    min-height: 640px;
    padding: 270px 24px 38px;
  }




  .hm-group-list {
    grid-template-columns: 1fr;
    gap: 16px;
  }




  .hm-group-card {
    aspect-ratio: 4 / 3;
  }




  .hm-group-glass {
    height: 82px;
    padding: 16px 17px;
  }




  .hm-group-glass h3 {
    font-size: 17px;
  }




  .hm-group-intro {
    font-size: 12px;
  }




  .hm-group-description {
    font-size: 11.5px;
    line-height: 1.5;
    -webkit-line-clamp: 3;
  }




  .hm-group-meta {
    gap: 4px 14px;
  }




  .hm-group-meta dt {
    font-size: 8.5px;
  }




  .hm-group-meta dd {
    font-size: 10.5px;
  }




  .bc-sunday-details {
    grid-template-columns: 1fr;
  }
}




@media (max-width: 680px) and (hover: none),
       (max-width: 680px) and (pointer: coarse) {
  .hm-group-glass {
    padding-right: 76px;
  }
}




@media (max-width: 390px) {
  .hm-video-list {
    gap: 10px;
  }




  .hm-video-panel {
    padding: 12px;
  }




  .hm-video-copy {
    padding-inline: 9px;
  }




  .hm-group-modal-meta {
    grid-template-columns: 1fr;
  }
}




/* ==================================================
   REDUCED MOTION
   ================================================== */


@media (prefers-reduced-motion: reduce) {
  .bc-hero-copy,
  .hm-group-card {
    animation: none;
  }




  .bc-home-surface .reveal,
  .bc-sunday-band .reveal {
    transition-delay: 0s;
    animation-delay: 0s;
  }




  .bc-hero-photo,
  .hm-video-list,
  .hm-video-card,
  .hm-video-image img,
  .hm-group-card,
  .hm-group-photo,
  .hm-group-glass,
  .hm-group-extra,
  .hm-group-modal,
  .hm-group-modal-panel,
  .hm-facebook-phone,
  .hm-facebook-button {
    transition: none;
  }
}
