
  @font-face {
    font-family: 'Noto Sans KR';
    src: url('webfont/NotoSans/NotoSansKR-Regular.ttf') format('truetype');
    font-weight: 400;
  }
  @font-face {
    font-family: 'Noto Sans KR';
    src: url('webfont/NotoSans/NotoSansKR-Medium.ttf') format('truetype');
    font-weight: 500;
  }
  @font-face {
    font-family: 'Noto Sans KR';
    src: url('webfont/NotoSans/NotoSansKR-SemiBold.ttf') format('truetype');
    font-weight: 600;
  }
  @font-face {
    font-family: 'Noto Sans KR';
    src: url('webfont/NotoSans/NotoSansKR-Bold.ttf') format('truetype');
    font-weight: 700;
  }

:root {
  /* Typography rem tokens (base 18px desktop) */
  --hero-display: 4.17rem;
  --display1: 14.58rem;
  --display2: 8.33rem;
  --display3: 5.56rem;
  --h1: 2.22rem;
  --h2: 1.67rem;
  --h3: 1.39rem;
  --p1: 1.67rem;
  --p2: 1.25rem;
  --p3: 1rem;

  /* Spacing rem tokens */
  --pt1: 1rem;
  --pt2: 2rem;
  --pt3: 3rem;
  --pt4: 4rem;
  --pt5: 5rem;
  --pt6: 6rem;
  --pt8: 8rem;
  --pb1: 1rem;
  --pb2: 2rem;
  --pb3: 3rem;
  --pb4: 4rem;
  --pb5: 5rem;
  --pb6: 6rem;
  --pb8: 8rem;

  --font-main: "Noto Sans KR", "Apple SD Gothic Neo", sans-serif;
}

html{font-size:18px;}

/* Full-Width Breakout */
.cms-content-root {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  font-family: var(--font-main);
  overflow-x: hidden;
  font-size: 18px; /* base 18px */
  background-color: #ffffff;
  margin-bottom: -6px;

}

/* 1. HEADER */
.ch-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: transparent;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: none;
}

.ch-header-inner {
  max-width: 1200px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: none;
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.3);
  height: 100%;
  box-sizing: border-box;
}

.ch-header-logo {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.ch-header-badge {
  border: 1px solid white;
  font-weight: 700;
  padding: 0.11rem 0.28rem;
  color: #fff;
}

.ch-header-title {
  font-weight: 700;
  color: #fff;
}

.ch-header-nav {
  display: flex;
  align-items: center;
}

.ch-nav-link {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  white-space: nowrap;
}

.ch-header-actions {
  display: flex;
  align-items: center;
  gap: 0.88rem;
}

.ch-action-link {
  font-size: var(--p3);
  color: #fff;
  cursor: pointer;
}

.ch-menu-icon {
  cursor: pointer;
}

/* 2. HERO */
.ch-hero {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.ch-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}
.ch-hero-bg.active {
  opacity: 1;
}

.ch-hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.12);
  border: none;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
}

.ch-hero-prev {
  left: 18px;
}
.ch-hero-next {
  right: 18px;
}

.ch-hero-content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  pointer-events: none;
}

.ch-hero-icon-boxes {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1200px;
  width: 100%;
  padding: 0 var(--pt1);
  box-sizing: border-box;
  pointer-events: auto;
}


.ch-icon-box {
  background: rgba(255, 255, 255, 0.92);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  box-shadow: none;
}
.ch-icon-box:hover {
  transform: translateY(-8px);
}

.ch-icon-label {
  color: #333;
  font-weight: 600;
}

.ch-hero-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  pointer-events: auto;
}

.ch-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.32);
  cursor: pointer;
  transition: background 0.3s;
}
.ch-dot.active {
  background: #fff;
}

/* 3. SERMON + COMMUNITY */
.ch-section-dark {
  background: #2a2a2a;
  position: relative;
  z-index: 5;
}

.ch-section-dark-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.ch-section-dark-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 56, 0.88);
  z-index: 1;
}

.ch-sermon-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--pt1);
  display: flex;
  gap: 0;
  position: relative;
  z-index: 2;
}

.ch-sermon-image-wrap {
  flex-shrink: 0;
  position: relative;
  z-index: 20;
  overflow: visible;
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.8s ease-out,
    transform 0.8s ease-out;
}
.ch-sermon-image-wrap.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.ch-sermon-image {
  width: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.ch-sermon-play-btn {
  position: absolute;
  bottom: 5%;
  right: 8%;
  border-radius: 50%;
  background: #dc2626;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.ch-sermon-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.8s ease-out 0.2s,
    transform 0.8s ease-out 0.2s;
}
.ch-sermon-info.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.ch-sermon-title {
  font-weight: 700;
  color: #fff;
}

.ch-sermon-subtitle {
  color: #777;
}

.ch-sermon-buttons {
  display: flex;
  gap: 0.55rem;
  flex-wrap: wrap;
}

.ch-sermon-btn-live {
  border: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  background: #fff;
  transition: transform 0.3s;
}
.ch-sermon-btn-live:hover {
  transform: translateY(-6px);
}

.ch-sermon-btn-live-text {
  color: #c8a96e;
  font-weight: 600;
}

.ch-sermon-btn-outline {
  border: 1px solid #555;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  cursor: pointer;
  background: transparent;
  transition: transform 0.3s;
}
.ch-sermon-btn-outline:hover {
  transform: translateY(-6px);
}

.ch-sermon-btn-outline-text {
  color: #fff;
}

/* 3-2. COMMUNITY */
.ch-community-container {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: var(--pt1);
  padding-right: var(--pt1);
  position: relative;
  z-index: 2;
}

.ch-community-header {
  display: flex;
  align-items: baseline;
  gap: 0.77rem;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.8s ease-out,
    transform 0.8s ease-out;
}
.ch-community-header.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.ch-community-title {
  font-weight: 700;
  color: #fff;
}

.ch-community-subtitle {

  color: #666;
  font-weight: 400;
}

.ch-community-grid {
  display: grid;
}

.ch-community-card {
  cursor: pointer;
  opacity: 0;
  transform: translateY(40px);
  position: relative;
  transition:
    transform 0.3s,
    opacity 0.8s ease-out,
    transform 0.8s ease-out;
}
.ch-community-card.animate-in {
  opacity: 1;
  transform: translateY(0);
}
.ch-community-card:hover {
  transform: translateY(-4px);
}

.ch-community-img-wrap {
  overflow: hidden;
  margin-bottom: 0.44rem;
}

.ch-community-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 70% 100%, 70% 78%, 0 78%);
}
.ch-community-card:hover .ch-community-img {
  transform: scale(1.03);
}

.ch-community-card-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.44rem;
  margin-top: -3rem;
}

.ch-community-card-label {
  color: #c8a96e;
  font-size: 14px;
  letter-spacing: 0.06em;
  font-weight: 600;
}

.ch-community-card-icon {
  margin-right: 32%;
}

.ch-community-card-title {
  font-size: var(--h3);
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.33rem;
}

.ch-community-card-desc {
  font-size: var(--p3);
  color: #a1a1a1;
}

/* 4. NEXT GEN */
.ch-nextgen-section {
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.8s ease-out,
    transform 0.8s ease-out;
}
.ch-nextgen-section.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.ch-nextgen-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ch-nextgen-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(139, 109, 71, 0.4),
    rgba(110, 82, 52, 0.4),
    rgba(85, 60, 35, 0.4)
  );
}

.ch-nextgen-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.ch-nextgen-label {
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 0.55rem;
}

.ch-nextgen-title {
  font-weight: 700;
  color: #fff;
}

.ch-nextgen-desc {
  color: rgba(255, 255, 255, 0.88);
  max-width: 100%;
  line-height: 1.8;
}

.ch-nextgen-circles {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.ch-nextgen-circle {
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  background: transparent;
  transition:
    background 0.3s,
    border 0.3s;
}
.ch-nextgen-circle:hover {
  border:none;
  background: rgba(15, 23, 56, 0.6);
}

/* 5. GALLERY */
.ch-gallery-section {
  background: #2b2d29;
  overflow: hidden;
  position: relative;
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.8s ease-out,
    transform 0.8s ease-out;
}
.ch-gallery-section.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.ch-gallery-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.ch-gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(18, 25, 45, 0.7);
  z-index: 1;
}

.ch-gallery-container {
  display: flex;
  max-width: 100%;
  position: relative;
  z-index: 2;
}

.ch-gallery-info {
  flex-shrink: 0;
  box-sizing: border-box;
}

.ch-gallery-label {
  color: #888;
}

.ch-gallery-title {
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.33rem;
}

.ch-gallery-desc {
  color: #888;
  font-size: var(--p3);
}

.ch-gallery-slider-wrap {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  box-sizing: border-box;
}

.ch-gallery-dots {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
}

.ch-gallery-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #555;
  transition: background 0.3s;
  cursor: pointer;
}
.ch-gallery-dot.active {
  background: #fff;
}

.ch-gallery-overflow {
  overflow: hidden;
}

.ch-gallery-strip {
  display: flex;
  gap: 14px;
  will-change: transform;
  cursor: grab;
  user-select: none;
}
.ch-gallery-strip.dragging {
  cursor: grabbing;
}

.ch-gallery-img-wrap {
  width: 380px;
  flex-shrink: 0;
  overflow: hidden;
  cursor: pointer;
}

.ch-gallery-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  transform: scale(1);
  transition: transform 0.3s;
}
.ch-gallery-img-wrap:hover .ch-gallery-img {
  transform: scale(1.06);
}

/* 6. FOOTER */
.ch-footer {
  background: #1a1a1a;
  padding-top: var(--pt2);
  padding-bottom: var(--pb2);
  padding-left: var(--pt1);
  padding-right: var(--pt1);
}

.ch-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}

.ch-footer-brand {
  font-size: var(--p3);
  font-weight: 600;
  color: #fff;
}

.ch-footer-pastor {
  color: #666;
  font-size: var(--p3);
  margin-top: 0.22rem;
}

.ch-footer-divider {
  width: 30px;
  height: 1px;
  background: #3a3a3a;
  margin: var(--pt1) 0;
}

.ch-footer-info {
  color: #666;
  font-size: var(--p3);
  line-height: 1.9;
}

.ch-footer-copy {
  color: #4a4a4a;
  font-size: var(--p3);
}

/* 7. SCROLL TOP */
.ch-scroll-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 42px;
  height: 42px;
  background: #555;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 300;
  transition: background 0.2s;
}
.ch-scroll-top:hover {
  background: #444;
}

/* CONSOLIDATED MEDIA QUERIES */

@media (max-width: 575px) {
	
	    .ch-hero-icon-boxes{
        display:grid !important;
        grid-template-columns:repeat(3, 1fr);
        gap:12px;
        max-width:340px;
        margin:40px auto 0;
    }

  /* Header Mobile */
  .ch-header {
    height: 4.5rem;
  }
  .ch-header-inner {
    padding: 1rem;
  }
  .ch-header-badge {
    font-size: 0.875rem;
  }
  .ch-header-title {
    font-size: var(--p2);
  }
  .ch-header-nav {
    display: none;
  }
  .ch-action-link {
    display: none;
  }

  /* Hero Mobile */
  .ch-hero {
    min-height: 80vh;
    /* padding-bottom: 8rem; */
  }
  .ch-hero-arrow {
    display: none;
  }
  .ch-hero-content {
    padding-top: 56vh;
  }

  /* Hero Icon Boxes Mobile */
  .ch-hero-icon-boxes {
    gap: 0.75rem;
    margin-bottom: 2rem;
  }
  .ch-icon-box {
    width: 85px;
    height: 85px;
    gap: 0.35rem;
  }
  .ch-icon-label {
    font-size: 0.8rem;
  }
  .ch-icon-svg {
    width: 32px;
    height: 32px;
  }
  .ch-icon-svg.ch-lucide {
    width: 32px;
    height: 32px;
  }

  .ch-hero-dots {
    margin-top: 1rem;
  }

  /* Sermon Mobile */
  .ch-section-dark {
    padding-top: var(--pt3);
  }
  .ch-section-dark-bg {
    clip-path: none;
  }
  .ch-sermon-container {
    flex-direction: column;
  }
  .ch-sermon-image-wrap {
    width: 100%;
    margin-top: 0;
  }
  .ch-sermon-image {
    height: 220px;
  }
  .ch-sermon-play-btn {
    width: 50px;
    height: 50px;
  }
  .ch-sermon-info {
    padding: var(--pt2) 0;
  }
  .ch-sermon-title {
    font-size: 28px;
  }
  .ch-sermon-subtitle {
    font-size: var(--p2);
    margin-bottom: 1rem;
  }
  .ch-sermon-btn-live,
  .ch-sermon-btn-outline {
    width: 73px;
    height: 85px;
  }
  .ch-sermon-btn-live-text,
  .ch-sermon-btn-outline-text {
    font-size: 0.8rem;
  }

  /* Community Mobile */
  .ch-community-container {
    padding-top: var(--pt2);
    padding-bottom: var(--pb2);
  }
  .ch-community-header {
    margin-bottom: 1rem;
  }
  .ch-community-title {
    font-size: 28px;
  }
  .ch-community-subtitle {
    font-size: var(--p2);
  }
  .ch-community-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  /* Next Gen Mobile */
  .ch-nextgen-content {
    padding: var(--pt3) var(--pt1) var(--pb3);
  }
  .ch-nextgen-label {
    font-size: 0.875rem;
    letter-spacing: 0.18em;
  }
  .ch-nextgen-title {
    font-size: 24px;
    margin-bottom: 0.5rem;
  }
  .ch-nextgen-desc {
    font-size: var(--p3);
    margin: 0 auto 1.5rem;
	word-break:keep-all;
  }
  .ch-nextgen-circles {
    gap: 1rem;
  }
  .ch-nextgen-circle {
    width: 120px;
    height: 120px;
    font-size: var(--p3);
  }

  /* Gallery Mobile */
  .ch-gallery-section {
    padding: var(--pt3) 0 var(--pb3);
  }
  .ch-gallery-container {
    flex-direction: column;
  }
  .ch-gallery-info {
    width: 100%;
    min-width: auto;
    padding-right: 0;
    padding-left: var(--pt1);
    padding-top: 0;
    padding-bottom: var(--pt2);
  }
  .ch-gallery-label {
    font-size: var(--p3);
  }
  .ch-gallery-title {
    font-size: 28px;
  }
  .ch-gallery-slider-wrap {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
  .ch-gallery-dots {
    padding-left: var(--pt1);
  }
  .ch-gallery-overflow {
    padding-left: var(--pt1);
  }

  /* Footer Mobile */
  .ch-footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--pt2);
  }
  .ch-footer-copy {
    text-align: left;
  }
}

@media (min-width: 576px) and (max-width: 1023px) {
  /* Header Tablet */
  .ch-header {
    height: 6.22rem;
  }
  .ch-header-inner {
    padding: 1.5rem 1.33rem;
  }
  .ch-header-badge {
    font-size: var(--p3);
  }
  .ch-header-title {
    font-size: var(--h3);
  }
  .ch-header-nav {
    gap: 1rem;
  }
  .ch-nav-link {
    font-size: 0.875rem;
  }

  /* Hero Tablet */
  .ch-hero {
    min-height: 80vh;
    padding-bottom: 10rem;
  }
  .ch-hero-content {
    padding-top: 50vh;
  }

  /* Hero Icon Boxes Tablet */
  .ch-hero-icon-boxes {
    gap: var(--p2);
    margin-bottom: var(--pb2);
  }
  .ch-icon-box {
    width: 110px;
    height: 110px;
    gap: 0.55rem;
  }
  .ch-icon-label {
    font-size: var(--p3);
  }
  .ch-icon-svg {
    width: 36px;
    height: 36px;
  }
  .ch-icon-svg.ch-lucide {
    width: 36px;
    height: 36px;
  }

  .ch-hero-dots {
    margin-top: var(--pt2);
  }

  /* Sermon Tablet */
  .ch-section-dark {
    padding-top: var(--pt3);
  }
  .ch-section-dark-bg {
    clip-path: none;
  }
  .ch-sermon-container {
    flex-direction: column;
  }
  .ch-sermon-image-wrap {
    width: 100%;
    margin-top: 0;
  }
  .ch-sermon-image {
    height: 280px;
  }
  .ch-sermon-play-btn {
    width: 65px;
    height: 65px;
  }
  .ch-sermon-info {
    padding: var(--pt2) var(--pt2);
  }
  .ch-sermon-title {
    font-size: 32px;
  }
  .ch-sermon-subtitle {
    font-size: var(--h2);
    margin-bottom: var(--pb2);
  }
  .ch-sermon-btn-live,
  .ch-sermon-btn-outline {
    width: 108px;
    height: 108px;
  }
  .ch-sermon-btn-live-text,
  .ch-sermon-btn-outline-text {
    font-size: var(--p3);
  }

  /* Community Tablet */
  .ch-community-container {
    padding-top: var(--pt4);
    padding-bottom: var(--pb4);
  }
  .ch-community-header {
    margin-bottom: var(--pb2);
  }
  .ch-community-title {
    font-size: 32px;
  }
  .ch-community-subtitle {
    font-size: var(--h2);
  }
  .ch-community-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--pt2);
  }

  /* Next Gen Tablet */
  .ch-nextgen-content {
    padding: var(--pt5) var(--pt1) var(--pb5);
  }
  .ch-nextgen-label {
    font-size: var(--p3);
    letter-spacing: 0.24em;
  }
  .ch-nextgen-title {
    font-size: 32px;
    margin-bottom: var(--pb1);
  }
  .ch-nextgen-desc {
    font-size: var(--p2);
    margin: 0 auto var(--pb3);
  }
  .ch-nextgen-circles {
    gap: var(--pt2);
  }
  .ch-nextgen-circle {
    width: 110px;
    height: 110px;
    font-size: var(--h3);
  }

  /* Gallery Tablet */
  .ch-gallery-section {
    padding: var(--pt6) 0 var(--pb6);
  }
  .ch-gallery-container {
    flex-direction: row;
    align-items: flex-start;
  }
  .ch-gallery-info {
    width: 30%;
    min-width: 300px;
    padding-right: 48px;
    padding-left: max(24px, calc(50vw - 384px));
    padding-top: var(--pt2);
    padding-bottom: 0;
  }
  .ch-gallery-label {
    font-size: var(--p2);
  }
  .ch-gallery-title {
    font-size: 40px;
  }
  .ch-gallery-slider-wrap {
    width: auto;
    padding-left: var(--pt1);
    padding-right: 0;
  }
  .ch-gallery-dots {
    padding-left: 4px;
  }
  .ch-gallery-overflow {
    padding-left: 0;
  }

  /* Footer Tablet */
  .ch-footer-inner {
    flex-direction: row;
    align-items: flex-start;
    gap: 0;
  }
  .ch-footer-copy {
    text-align: right;
  }
}

@media (min-width: 1024px) {
  /* Header Desktop */
  .ch-header {
    height: 6.22rem;
  }
  .ch-header-inner {
    padding: 1.5rem 1.33rem;
  }
  .ch-header-badge {
    font-size: var(--p3);
  }
  .ch-header-title {
    font-size: var(--h3);
  }
  .ch-header-nav {
    gap: 1.44rem;
  }
  .ch-nav-link {
    font-size: 20px;
  }

  /* Hero Desktop */
  .ch-hero {
    min-height: 980px;
    padding-bottom: 0rem;
  }
  .ch-hero-content {
    padding-top: 70vh;
  }

  /* Hero Icon Boxes Desktop */
  .ch-hero-icon-boxes {
    gap: var(--p2);
    margin-bottom: var(--pb2);
  }
  .ch-icon-box {
    width: 138px;
    height: 138px;
    gap: 0.55rem;
  }
  .ch-icon-label {
    font-size: var(--p3);
  }
  .ch-icon-svg {
    width: 44px;
    height: 44px;
  }
  .ch-icon-svg.ch-lucide {
    width: 44px;
    height: 44px;
  }

  .ch-hero-dots {
    margin-top: var(--pt2);
  }

  /* Sermon Desktop */
  .ch-section-dark {
    padding-top: 0;
  }
  .ch-section-dark-bg {
    clip-path: inset(0);
  }
  .ch-sermon-container {
    flex-direction: row;
  }
  .ch-sermon-image-wrap {
    width: 48%;
    margin-top: -60px;
  }
  .ch-sermon-image {
    height: 340px;
  }
  .ch-sermon-play-btn {
    width: 65px;
    height: 65px;
  }
  .ch-sermon-info {
    padding: var(--pt3) var(--pt3);
  }
  .ch-sermon-title {
    font-size: 40px;
  }
  .ch-sermon-subtitle {
    font-size: var(--h2);
    margin-bottom: var(--pb2);
  }
  .ch-sermon-btn-live,
  .ch-sermon-btn-outline {
    width: 108px;
    height: 108px;
  }
  .ch-sermon-btn-live-text,
  .ch-sermon-btn-outline-text {
    font-size: var(--p3);
  }

  /* Community Desktop */
  .ch-community-container {
    padding-top: var(--pt4);
    padding-bottom: var(--pb4);
  }
  .ch-community-header {
    margin-bottom: var(--pb2);
  }
  .ch-community-title {
    font-size: 40px;
  }
  .ch-community-subtitle {
    font-size: var(--h2);
  }
  .ch-community-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--pt2);
  }

  /* Next Gen Desktop */
  .ch-nextgen-content {
    padding: var(--pt5) var(--pt1) var(--pb5);
  }
  .ch-nextgen-label {
    font-size: var(--p3);
    letter-spacing: 0.24em;
  }
  .ch-nextgen-title {
    font-size: 40px;
    margin-bottom: var(--pb1);
  }
  .ch-nextgen-desc {
    font-size: var(--pb1);
    margin: 0 auto var(--pb3);
  }
  .ch-nextgen-circles {
    gap: var(--pt2);
  }
  .ch-nextgen-circle {
    width: 150px;
    height: 150px;
    font-size: var(--h3);
  }

  /* Gallery Desktop */
  .ch-gallery-section {
    padding: var(--pt6) 0 var(--pb6);
  }
  .ch-gallery-container {
    flex-direction: row;
    align-items: flex-start;
  }
  .ch-gallery-info {
    width: 30%;
    min-width: 300px;
    padding-right: 48px;
    padding-left: max(24px, calc(50vw - 576px));
    padding-top: var(--pt2);
    padding-bottom: 0;
  }
  .ch-gallery-label {
    font-size: var(--p2);
  }
  .ch-gallery-title {
    font-size: 40px;
  }
  .ch-gallery-slider-wrap {
    width: auto;
    padding-left: var(--pt1);
    padding-right: 0;
  }
  .ch-gallery-dots {
    padding-left: 4px;
  }
  .ch-gallery-overflow {
    padding-left: 0;
  }

  /* Footer Desktop */
  .ch-footer-inner {
    flex-direction: row;
    align-items: flex-start;
    gap: 0;
  }
  .ch-footer-copy {
    text-align: right;
  }
}

