/* ========================================
   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;
}


.bc-hero-photo,
.bc-hero-overlay {
  position: absolute;
  inset: 0;
}


.bc-hero-photo {
  z-index: -3;
  background-position: center;
  background-size: cover;
  opacity: 0;
  transform: scale(1.035);
  transition:
    opacity 2.2s ease,
    transform 30s linear;
}


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


.bc-hero-overlay {
  z-index: -2;
  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, .42),
      rgba(0, 0, 0, .12) 66%,
      rgba(0, 0, 0, .22)
    ),
    rgba(0, 0, 0, .14);
}


.bc-hero-copy {
  padding-block: 84px;
  color: #fff;
  animation: bc-hero-arrive .9s var(--ease) .28s both;
}


.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 18px rgba(0, 0, 0, .35);
}


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


.bc-hero-actions {
  display: flex;
  flex-wrap: wrap;
  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 {
  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;
}


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


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


/* ========================================
   Shared home background
   ======================================== */


.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 {
  position: relative;
  z-index: 1;
  background: transparent;
}


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


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


.hm-groups {
  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%);
  -webkit-mask-image:
    linear-gradient(
      90deg,
      #000 0%,
      #000 68%,
      rgba(0, 0, 0, .78) 78%,
      rgba(0, 0, 0, .34) 91%,
      transparent 100%
    );
  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;
}


/* ========================================
   Shared section heading
   ======================================== */


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


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


.hm-video-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  min-height: 0;
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity .18s ease,
    transform .18s ease;
}


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


.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-copy time {
  color: var(--muted);
  font-size: 11px;
}


.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
   Fixed card + glass drawer
   ======================================== */


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


.hm-group-card {
  position: relative;
  isolation: isolate;
  min-width: 0;


  /*
   * Desktop cards are intentionally taller,
   * leaving enough room for the glass drawer.
   */
  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 {
  position: absolute;
  z-index: 0;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s var(--ease);
}


.hm-group-glass {
  position: absolute;
  z-index: 2;
  top: calc(100% - 94px);
  right: 0;
  bottom: 0;
  left: 0;
  padding: 15px 16px;
  overflow: hidden;
  color: var(--ink);
  background: rgba(255, 255, 255, .76);
  border-top: 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:
    top .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-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;
}


/*
 * Transparent interaction layer.
 * It never changes the card layout.
 */
.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;
}


/*
 * JavaScript applies this only for touch/keyboard interaction.
 */
.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-photo {
  transform: scale(1.035);
}


.hm-group-card.hm-is-open .hm-group-glass {
  top: 0;
  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;
}


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


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


/*
 * Desktop uses pure CSS hover.
 * No JavaScript animation and no DOM replacement.
 */
@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-photo {
    transform: scale(1.035);
  }


  .hm-group-card:hover .hm-group-glass {
    top: 0;
    background: rgba(255, 255, 255, .91);
  }


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


@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: 620px) {
  .hm-group-list {
    grid-template-columns: 1fr;
    gap: 16px;
  }


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


  .hm-group-glass {
    top: calc(100% - 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;
  }
}


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


@media (prefers-reduced-motion: reduce) {
  .hm-group-card {
    animation: none;
    transition: none;
  }


  .hm-group-photo,
  .hm-group-glass,
  .hm-group-extra {
    transition: 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-modal-panel {
    grid-template-columns:
      minmax(250px, .8fr)
      minmax(330px, 1.2fr);
  }


  .hm-group-modal-copy {
    padding-inline: 38px;
  }
}


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


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


@media (max-width: 720px) {
  .hm-group-modal {
    align-items: end;
    padding: 12px;
  }


  .hm-group-modal-panel {
    display: block;
    width: 100%;
    max-height: calc(100dvh - 24px);
    border-radius: 22px;
  }


  .hm-group-modal-image {
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: 4 / 3;
    object-fit: cover;
  }


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


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


@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 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    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-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-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 72px;
  }


  .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%);
    -webkit-mask-image:
      linear-gradient(
        0deg,
        #000 0%,
        #000 67%,
        rgba(0, 0, 0, .48) 86%,
        transparent 100%
      );
    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;
  }


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


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


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


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


/* ========================================
   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-card-image img,
  .hm-group-modal,
  .hm-group-modal-panel {
    transition: none;
  }
}

.hm-video-list {
  overflow: hidden;
  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);
}


@media (prefers-reduced-motion: reduce) {
  .hm-video-list {
    transition: none;
  }
}

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




@media (max-width: 680px) {
  .hm-video-speaker {
    margin-bottom: 4px;
    font-size: 9.5px;
  }
}

