.bals-slider {
  --bals-bg-1: #1a1a1d;
  --bals-bg-2: #111214;
  --bals-image-height: 380px;
  --bals-image-gap: 20px;
  --bals-image-radius: 20px;
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--bals-bg-1), var(--bals-bg-2));
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.bals-track-wrapper {
  overflow: hidden;
  width: 100%;
}

.bals-track {
  display: flex;
  align-items: flex-start;
  width: 100%;
  will-change: transform;
}

.bals-slide {
  min-width: 100%;
  flex: 0 0 100%;
  padding: 80px 30px 40px;
}

.bals-image-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--bals-image-gap);
  align-items: stretch;
}

.bals-image-box {
  position: relative;
  overflow: hidden;
  border-radius: var(--bals-image-radius);
  height: var(--bals-image-height);
  min-height: 0;
  background: rgba(255,255,255,0.04);
}

.bals-image-box img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bals-label {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(0,0,0,0.65);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: .3px;
  backdrop-filter: blur(6px);
}

.bals-center-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 130px;
  height: 130px;
  z-index: 5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255,255,255,0.12);
  pointer-events: none;
}

.bals-center-logo img {
  width: 75%;
  height: auto;
  object-fit: contain;
}

.bals-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.15);
  color: #fff;
  font-size: 20px;
  transition: background .25s ease, transform .25s ease, opacity .25s ease;
  backdrop-filter: blur(8px);
}

.bals-nav-btn:hover {
  background: rgba(255,255,255,0.28);
}

.bals-nav-btn:focus-visible,
.bals-dot:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.bals-prev {
  left: 20px;
}

.bals-next {
  right: 20px;
}

.bals-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 22px 14px 16px;
}

.bals-dots:empty,
.bals-slider.bals-no-dots .bals-dots {
  display: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.bals-dot {
  width: 11px;
  height: 11px;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  background: rgba(255,255,255,0.3);
  transition: transform .25s ease, opacity .25s ease, background .25s ease;
}

.bals-dot.is-active {
  background: #fff;
  transform: scale(1.15);
}

@media (max-width: 767px) {
  .bals-slide {
    padding: 70px 16px 30px;
  }

  .bals-image-pair.bals-stack-mobile {
    grid-template-columns: 1fr;
  }

  .bals-slider {
    --bals-image-height: 240px;
  }

  .bals-center-logo {
    width: 90px;
    height: 90px;
  }

  .bals-nav-btn {
    width: 42px;
    height: 42px;
    font-size: 18px;
  }

  .bals-prev {
    left: 10px;
  }

  .bals-next {
    right: 10px;
  }

  .bals-label {
    top: 12px;
    left: 12px;
    font-size: 13px;
    padding: 7px 12px;
  }
}
