.slide-caption {
  position: absolute;
  bottom: 4rem;
  left: 2rem;
  right: 2rem;
  color: white;
  padding: 1rem;
  font-family: 'SF Pro Text', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  text-align: center;
  z-index: 5;
  text-shadow: 0 0 20px rgba(0, 0, 0, 0.9), 2px 2px 8px rgba(0, 0, 0, 0.8), 4px 4px 12px rgba(0, 0, 0, 0.6);
}

.slide-prev, .slide-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: none;
  font-size: 2rem;
  font-weight: bold;
  padding: 1rem;
  cursor: pointer;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  backdrop-filter: blur(10px);
}

.slide-prev {
  left: 1rem;
}

.slide-next {
  right: 1rem;
}

  .slide-prev:hover, .slide-next:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: translateY(-50%) scale(1.1);
  }

.slide-dots {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  /* gap: 0.5rem; */
  background-color: rgba(0,0,0,0.33);
  border-radius: 999px;
  padding: 6px 10px;
  min-height: 24px; 
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
  align-self: center;
  margin-left: 0.25rem;
  margin-right: 0.25rem;
}

  .dot.active, .dot:hover {
    background: white;
    transform: scale(1.2);
  }

  .dot.invis {
    width: 0;
    height: 0;
    margin: 0;
    padding: 0;
  }
  .dot.half {
    width: 8px;
    height: 8px;
  }