#GatewayHomeSL {
  --navy: #022C55;
  --blue: #0C72BD;
  --light-blue: #E8F1F9;
  --green: #2E8B57;
  --green-hover: #246E45;
  --zelle: #6D1ED4;
  --grey-text: #4a5568;
  --bg: #f5f5f5;
}

/* CAROUSEL */
#GatewayHomeSL .carousel-slgwh {
  width: 100%;
  position: relative;
  overflow: hidden;
  background: white;
}
#GatewayHomeSL .slides-slgwh {
  position: relative;
  width: 100%;
  display: grid;
}
#GatewayHomeSL .slides-slgwh::before {
  content: "";
  grid-area: 1 / 1;
  padding-bottom: 41.666%;
}
#GatewayHomeSL .slide-slgwh {
  grid-area: 1 / 1;
  display: flex;
  opacity: 0;
  transition: opacity 0.7s ease;
  pointer-events: none;
  z-index: 1;
}
#GatewayHomeSL .slide-slgwh.active-slgwh {
  opacity: 1;
  pointer-events: auto;
  z-index: 2;
}

/* SHARED SLIDE STRUCTURE */
#GatewayHomeSL .slide-image-slgwh {
  flex: 0 0 50%;
  background-size: cover;
  background-position: center;
  background-color: var(--navy);
  position: relative;
}
#GatewayHomeSL .slide-image-slgwh img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

#GatewayHomeSL .slide-content-slgwh {
  flex: 1;
  background: white;
  display: flex;
  justify-content: flex-start;
}
#GatewayHomeSL .slide-text-inner-slgwh {
  width: 100%;
  max-width: 650px;
  padding: 60px 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
#GatewayHomeSL .logo-lockup-slgwh {
  position: absolute;
  top: 32px;
  right: 70px;
  height: auto;
  max-height: 28px;
  width: auto;
  max-width: calc(100% - 280px);
  object-fit: contain;
  object-position: right top;
}

#GatewayHomeSL .status-badge-slgwh {
  display: inline-block;
  padding: 6px 14px;
  background: var(--light-blue);
  color: var(--blue);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-radius: 4px;
  width: fit-content;
}
#GatewayHomeSL .status-badge-slgwh.live-slgwh {
  background: #e8f5e9;
  color: #2E8B57;
}
#GatewayHomeSL .slide-content-slgwh h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 40px;
  font-weight: 700;
  color: #022c55;
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}
#GatewayHomeSL .slide-content-slgwh .subhead-slgwh {
  font-family: 'Open Sans', sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: #022c55;
  line-height: 1.5;
  margin-bottom: 32px;
  max-width: 480px;
}
#GatewayHomeSL .cta-button-slgwh {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #0C72BD;
  color: white;
  padding: 12px 28px;
  border-radius: 50px;
  border: 2px solid #0C72BD;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  width: fit-content;
  transition: all 0.3s ease;
}
#GatewayHomeSL .cta-button-slgwh:hover {
  background: white;
  color: #0C72BD;
}
#GatewayHomeSL .cta-button-slgwh .arrow-slgwh {
  transition: transform 0.2s ease;
}
#GatewayHomeSL .cta-button-slgwh:hover .arrow-slgwh {
  transform: translateX(3px);
}

/* NAVIGATION */
#GatewayHomeSL .carousel-container-slgwh {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1300px;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}
#GatewayHomeSL .nav-arrow-slgwh, 
#GatewayHomeSL .nav-dots-slgwh {
  pointer-events: auto;
}
#GatewayHomeSL .nav-dots-slgwh {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}
#GatewayHomeSL .nav-dot-slgwh {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(2, 44, 85, 0.25);
  border: 1px solid rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}
#GatewayHomeSL .nav-dot-slgwh.active-slgwh {
  background: var(--navy);
  width: 30px;
  border-radius: 5px;
}
#GatewayHomeSL .nav-arrow-slgwh {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #888888;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  z-index: 10;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
#GatewayHomeSL .nav-arrow-slgwh:hover {
  background: black;
  color: white;
  transform: translateY(-50%) scale(1.05);
}
#GatewayHomeSL .nav-arrow-slgwh.prev-slgwh { left: 20px; }
#GatewayHomeSL .nav-arrow-slgwh.next-slgwh { right: 20px; }

/* Responsive — narrow viewport */
@media (max-width: 1024px) {
  #GatewayHomeSL .slide-slgwh { flex-direction: column; }
  #GatewayHomeSL .slides-slgwh::before { display: none; }
  #GatewayHomeSL .slide-image-slgwh { flex: none; height: 280px; width: 100%; }
  #GatewayHomeSL .slide-content-slgwh { padding: 0; }
  #GatewayHomeSL .slide-text-inner-slgwh { padding: 80px 24px 60px; justify-content: flex-start; max-width: 100%; }
  #GatewayHomeSL .logo-lockup-slgwh { top: 30px; right: 24px; height: auto; max-height: 20px; max-width: calc(100% - 150px); object-fit: contain; object-position: right top; }
  #GatewayHomeSL .status-badge-slgwh { font-size: 10px; padding: 5px 12px; }
  #GatewayHomeSL .slide-content-slgwh h2 { font-size: 32px; line-height: 1.2; margin-top: 8px; margin-bottom: 12px; padding-top: 5px; }
  #GatewayHomeSL .slide-content-slgwh .subhead-slgwh { font-size: 18px; margin-bottom: 24px; }
  #GatewayHomeSL .status-badge-slgwh { margin-top: 0; }
  #GatewayHomeSL .cta-button-slgwh { font-size: 15px; padding: 12px 24px; margin-bottom: 0; }
  #GatewayHomeSL .nav-arrow-slgwh { top: 280px; }
  #GatewayHomeSL a.full-slide-link-wrapper-slgwh { flex-direction: column; }
}

/* FULL SLIDE LINK FEATURE */
#GatewayHomeSL a.full-slide-link-wrapper-slgwh {
  display: flex;
  flex: 1;
  width: 100%;
  text-decoration: none !important;
  color: inherit !important;
}
#GatewayHomeSL span.pseudo-button-slgwh {
  cursor: pointer;
}
